﻿/* =========================================================
   Guide Settings – WOW Web Premium (FINAL WINNER)
   - Same gsW-* markup
   - Paste at bottom of site.css (last wins)
========================================================= */

/* ---------- base + polish ---------- */
.gsW-page {
    padding: 28px 22px 80px;
}

.gsW-shell {
    width: min(1240px, 100%);
    margin: 0 auto;
}

/* Main glass card */
.gsW-card {
    position: relative;
    border-radius: 38px;
    padding: 28px 28px 26px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(226,232,240,0.92);
    box-shadow: 0 42px 160px rgba(2,6,23,0.22), 0 2px 0 rgba(255,255,255,0.62) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

/* Hero glow */
.gsW-glow {
    position: absolute;
    top: -280px;
    left: 46%;
    transform: translateX(-50%);
    width: 720px;
    height: 720px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(183,104,48,0.92) 0%, rgba(183,104,48,0.28) 45%, rgba(183,104,48,0.00) 72%);
    pointer-events: none;
    z-index: 0;
}

/* vignette */
.gsW-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.00) 40%, rgba(2,6,23,0.06) 100%);
    z-index: 0;
}

.gsW-head, .gsW-body {
    position: relative;
    z-index: 1;
}

/* ---------- header ---------- */
.gsW-head {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(226,232,240,0.88);
}

.gsW-headLeft {
    max-width: 820px;
}

.gsW-title {
    margin: 0;
    font-weight: 980;
    letter-spacing: -0.05em;
    font-size: 38px;
    color: #0b1220;
}

.gsW-sub {
    margin: 10px 0 0;
    color: rgba(15,23,42,0.70);
    font-size: 14.5px;
    line-height: 1.55;
}

.gsW-guidePill {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 14px;
    border-radius: 22px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(226,232,240,0.92);
    box-shadow: 0 20px 70px rgba(2,6,23,0.10);
    min-width: 360px;
}

.gsW-guideIcon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 35%, rgba(183,104,48,0.42), rgba(183,104,48,0.14) 60%, rgba(255,255,255,0.00) 78%);
    border: 1px solid rgba(183,104,48,0.22);
    font-size: 20px;
}

.gsW-guideName {
    font-weight: 950;
    font-size: 13.5px;
    color: #0b1220;
}

.gsW-guideMsg {
    margin-top: 2px;
    font-size: 13px;
    color: rgba(15,23,42,0.66);
    line-height: 1.35;
}

/* ---------- layout ---------- */
.gsW-body {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 18px;
    padding-top: 16px;
}

.gsW-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gsW-block {
    border-radius: 28px;
    padding: 16px;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(226,232,240,0.92);
    box-shadow: 0 18px 70px rgba(2,6,23,0.08);
}

.gsW-blockHead {
    margin-bottom: 12px;
}

.gsW-h3 {
    margin: 0;
    font-size: 15.5px;
    font-weight: 950;
    color: #0b1220;
}

.gsW-muted {
    margin: 6px 0 0;
    font-size: 13px;
    color: rgba(15,23,42,0.62);
}

/* ---------- tiles ---------- */
.gsW-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.gsW-tiles--two {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Persona grid winner */
.gsW-tiles--persona {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width:1100px) {
    .gsW-tiles--persona {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:720px) {
    .gsW-tiles--persona {
        grid-template-columns: 1fr;
    }
}

button.gsW-tile {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 100%;
    text-align: left;
    border-radius: 22px !important;
    padding: 14px 14px 12px;
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(203,213,225,0.90) !important;
    color: #0b1220 !important;
    box-shadow: 0 10px 26px rgba(2,6,23,0.08) !important, 0 1px 0 rgba(255,255,255,0.75) inset !important;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, filter .16s ease;
    cursor: pointer;
    min-height: 86px; /* winner consistency */
}

    button.gsW-tile * {
        pointer-events: none;
    }

    button.gsW-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 54px rgba(2,6,23,0.14) !important, 0 1px 0 rgba(255,255,255,0.75) inset !important;
    }

    button.gsW-tile:active {
        transform: translateY(-1px);
    }

    button.gsW-tile.is-active {
        position: relative;
        border-color: rgba(183,104,48,0.72) !important;
        box-shadow: 0 0 0 4px rgba(183,104,48,0.16) !important, 0 22px 62px rgba(2,6,23,0.16) !important, 0 1px 0 rgba(255,255,255,0.72) inset !important;
        background: rgba(255,255,255,0.92) !important;
    }

        button.gsW-tile.is-active::after {
            content: "✓";
            position: absolute;
            top: 12px;
            right: 12px;
            width: 26px;
            height: 26px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            font-weight: 950;
            font-size: 13px;
            color: #fff;
            background: rgba(183,104,48,0.96);
            box-shadow: 0 12px 28px rgba(183,104,48,0.40);
        }

.gsW-tileTitle {
    font-size: 13.8px;
    font-weight: 950;
    color: #0b1220;
}

.gsW-tileSub {
    margin-top: 5px;
    font-size: 12px;
    color: rgba(15,23,42,0.60);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Focus ring */
button.gsW-tile:focus-visible,
button.gsW-btn:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(183,104,48,0.16) !important, 0 0 0 1px rgba(183,104,48,0.70) !important;
}

/* ---------- actions ---------- */
.gsW-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 2px;
}

button.gsW-btn {
    width: fit-content;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 980;
    color: #fff;
    background: linear-gradient(180deg, rgba(183,104,48,0.98) 0%, rgba(144,74,30,0.98) 100%);
    box-shadow: 0 24px 72px rgba(183,104,48,0.44), 0 2px 0 rgba(255,255,255,0.18) inset;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

    button.gsW-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 28px 86px rgba(183,104,48,0.52), 0 2px 0 rgba(255,255,255,0.18) inset;
        filter: brightness(1.02);
    }

    button.gsW-btn:disabled {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

.gsW-hint {
    font-size: 12.5px;
    color: rgba(15,23,42,0.60);
}

/* ---------- preview panel ---------- */
.gsW-right {
    position: sticky;
    top: 20px;
    align-self: start;
}

.gsW-previewCard {
    border-radius: 28px;
    padding: 16px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(226,232,240,0.92);
    box-shadow: 0 28px 110px rgba(2,6,23,0.12);
}

.gsW-previewTop {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.gsW-previewAvatar {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 35%, rgba(183,104,48,0.30), rgba(183,104,48,0.10) 60%, rgba(255,255,255,0) 78%);
    border: 1px solid rgba(183,104,48,0.20);
    font-size: 18px;
}

.gsW-previewTitle {
    font-weight: 980;
    color: #0b1220;
}

.gsW-previewSub {
    margin-top: 2px;
    font-size: 12.5px;
    color: rgba(15,23,42,0.62);
}

.gsW-previewRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-radius: 16px;
    background: rgba(248,250,252,0.86);
    border: 1px solid rgba(226,232,240,0.92);
    margin-bottom: 10px;
}

.gsW-chipLabel {
    font-size: 12.5px;
    color: rgba(15,23,42,0.62);
    font-weight: 900;
}

.gsW-chipValue {
    font-size: 12.5px;
    font-weight: 980;
    color: rgba(15,23,42,0.88);
}

.gsW-previewDivider {
    margin: 14px 0;
    height: 1px;
    background: rgba(226,232,240,0.92);
}

.gsW-previewSmall {
    font-size: 12.5px;
    color: rgba(15,23,42,0.60);
}

/* Persona preview helpers */
.gsW-previewEmpty {
    margin-top: 10px;
    padding: 12px;
    border-radius: 18px;
    border: 1px dashed rgba(226,232,240,0.95);
    background: rgba(248,250,252,0.65);
    color: rgba(15,23,42,0.62);
    font-size: 13px;
    line-height: 1.45;
}

.gsW-personaCard {
    margin-top: 10px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(226,232,240,0.92);
    background: rgba(255,255,255,0.72);
    box-shadow: 0 14px 46px rgba(2,6,23,0.08);
}

.gsW-personaTop {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gsW-personaAvatar {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 35% 35%, rgba(183,104,48,0.26), rgba(183,104,48,0.10) 60%, rgba(255,255,255,0) 78%);
    border: 1px solid rgba(183,104,48,0.20);
    font-size: 18px;
}

.gsW-personaName {
    font-weight: 980;
    color: #0b1220;
    line-height: 1.1;
}

.gsW-personaTags {
    margin-top: 4px;
    font-size: 12.5px;
    color: rgba(15,23,42,0.62);
    line-height: 1.35;
}

.gsW-personaQuote {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(226,232,240,0.92);
    background: rgba(248,250,252,0.86);
    color: rgba(15,23,42,0.72);
    font-style: italic;
    line-height: 1.45;
}

.gsW-personaSummary {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(15,23,42,0.70);
    line-height: 1.45;
}

/* ---------- responsive ---------- */
@media (max-width:1100px) {
    .gsW-body {
        grid-template-columns: 1fr;
    }

    .gsW-right {
        position: relative;
        top: auto;
    }

    .gsW-guidePill {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width:720px) {
    .gsW-head {
        flex-direction: column;
    }

    .gsW-title {
        font-size: 30px;
    }
}
/* =========================================================
   PAL — WOW Desktop (PURE CSS VERSION)
   FULL WIDTH, 2 CARDS, CLEAN SPACE
========================================================= */

.pal-wow {
    min-height: 100vh;
    padding: 28px 22px 70px;
    background: radial-gradient(1200px 800px at 14% 10%, rgba(254,243,199,.65), transparent 58%), radial-gradient(1200px 800px at 88% 14%, rgba(219,234,254,.62), transparent 58%), radial-gradient(900px 520px at 50% 110%, rgba(237,233,254,.38), transparent 60%), linear-gradient(180deg, #f8fafc 0%, #fafaf9 50%, #f8fafc 100%);
}

/* full-width desktop shell */
.pal-shell {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

/* if Bootstrap container is limiting you */
.pal-wow .container,
.pal-wow .container-fluid {
    max-width: none !important;
    width: 100% !important;
}

/* ---------------- Card ---------------- */
.pal-card {
    background: rgba(255,255,255,.96);
    border-radius: 30px;
    border: 1px solid rgba(226,232,240,.95);
    box-shadow: 0 34px 120px rgba(2,6,23,.14), 0 10px 26px rgba(2,6,23,.08);
    overflow: hidden;
}

/* header */
.pal-cardHead {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 30px;
    background: linear-gradient(180deg, rgba(248,250,252,.9), rgba(255,255,255,.96));
    border-bottom: 1px solid rgba(226,232,240,.85);
}

.pal-badge {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 18px 44px rgba(2,6,23,.18);
}

.pal-badge--green {
    background: linear-gradient(180deg, #10b981, #0d9488);
}

.pal-badge--purple {
    background: linear-gradient(180deg, #7c3aed, #7e22ce);
}

.pal-title {
    margin: 0;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.pal-sub {
    margin: 6px 0 0;
    color: #475569;
    font-weight: 650;
    font-size: 15px;
}

/* body */
.pal-cardBody {
    padding: 26px 30px 32px;
}

/* ---------------- Blocks ---------------- */
.pal-block {
    padding: 18px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(248,250,252,.55), rgba(255,255,255,.92));
    border: 1px solid rgba(226,232,240,.70);
}

.pal-block--full {
    margin-bottom: 22px;
}

/* ---------------- Layout rows ---------------- */
.pal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
}

.pal-equalCol {
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

/* ---------------- Options Grid ---------------- */
.pal-labelRow {
    margin-bottom: 10px;
}

.pal-label {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.pal-muted {
    color: #64748b;
    font-weight: 650;
}

.pal-req {
    color: #ef4444;
    font-weight: 900;
}

.pal-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 14px;
}

.pal-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 10px 20px rgba(2,6,23,.06);
    cursor: pointer;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

    .pal-check:hover {
        transform: translateY(-2px);
        border-color: rgba(191,219,254,.95);
        box-shadow: 0 18px 44px rgba(2,6,23,.10);
    }

.pal-check__box {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 7px;
    border: 2px solid rgba(148,163,184,.75);
    background: #fff;
    display: grid;
    place-items: center;
}

    .pal-check__box::after {
        content: "";
        width: 10px;
        height: 6px;
        border-left: 3px solid #fff;
        border-bottom: 3px solid #fff;
        transform: rotate(-45deg);
        opacity: 0;
        margin-top: -1px;
    }

    .pal-check__box:checked {
        background: linear-gradient(180deg, #2563eb, #1d4ed8);
        border-color: #1d4ed8;
        box-shadow: 0 0 0 7px rgba(191,219,254,.32);
    }

        .pal-check__box:checked::after {
            opacity: 1;
        }

.pal-check__text {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
}

/* ---------------- Slider ---------------- */
.pal-subtitle {
    font-size: 16px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.pal-subhint {
    margin-top: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 650;
}

.pal-rangeTop {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.pal-rangeLegend {
    display: flex;
    justify-content: space-between;
    width: 160px;
    font-size: 12px;
    font-weight: 850;
    color: #64748b;
}

.pal-valuePill {
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 950;
    color: #0f172a;
    background: rgba(219,234,254,.75);
    border: 1px solid rgba(191,219,254,.95);
    box-shadow: 0 16px 34px rgba(2,6,23,.10);
}

.pal-range__input--wow {
    margin-top: 16px;
    width: 100%;
    height: 16px;
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    background-image: linear-gradient(90deg, #0d9488, #0ea5e9, #2563eb), linear-gradient(90deg, rgba(226,232,240,1), rgba(226,232,240,1));
    background-size: var(--percent) 100%, 100% 100%;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(226,232,240,.95), inset 0 12px 22px rgba(2,6,23,.06);
}

    .pal-range__input--wow::-webkit-slider-thumb {
        appearance: none;
        -webkit-appearance: none;
        width: 30px;
        height: 30px;
        border-radius: 999px;
        background: #fff;
        border: 3px solid #0d9488;
        box-shadow: 0 18px 44px rgba(2,6,23,.22), 0 0 0 9px rgba(153,246,228,.32);
    }

/* ---------------- Textarea ---------------- */
.pal-textareaWrap {
    position: relative;
    margin-top: 14px;
}

.pal-textareaWrap--grow {
    flex: 1;
    display: flex;
}

.pal-textarea--grow {
    flex: 1;
    resize: none;
}

.pal-textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(226,232,240,.92);
    background: #fff;
    padding: 16px 16px 56px;
    font-size: 14px;
    font-weight: 650;
    color: #1e293b;
    line-height: 1.65;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 12px 28px rgba(2,6,23,.06);
    outline: none;
}

    .pal-textarea:focus,
    .pal-textarea--wow:focus {
        border-color: rgba(147,197,253,.95);
        box-shadow: 0 0 0 10px rgba(191,219,254,.22), 0 24px 70px rgba(2,6,23,.10);
    }

.pal-counterPill {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(226,232,240,.92);
    font-size: 12px;
    font-weight: 900;
    color: #64748b;
    box-shadow: 0 12px 24px rgba(2,6,23,.08);
}

/* ---------------- Note ---------------- */
.pal-note {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 22px;
    background: rgba(240,253,250,.92);
    border: 1px solid rgba(153,246,228,.92);
    box-shadow: 0 18px 44px rgba(2,6,23,.08);
}

.pal-note__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(153,246,228,.92);
    box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

.pal-note__title {
    font-size: 16px;
    font-weight: 950;
    color: #115e59;
    margin-bottom: 6px;
}

.pal-note__text {
    font-size: 14px;
    font-weight: 650;
    color: #0f766e;
    line-height: 1.55;
}

/* ---------------- WOW upgrade ---------------- */
.pal-check:focus-within {
    border-color: rgba(147,197,253,.95);
    box-shadow: 0 0 0 10px rgba(191,219,254,.22), 0 18px 44px rgba(2,6,23,.10);
}

/* Selected tile state (works in modern browsers) */
.pal-check--tile:has(.pal-check__box:checked) {
    background: rgba(239,246,255,.85);
    border-color: rgba(147,197,253,.95);
    box-shadow: 0 18px 44px rgba(2,6,23,.10), 0 0 0 8px rgba(191,219,254,.18);
}

    .pal-check--tile:has(.pal-check__box:checked) .pal-check__text {
        color: #0f172a;
    }

    .pal-check--tile:has(.pal-check__box:checked)::after {
        content: "✓";
        margin-left: auto;
        width: 26px;
        height: 26px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        background: rgba(37,99,235,.12);
        border: 1px solid rgba(147,197,253,.9);
        color: #1d4ed8;
        font-weight: 950;
    }

/* ---------------- Responsive ---------------- */
@media (max-width: 1180px) {
    .pal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .pal-cardBody {
        padding: 18px 16px 20px;
    }

    .pal-cardHead {
        padding: 18px 16px;
    }

    .pal-title {
        font-size: 24px;
    }

    .pal-split {
        grid-template-columns: 1fr;
    }

    .pal-grid {
        grid-template-columns: 1fr;
    }

    .pal-equalCol {
        min-height: unset;
    }
}