*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #141929;
    --navy-mid:  #1e2640;
    --blue:      #3a5ba0;
    --blue-lt:   #4e72be;
    --gold:      #f5c242;
    --gold-dim:  rgba(245,194,66,.15);
    --paper:     #eaecf4;
    --bg:        #f3f5fa;
    --white:     #ffffff;
    --muted:     #4a5872;
    --ink:       #232f4b;
    --border:    #c4cad8;
    --border-dk: #272d42;
    --ink-light: #3a4a6a;
    --radius:    6px;
    --nav-h:     60px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
    font-family: 'Libre Baskerville', serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── NOISE OVERLAY ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: .028;
    pointer-events: none;
    z-index: 9999;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(20,25,41,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dk);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--white);
}

.nav-logo-wordmark {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--white);
}

.nav-right {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: .75rem;
    letter-spacing: .06em;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .2s;
}
.nav-link:hover { color: rgba(255,255,255,.8); }

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: .9rem;
    letter-spacing: .08em;
    padding: .45rem 1.25rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* ─── SHARED ─── */
section {
    padding: 5rem 2rem;
    display: flex;
    align-items: flex-start;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 .875rem;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: currentColor;
    flex-shrink: 0;
}
.eyebrow--dim { color: rgba(245,194,66,.7); }

/* ─── HERO ─── */
#hero {
    background: var(--navy);
    padding-top: calc(var(--nav-h) + 5rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    align-items: center;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245,194,66,.14) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: -120px; left: -80px;
    width: 600px; height: 500px;
    background: radial-gradient(ellipse, rgba(58,91,160,.35) 0%, transparent 65%);
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    bottom: -80px; right: -60px;
    width: 400px; height: 350px;
    background: radial-gradient(ellipse, rgba(245,194,66,.1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO EYEBROW BADGE ─── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245,194,66,.9);
    margin: 0 0 1.25rem;
    padding: .375rem 1rem;
    border: 1px solid rgba(245,194,66,.28);
    background: rgba(245,194,66,.07);
    border-radius: 999px;
    will-change: opacity, transform;
    opacity: 0;
    animation: fadeUp .5s ease forwards .05s;
}
.hero-eyebrow svg {
    width: 13px; height: 13px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}

h1.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.25rem, 3.8vw, 4.25rem);
    line-height: .95;
    letter-spacing: .02em;
    color: var(--white);
    margin-bottom: 1rem;
}

.hl-line {
    display: block;
    will-change: opacity, transform;
    opacity: 0;
    animation: fadeUp .55s ease forwards;
}
.hl-line:nth-child(1) { animation-delay: .2s; }
.hl-line:nth-child(2) { animation-delay: .35s; }
.hl-line:nth-child(3) { animation-delay: .5s; }
.hl-line .hi { color: var(--gold); }

.hero-sub {
    font-size: .9375rem;
    color: rgba(230,234,243,.82);
    max-width: 480px;
    margin-bottom: 1.5rem;
    line-height: 1.65;
    will-change: opacity, transform;
    opacity: 0;
    animation: fadeUp .55s ease forwards .65s;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    will-change: opacity, transform;
    opacity: 0;
    animation: fadeUp .55s ease forwards .8s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: .08em;
    padding: .7rem 1.75rem;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    color: rgba(230,234,243,.5);
    font-family: 'Libre Baskerville', serif;
    font-size: .8125rem;
    padding: .7rem 1rem;
    border: 1px solid rgba(230,234,243,.15);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(230,234,243,.5); color: var(--white); }

/* ─── PROBLEM ─── */
#problem {
    background: var(--bg);
    padding: 5rem 0 0;
    display: block;
}

.problem-center {
    max-width: 960px;
    margin: 0 auto 2.5rem;
    padding: 0 2rem;
    text-align: center;
}

.problem-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 1rem;
}

.problem-lead {
    font-size: 1.0625rem;
    color: var(--navy);
    line-height: 1.7;
    max-width: 670px;
    margin: 0 auto;
    padding: 0 1rem;
}

.problem-marquee-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px 2.5rem;
    overflow: hidden;
}

.problem-marquees {
    position: relative;
    overflow: hidden;
}

.problem-marquees::before,
.problem-marquees::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.problem-marquees::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.problem-marquees::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.problem-marquee-row {
    overflow: hidden;
    white-space: nowrap;
}

.problem-marquee-row + .problem-marquee-row {
    margin-top: .5rem;
}

.problem-marquee-track {
    display: inline-flex;
    gap: .625rem;
    animation: problemMarquee 45s linear infinite;
    will-change: transform;
    padding: .25rem 0;
}

.problem-marquee-track--reverse {
    animation-duration: 52s;
    animation-direction: reverse;
}

@keyframes problemMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}

.problem-badge {
    display: inline-block;
    font-family: 'Libre Baskerville', serif;
    font-size: .75rem;
    font-weight: 700;
    color: var(--navy);
    background: rgba(245,194,66,.1);
    border: 1px solid rgba(245,194,66,.22);
    border-radius: 999px;
    padding: .375rem 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.problem-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px dashed var(--border);
}

.problem-feature {
    padding: 2rem 1.75rem 2.5rem;
    border-right: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
}

.problem-feature:last-child {
    border-right: none;
}

.problem-feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    opacity: .6;
}

.problem-feature-body {
    padding-top: 5rem;
    padding-right: 1.75rem;
}

.problem-feature h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.875rem, 2.4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.problem-feature p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.0625rem;
    color: var(--navy);
    line-height: 1.7;
}

/* ─── MARQUEE ─── */
#marquee {
    background: var(--blue);
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

.marquee-track {
    display: inline-flex;
    will-change: transform;
    animation: marqueeScroll 30s linear infinite;
    padding: .75rem 0;
}

.marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .875rem;
    letter-spacing: .12em;
    color: rgba(255,255,255,.7);
    padding-right: 2rem;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── HOW IT WORKS ─── */
#how {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#how::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245,194,66,.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.how-inner { position: relative; z-index: 1; width: 100%; }

.how-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

.how-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    letter-spacing: .02em;
    color: var(--white);
    line-height: .95;
}

.how-header p {
    font-size: .875rem;
    color: rgba(230,234,243,.92);
    line-height: 1.7;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(230,234,243,.08);
    border-radius: var(--radius);
    overflow: hidden;
}

.step {
    padding: 2rem;
    border-right: 1px solid rgba(230,234,243,.08);
    position: relative;
}
.step:last-child { border-right: none; }

.step-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .8rem;
    letter-spacing: .14em;
    color: var(--gold);
    opacity: .7;
    display: block;
    margin-bottom: 1.25rem;
}

.step-icon {
    width: 40px; height: 40px;
    background: rgba(245,194,66,.07);
    border: 1px solid rgba(245,194,66,.18);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}
.step-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }

.step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: .04em;
    color: var(--white);
    margin-bottom: .5rem;
}

.step p {
    font-size: .8125rem;
    color: rgba(230,234,243,.72);
    line-height: 1.65;
}

/* ─── BENEFITS ─── */
#benefits {
    background: var(--bg);
}

.benefits-header {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.benefits-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    letter-spacing: .02em;
    color: var(--navy);
    line-height: .95;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
}

.benefit-icon {
    width: 38px; height: 38px;
    background: rgba(58,91,160,.07);
    border: 1px solid rgba(58,91,160,.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}
.benefit-icon svg {
    width: 16px; height: 16px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: .04em;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: .5rem;
}

.benefit-card p {
    font-size: .8125rem;
    color: var(--ink);
    line-height: 1.65;
}

/* ─── WHO IT'S FOR ─── */
#who {
    background: var(--paper);
}

.who-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.who-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    letter-spacing: .02em;
    color: var(--navy);
    line-height: .95;
}

.who-body {
    font-size: .875rem;
    color: var(--ink);
    line-height: 1.75;
    margin-top: 1rem;
}

.who-trades-label {
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1rem;
}

.trade-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.trade-list li {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .8rem;
    letter-spacing: .1em;
    color: var(--navy);
    padding: .375rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
}

/* ─── PROOF ─── */
#proof {
    background: var(--bg);
}

.proof-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

.proof-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.875rem, 3vw, 3rem);
    letter-spacing: .02em;
    color: var(--navy);
    line-height: .95;
}

.proof-header p {
    font-size: .875rem;
    color: var(--navy);
    line-height: 1.7;
}

.stat-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-card {
    padding: 1.75rem 1.5rem;
    border-right: 1px solid var(--border);
    background: var(--white);
    position: relative;
}
.stat-card:last-child { border-right: none; }

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 2.75vw, 3rem);
    letter-spacing: .02em;
    color: var(--blue);
    line-height: 1;
    display: block;
    margin-bottom: .5rem;
}

.card-text {
    font-size: .8125rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-source {
    font-size: .65rem;
    color: var(--ink);
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: .3rem;
}
.card-source::before {
    content: '';
    display: block;
    width: 12px; height: 1px;
    background: var(--border);
    flex-shrink: 0;
}

/* ─── PRICING ─── */
#pricing {
    background: var(--paper);
}

.pricing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pricing-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    letter-spacing: .02em;
    color: var(--navy);
    line-height: .95;
    margin-bottom: 1rem;
}

.pricing-left p {
    font-size: .875rem;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.comparison-line {
    font-size: .8125rem;
    color: var(--ink);
    padding: .875rem 1.125rem;
    background: var(--white);
    line-height: 1.7;
    border-radius: 0 var(--radius) var(--radius) 0;
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
}
.comparison-line strong { color: var(--navy); font-style: normal; }

.roi-note {
    font-size: .8rem;
    color: var(--ink);
    padding: .875rem 1.125rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    line-height: 1.7;
    margin-top: 1rem;
}
.roi-note strong { color: var(--navy); font-style: normal; }

.pricing-card {
    background: var(--navy);
    border: 1px solid var(--border-dk);
    border-top: 2px solid var(--gold);
    padding: 2.25rem;
    border-radius: var(--radius);
    color: var(--white);
}

.pricing-eyebrow {
    font-size: .7rem;
    font-weight: normal;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245,194,66,.8);
    display: block;
    margin: 0 0 .5rem;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: .02em;
    color: var(--gold);
    line-height: 1;
}

.price-period {
    font-size: .75rem;
    color: rgba(230,234,243,.6);
    margin-top: .2rem;
    margin-bottom: .5rem;
}

.price-then {
    font-size: .8rem;
    color: rgba(230,234,243,.65);
    margin-bottom: 1.75rem;
    padding-top: .5rem;
    border-top: 1px solid rgba(230,234,243,.08);
}

.pricing-card-note {
    text-align: center;
    font-size: .72rem;
    color: rgba(230,234,243,.55);
    margin-top: .625rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    font-size: .8125rem;
    color: rgba(230,234,243,.65);
    line-height: 1.55;
}

.feature-list li::before {
    content: '';
    display: block;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: .45rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    letter-spacing: .08em;
    padding: .9rem;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.btn-pricing:hover { background: transparent; color: var(--gold); }

/* ─── FAQ ─── */
#faq {
    background: var(--bg);
}

.faq-header {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.faq-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    letter-spacing: .02em;
    color: var(--navy);
    line-height: .95;
}

.faq-list {
    max-width: 780px;
}

.faq-item {
    border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.375rem 0;
    cursor: pointer;
    list-style: none;
    font-family: 'Libre Baskerville', serif;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
    content: '+';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .2s ease;
}

details[open] > .faq-question::after {
    content: '×';
}

.faq-answer {
    padding-bottom: 1.375rem;
}

.faq-answer p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 680px;
}

/* ─── FOOTER CTA ─── */
#footer-cta {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245,194,66,.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

#footer-cta::after {
    content: '';
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 320px;
    background: radial-gradient(ellipse, rgba(245,194,66,.1) 0%, transparent 70%);
    pointer-events: none;
}

.fcta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

#footer-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.75rem);
    letter-spacing: .02em;
    color: var(--white);
    line-height: .95;
    margin-bottom: .875rem;
}

#footer-cta p {
    font-size: .9375rem;
    color: rgba(230,234,243,.92);
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.email-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(230,234,243,.12);
}

.email-form input {
    flex: 1;
    padding: .875rem 1.125rem;
    font-family: 'Libre Baskerville', serif;
    font-size: .875rem;
    border: none;
    background: rgba(255,255,255,.05);
    color: var(--white);
    outline: none;
}
.email-form input::placeholder { color: rgba(230,234,243,.3); }
.email-form input:focus { background: rgba(255,255,255,.08); }

.btn-dark {
    padding: .875rem 1.5rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: .9375rem;
    letter-spacing: .06em;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s;
}
.btn-dark:hover { opacity: .85; }

.form-note {
    font-size: .7rem;
    color: rgba(230,234,243,.55);
    margin-top: 1rem;
}

/* ─── FOOTER ─── */
footer {
    background: #0b0f1c;
    border-top: 1px solid var(--border-dk);
    padding: 1.25rem 2rem;
    display: block;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: .7rem;
    color: rgba(230,234,243,.55);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s;
}

.footer-links a:hover { color: rgba(230,234,243,.6); }

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

.footer-copy {
    font-size: .7rem;
    color: rgba(230,234,243,.45);
}

/* ─── REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); will-change: auto; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ─── FOCUS VISIBLE ─── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--radius);
}
.email-form input:focus-visible {
    outline: 2px solid rgba(245,194,66,.65);
    outline-offset: 0;
}

/* ─── HONEYPOT ─── */
.hp-trap {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* ─── FORM ERROR ─── */
.form-error {
    font-size: .75rem;
    color: #e05252;
    text-align: center;
    margin-top: .75rem;
    font-style: italic;
    line-height: 1.55;
    display: none;
}
.form-error:not(:empty) { display: block; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hl-line,
    .hero-eyebrow,
    .hero-sub,
    .hero-cta-row {
        opacity: 1;
        animation: none;
    }
    .marquee-track,
    .problem-marquee-track { animation-play-state: paused; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    section { padding: 4rem 1.5rem; }

    #problem { padding-top: 4rem; }
    .problem-features { grid-template-columns: repeat(2, 1fr); }
    .problem-feature:nth-child(2) { border-right: none; }
    .problem-feature:nth-child(3),
    .problem-feature:nth-child(4) { border-top: 1px dashed var(--border); }
    .benefit-grid { grid-template-columns: 1fr; }
    .who-inner { grid-template-columns: 1fr; gap: 2rem; }

    .how-header,
    .testimonials-header,
    .proof-header { grid-template-columns: 1fr; gap: .75rem; }

    .steps { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid rgba(230,234,243,.08); }
    .step:last-child { border-bottom: none; }

    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2) { border-right: none; }
    .stat-card:nth-child(3),
    .stat-card:nth-child(4) { border-top: 1px solid var(--border); }

    .pricing-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .problem-marquee-shell { padding: 0 20px; }
}

@media (max-width: 600px) {
    section { padding: 3.5rem 1.25rem; }
    #hero { padding-top: calc(var(--nav-h) + 3rem); }
    nav { padding: 0 1.25rem; }
    .nav-link { display: none; }
    .nav-right { gap: .75rem; }
    .hero-cta-row { flex-direction: column; align-items: center; }
    .email-form { flex-direction: column; }
    .email-form input { width: 100%; }
    .btn-dark { width: 100%; text-align: center; }
    .footer-links { display: none; }
    #problem { padding-top: 3.5rem; }
    .problem-center { padding: 0 1.25rem; }
    .problem-features { grid-template-columns: 1fr; }
    .problem-feature { border-right: none; border-bottom: 1px dashed var(--border); }
    .problem-feature:last-child { border-bottom: none; }
    .problem-feature:nth-child(2),
    .problem-feature:nth-child(3),
    .problem-feature:nth-child(4) { border-top: none; }
    .stat-cards { grid-template-columns: 1fr; }
    .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-card:last-child { border-bottom: none; }
}
