/* ─── PROOF SECTION ─── */
.proof-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg);
    color: var(--white);
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.proof-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.028), transparent);
    pointer-events: none;
}

.proof-pin {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr);
    gap: clamp(72px, 9vw, 150px);
    align-items: center;
    padding: 72px clamp(64px, 7vw, 130px);
    background: var(--bg);
}

.proof-copy {
    align-self: center;
    transform: translateY(-2vh);
}

.proof-eyebrow {
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.proof-title {
    max-width: 470px;
    font-size: clamp(62px, 4.85vw, 86px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.075em;
    text-transform: uppercase;
}

.proof-script {
    display: inline-block;
    color: #c36db9;
    font-family: 'Dancing Script', cursive;
    font-size: 1.62em;
    font-weight: 700;
    line-height: 0.58;
    letter-spacing: -0.08em;
    text-transform: none;
    vertical-align: -0.13em;
    margin-right: -0.06em;
}

.proof-accent {
    color: #c36db9;
    letter-spacing: -0.08em;
}

.proof-window {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
}

.proof-metrics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 94px;
    will-change: transform;
}

.proof-metric {
    min-height: 276px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.proof-number {
    display: block;
    font-size: clamp(150px, 16vw, 248px);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.088em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.68);
    text-stroke: 1.5px rgba(255, 255, 255, 0.68);
    opacity: 0.6;
    transition: color 0.4s ease,
                opacity 0.4s ease,
                -webkit-text-stroke-color 0.4s ease,
                transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.proof-label {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(26px, 2.05vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.06em;
    transition: color 0.36s ease, opacity 0.36s ease;
}

.proof-metric.is-active .proof-number {
    color: #c36db9;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.34);
    text-stroke-color: rgba(255, 255, 255, 0.34);
    opacity: 1;
    transform: scale(1.015);
}

.proof-metric.is-active .proof-label {
    color: #c36db9;
    opacity: 1;
}

@media (max-width: 1060px) {
    .proof-pin {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 84px 34px 40px;
    }

    .proof-copy {
        transform: none;
    }

    .proof-title {
        max-width: 620px;
        font-size: clamp(52px, 10vw, 78px);
    }

    .proof-window {
        min-height: 560px;
        height: 58vh;
    }

    .proof-metrics {
        gap: 64px;
    }

    .proof-metric {
        min-height: 230px;
    }
}

@media (max-width: 620px) {
    .proof-pin {
        padding: 74px 22px 34px;
    }

    .proof-title {
        font-size: clamp(43px, 13vw, 64px);
    }

    .proof-number {
        font-size: clamp(92px, 28vw, 138px);
    }

    .proof-label {
        margin-top: 22px;
        font-size: 22px;
    }

    .proof-window {
        min-height: 470px;
    }
}

/* ─── FAQ SECTION ─── */
.faq-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg);
    color: var(--white);
    padding: clamp(82px, 9vh, 118px) clamp(42px, 7.45vw, 120px) clamp(74px, 8vh, 104px);
    font-family: 'Mors', 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
    isolation: isolate;
}

.faq-star {
    position: absolute;
    top: 18px;
    right: clamp(48px, 8vw, 160px);
    z-index: 3;
    width: clamp(58px, 5.2vw, 88px);
    height: clamp(58px, 5.2vw, 88px);
    color: var(--white);
    animation: faqStarSpin 12s linear infinite;
    pointer-events: none;
}

.faq-star svg {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.12fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(72px, 9vw, 156px);
    row-gap: clamp(52px, 7vh, 92px);
    align-items: end;
    max-width: 1420px;
    min-height: calc(100vh - clamp(156px, 17vh, 222px));
    margin: 0 auto;
}

.faq-copy {
    grid-column: 1 / -1;
}

.faq-title {
    font-size: clamp(62px, 5.8vw, 92px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.faq-intro {
    display: none;
}

.faq-visual {
    position: relative;
    align-self: end;
    min-height: clamp(430px, 45vw, 600px);
    overflow: visible;
}

.faq-visual img {
    --faq-img-x: 0px;
    position: absolute;
    left: clamp(18px, 3vw, 58px);
    bottom: clamp(-160px, -10vw, -92px);
    width: clamp(310px, 28vw, 480px);
    height: auto;
    display: block;
    filter: drop-shadow(0 32px 52px rgba(119, 70, 180, 0.22));
    animation: faqFloat 5.6s ease-in-out infinite;
}

.faq-list {
    width: 100%;
    align-self: end;
    padding: 0 0 8px;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item::after {
    display: none;
}

.faq-item.is-open::after {
    display: none;
}

.faq-question {
    width: 100%;
    min-height: clamp(74px, 8.3vh, 86px);
    border: 0;
    background: transparent;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 24px;
    align-items: center;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.faq-icon {
    justify-self: end;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.24s ease;
}

.faq-plus {
    position: relative;
    width: 22px;
    height: 22px;
    display: block;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    opacity: 0.82;
}

.faq-item.is-open .faq-plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-question-text {
    order: -1;
    font-size: clamp(23px, 1.62vw, 29px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.065em;
}

.faq-answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer-wrap {
    grid-template-rows: 1fr;
}

.faq-answer-clip {
    overflow: hidden;
}

.faq-answer {
    max-width: 660px;
    padding: 0 58px 26px 0;
    color: rgba(255, 255, 255, 0.62);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -0.045em;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.28s ease 0.08s,
                transform 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}

.faq-item.is-open .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .faq-section {
        padding: 86px 32px 72px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        row-gap: 44px;
        min-height: auto;
    }

    .faq-title {
        max-width: 560px;
    }

    .faq-visual {
        min-height: 360px;
        order: 2;
    }

    .faq-visual img {
        --faq-img-x: -50%;
        left: 50%;
        bottom: -130px;
        width: min(390px, 78vw);
    }

    .faq-list {
        order: 1;
    }
}

@media (max-width: 620px) {
    .faq-section {
        padding: 64px 22px;
    }

    .faq-question {
        min-height: 72px;
        grid-template-columns: 1fr 30px;
        gap: 16px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }

    .faq-question-text {
        font-size: 22px;
    }

    .faq-answer {
        padding: 0 42px 24px 0;
        font-size: 16px;
    }

    .faq-star {
        top: 18px;
        right: 22px;
        width: 46px;
        height: 46px;
    }
}

@keyframes faqMoveHorizontal {
    0% { transform: translateX(-50%) translateY(-10%); }
    50% { transform: translateX(50%) translateY(10%); }
    100% { transform: translateX(-50%) translateY(-10%); }
}

@keyframes faqMoveInCircle {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes faqMoveVertical {
    0% { transform: translateY(-50%); }
    50% { transform: translateY(50%); }
    100% { transform: translateY(-50%); }
}

@keyframes faqFloat {
    0%, 100% {
        transform: translateX(var(--faq-img-x)) translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateX(var(--faq-img-x)) translateY(-18px) rotate(1deg);
    }
}

@keyframes faqStarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .logo-track {
        animation: none !important;
    }
}

/* ─── GROWTH COMPONENTS / WHAT WE DO ─── */
.gc-section {
    position: relative;
    background: var(--bg);
    padding: clamp(80px, 10vh, 120px) clamp(24px, 5.5vw, 80px);
    isolation: isolate;
}

.gc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 62% 38%, rgba(79,122,244,0.05), transparent 62%),
        radial-gradient(ellipse 40% 30% at 22% 72%, rgba(192,64,230,0.03), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* ── Header ── */
.gc-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: clamp(32px, 5vw, 96px);
    margin-bottom: clamp(36px, 5vh, 56px);
}

.gc-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    margin-bottom: 18px;
}

.gc-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(52px, 6vw, 94px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: var(--white);
    text-transform: uppercase;
}

.gc-title-dot { color: rgba(255,255,255,0.18); }

.gc-header-desc {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(16px, 1.55vw, 21px);
    font-weight: 500;
    line-height: 1.58;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.42);
    max-width: 440px;
    padding-bottom: 4px;
}

/* ── Asymmetric bento grid ── */
.gc-bento {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.gc-item-a { grid-column: 1; grid-row: 1 / 3; }
.gc-item-b { grid-column: 3; grid-row: 1; }
.gc-item-c { grid-column: 2; grid-row: 1; }
.gc-item-d { grid-column: 2 / 4; grid-row: 2; }

/* ── Initial hidden state (GSAP takes over immediately on load) ── */
.gc-item {
    opacity: 0;
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    .gc-item { opacity: 1 !important; transform: none !important; }
}

/* ── Hover lift (pointer devices only) ── */
@media (hover: hover) and (pointer: fine) {
    .gc-item:hover .gc-shell {
        border-color: rgba(255,255,255,0.13);
        box-shadow:
            0 0 0 1px rgba(79,122,244,0.1),
            0 20px 60px rgba(0,0,0,0.55),
            inset 0 1px 0 rgba(255,255,255,0.06);
        transform: translateY(-2px);
    }
}

/* ── Double-bezel shell (outer) ── */
.gc-shell {
    height: 100%;
    padding: 1.5px;
    border-radius: 18px;
    background: rgba(255,255,255,0.038);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: border-color 0.28s ease-out, box-shadow 0.28s ease-out, transform 0.22s var(--ease-out);
}

/* ── Inner core ── */
.gc-core {
    height: 100%;
    padding: clamp(20px, 2.2vw, 28px);
    border-radius: calc(18px - 1.5px);
    background: rgba(7,7,10,0.96);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.065);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Card content ── */
.gc-card-header { margin-bottom: 2px; }

.gc-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.gc-chip-dot {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gc-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--white);
    text-transform: uppercase;
}

.gc-card-body {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.62;
    color: rgba(255,255,255,0.34);
    letter-spacing: -0.01em;
}

.gc-spacer { flex: 1; min-height: 12px; }

/* ── Funnel bars ── */
.gc-funnel-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 52px;
}

.gc-fbar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-height: 4px;
}

.gc-funnel-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 7.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* ── A/B test widget ── */
.gc-ab { display: flex; flex-direction: column; gap: 8px; }
.gc-ab-row { display: flex; flex-direction: column; gap: 4px; }
.gc-ab-head { display: flex; justify-content: space-between; align-items: center; }

.gc-ab-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.26);
}

.gc-ab-rate {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

.gc-ab-rate.is-win { color: var(--teal); }

.gc-ab-track {
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}

.gc-ab-fill {
    height: 100%;
    border-radius: 2px;
    background: rgba(79,122,244,0.48);
}

.gc-ab-fill.is-win { background: var(--teal); }

.gc-ab-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 7.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

.gc-ab-conf {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--teal);
}

/* ── Event list ── */
.gc-events { display: flex; flex-direction: column; gap: 10px; }

.gc-event { display: flex; align-items: center; gap: 8px; }

.gc-event-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

.gc-event-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.46);
    flex: 1;
}

.gc-event-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

/* ── Metrics ── */
.gc-metrics { display: flex; gap: 16px; }
.gc-metric { display: flex; flex-direction: column; gap: 2px; }

.gc-metric-key {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 7.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.24);
}

.gc-metric-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1.1;
}

.gc-metric-sm { font-size: 17px; }

.gc-metric-delta {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 8.5px;
    font-weight: 600;
    color: var(--teal);
}

.gc-metric-delta.is-neg { color: #e8501d; }

/* ── Mini chart ── */
.gc-chart { display: block; width: 100%; margin-top: 8px; overflow: visible; }

/* ── Responsive collapse ── */
@media (max-width: 920px) {
    .gc-header {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .gc-header-desc { max-width: 100%; }
    .gc-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gc-item-a { grid-column: 1 / -1; grid-row: 1; }
    .gc-item-c { grid-column: 1;     grid-row: 2; }
    .gc-item-b { grid-column: 2;     grid-row: 2; }
    .gc-item-d { grid-column: 1 / -1; grid-row: 3; }
    .gc-card-title { font-size: clamp(20px, 4.5vw, 32px); }
}

@media (max-width: 560px) {
    .gc-bento { grid-template-columns: 1fr; }
    .gc-item-a { grid-column: 1; grid-row: 1; }
    .gc-item-c { grid-column: 1; grid-row: 2; }
    .gc-item-b { grid-column: 1; grid-row: 3; }
    .gc-item-d { grid-column: 1; grid-row: 4; }
}
