/* ─────────────────────────────────────────────────────────────────────────────
   BorderlessRE — Main Stylesheet
   Colors: Sage Green #4A8C6F | Forest #2D5A45 | Deep Forest #1E3A2F
           Pale Sage #D6E8DE | Warm Cream #F7F3EC | Sand #EDE7D9
   Fonts:  DM Sans (all typography — 400/500/600)
───────────────────────────────────────────────────────────────────────────── */

/* ── Custom Properties ───────────────────────────────────────────────────── */
:root {
    --emerald:    #4A8C6F;
    --forest:     #2D5A45;
    --canopy:     #1E3A2F;
    --slate:      #4A5568;
    --sage:       #D6E8DE;
    --mist:       #EDE7D9;
    --cream:      #F7F3EC;
    --white:      #ffffff;
    --danger:     #e05252;
    --warning:    #e07c52;

    /* Fonts — DM Sans everywhere */
    --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;

    --text-base:  var(--slate);
    --text-dark:  var(--canopy);
    --text-light: #8a9199;

    --radius:     6px;
    --radius-lg:  12px;
    --shadow-sm:  0 1px 4px rgba(30,58,47,.07);
    --shadow:     0 4px 20px rgba(30,58,47,.10);
    --shadow-lg:  0 12px 48px rgba(30,58,47,.14);

    --container:  1100px;
    --header-h:   72px;

    --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-base);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald); text-decoration: none; transition: color var(--transition); }
a:hover { text-decoration: underline; }

/* ── Typography ──────────────────────────────────────────────────────────── */

h1 {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
}

/* H2–H6: clean sans-serif */
h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); font-weight: 600; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1.25rem; }
li { margin-bottom: .4rem; }
strong { font-weight: 600; color: var(--text-dark); }

/* ── Section eyebrow label ───────────────────────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--emerald);
    background: var(--mist);
    padding: .3rem .75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-eyebrow--light {
    color: var(--sage);
    background: rgba(200,224,214,.15);
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* ── Scroll Animations ───────────────────────────────────────────────────── */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.animate-in.animate-in--delay { transition-delay: .15s; }
.animate-in.animate-in--delay-2 { transition-delay: .28s; }
.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-family: var(--font-sans);
    font-size: .92rem;
    font-weight: 600;
    line-height: 1;
    padding: .85rem 1.75rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition),
                transform var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-primary { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.btn-primary:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }

.btn-ghost { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.5); box-shadow: none; }

.btn-outline { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: var(--white); }

.btn-white { background: var(--white); color: var(--emerald); border-color: var(--white); }
.btn-white:hover { background: var(--cream); border-color: var(--cream); color: var(--emerald); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .82rem; }
.btn-block { width: 100%; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
    border-color: var(--sage);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.site-logo img { height: 42px; width: auto; }
.site-logo:hover { opacity: .85; }

.site-nav { flex: 1; }
.nav-list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: .1rem; }
.nav-list li a {
    display: block;
    padding: .5rem .85rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--slate);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}
.nav-list li a:hover { color: var(--emerald); background: var(--mist); text-decoration: none; }
.nav-list li.current-menu-item > a { color: var(--emerald); font-weight: 600; }


.header-cta { margin-left: .5rem; flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--canopy);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    background: var(--cream);
    padding: 5rem 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--sage);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: end;
    gap: 3rem;
    min-height: 580px;
}
.hero-content { padding-bottom: 5rem; }

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--canopy);
    line-height: 1.18;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 2.25rem;
    line-height: 1.65;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image — seamless blend into dark hero background */
.hero-image-wrap {
    position: relative;
    align-self: end;
    display: flex;
    justify-content: center;
}

/* No frame — image fades seamlessly into the hero section bg via mask */
.hero-image-frame {
    width: 100%;
    max-width: 420px;
    position: relative;
    line-height: 0; /* removes gap below inline img */
}
.hero-image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    /* Fade bottom into the cream hero background */
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
    mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
}

/* Floating stat badge */
.hero-image-badge {
    position: absolute;
    bottom: 2.5rem;
    left: -0.75rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: .75rem 1.1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.badge-num {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}
.badge-label {
    font-size: .7rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
    background: var(--canopy);
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(200,224,214,.1);
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-number {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.trust-label {
    display: block;
    font-size: .75rem;
    color: rgba(200,224,214,.6);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .3rem;
}
.trust-divider { width: 1px; height: 36px; background: rgba(200,224,214,.2); }

/* ── For You Section ─────────────────────────────────────────────────────── */
.for-you { background: var(--white); }
.for-you-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.for-you-text h2 { margin-bottom: 1.25rem; font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.for-you-text p { color: var(--slate); }
.for-you-text .btn { margin-top: 1.25rem; }
.for-you-proof { display: flex; flex-direction: column; gap: 1.25rem; }

.proof-card {
    background: var(--cream);
    border: 1px solid var(--sage);
    border-left: 4px solid var(--emerald);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow var(--transition), transform var(--transition);
}
.proof-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.proof-deal {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--emerald);
    margin-bottom: .75rem;
}
.proof-numbers {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}
.proof-numbers span {
    font-size: .95rem;
    font-weight: 700;
    color: var(--canopy);
}
.proof-op { font-weight: 400; color: var(--slate) !important; font-size: .85rem !important; }
.proof-result { font-size: .88rem; color: var(--slate); line-height: 1.55; }

/* ── REACH Section ───────────────────────────────────────────────────────── */
.reach-section {
    background: var(--mist);
    border-top: 1px solid var(--sage);
    border-bottom: 1px solid var(--sage);
}
.reach-header { text-align: center; margin-bottom: 3.5rem; }
.reach-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--emerald);
    letter-spacing: .08em;
    margin-top: .5rem;
    margin-bottom: .85rem;
}
.reach-header p { color: var(--slate); max-width: 580px; margin: 0 auto; }

.reach-steps { display: flex; flex-direction: column; gap: 0; }
.reach-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.75rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--sage);
    transition: background var(--transition);
}
.reach-step:last-child { border-bottom: none; }
.reach-step:hover { background: rgba(200,224,214,.2); border-radius: var(--radius); margin: 0 -1rem; padding: 2rem 1rem; }

.reach-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
    text-align: center;
    opacity: .9;
}
.reach-step-content h3 { color: var(--canopy); font-size: 1.1rem; margin-bottom: .5rem; }
.reach-step-content p { color: var(--slate); font-size: .93rem; margin: 0; line-height: 1.65; }

.reach-cta { text-align: center; margin-top: 3rem; }

/* ── CTA Sections ────────────────────────────────────────────────────────── */
.cta-primary {
    background: var(--cream);
    border-top: 1px solid var(--sage);
    border-bottom: 1px solid var(--sage);
}
.cta-inner { max-width: 680px; }
.cta-primary .cta-text h2 { color: var(--canopy); margin-top: .5rem; margin-bottom: 1rem; }
.cta-primary .cta-text p { color: var(--slate); margin-bottom: 1.25rem; }
.cta-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.cta-bullets li {
    padding: .4rem 0 .4rem 1.5rem;
    position: relative;
    color: var(--slate);
    font-size: .92rem;
}
.cta-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.cta-trust { margin-top: .85rem; font-size: .78rem; color: var(--text-light); font-style: italic; }

.cta-secondary { background: var(--mist); }
.cta-secondary .section-eyebrow { background: var(--sage); color: var(--forest); }
.cta-inner--roadmap { max-width: 640px; }
.cta-secondary .cta-text h2 { margin-top: .5rem; margin-bottom: 1rem; }
.cta-secondary .cta-text p { color: var(--slate); margin-bottom: 1.75rem; }

/* ── Post Grid / Cards ───────────────────────────────────────────────────── */
.recent-posts { background: var(--white); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2.5rem; }
.section-header h2 { margin: 0; }
.view-all { font-size: .88rem; font-weight: 600; color: var(--emerald); }
.view-all:hover { text-decoration: underline; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.post-card {
    background: var(--white);
    border: 1px solid var(--sage);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(7,105,81,.25); }
.post-card-image { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--mist); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-body { padding: 1.4rem; }

.post-categories { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .75rem; }
.post-tag {
    display: inline-block;
    background: var(--mist);
    color: var(--emerald);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .22rem .6rem;
    border-radius: 50px;
    transition: background var(--transition);
}
.post-tag:hover { background: var(--sage); text-decoration: none; }

.post-card-title { font-size: 1rem; margin-bottom: .6rem; line-height: 1.4; font-weight: 600; }
.post-card-title a { color: var(--canopy); transition: color var(--transition); }
.post-card-title a:hover { color: var(--emerald); text-decoration: none; }
.post-card-excerpt { font-size: .85rem; color: var(--slate); margin-bottom: .85rem; line-height: 1.6; }
.post-meta { display: flex; gap: 1rem; font-size: .75rem; color: var(--text-light); }

/* ── Single Post ─────────────────────────────────────────────────────────── */
.post-header { background: var(--canopy); padding: 4rem 0 3.5rem; }
.post-header-inner { max-width: 760px; }
.post-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    color: var(--white);
    margin: .75rem 0 1rem;
    line-height: 1.2;
}
.post-header .post-meta { color: rgba(200,224,214,.65); }
.post-hero-image { padding: 0; }
.post-hero-image img { display: block; width: 100%; height: auto; border-radius: 0; }
.post-hero-image .container { padding-left: 0; padding-right: 0; max-width: 100%; }

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate);
    max-width: 700px;
}
.post-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.post-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.post-content ul, .post-content ol { margin-bottom: 1.5rem; }
.post-content li { margin-bottom: .6rem; }
.post-content blockquote {
    border-left: 4px solid var(--emerald);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--mist);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--canopy);
}
.post-content strong { color: var(--canopy); }
.post-content a { font-weight: 500; }
.post-content img { border-radius: var(--radius); margin: 2rem 0; }

.inline-cta {
    background: var(--cream);
    border: 1px solid var(--sage);
    border-left: 4px solid var(--emerald);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2.5rem 0;
    transition: box-shadow var(--transition);
}
.inline-cta:hover { box-shadow: var(--shadow-sm); }
.inline-cta.cta-roadmap { border-left-color: var(--forest); }
.inline-cta h4 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--canopy); }
.inline-cta p { font-size: .9rem; color: var(--slate); margin-bottom: 1rem; }

.post-author-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    border: 1px solid var(--sage);
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    background: var(--cream);
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name { display: block; font-weight: 600; color: var(--canopy); margin-bottom: .2rem; }
.author-bio { display: block; font-size: .83rem; color: var(--slate); }

.post-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.sidebar-sticky { display: flex; flex-direction: column; gap: 1.75rem; }
.sidebar-cta {
    background: var(--cream);
    border: 1px solid var(--sage);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.sidebar-cta h4 { font-size: .95rem; margin-bottom: .5rem; }
.sidebar-cta p { font-size: .83rem; color: var(--slate); margin-bottom: 1rem; }
.sidebar-related h5 { margin-bottom: .75rem; }
.sidebar-related ul { list-style: none; padding: 0; }
.sidebar-related li { padding: .4rem 0; border-bottom: 1px solid var(--mist); font-size: .86rem; }
.sidebar-related li:last-child { border-bottom: none; }
.sidebar-related a { color: var(--slate); }
.sidebar-related a:hover { color: var(--emerald); }

.related-posts-section { background: var(--cream); padding: 4rem 0; }
.related-posts-section h3 { margin-bottom: 2rem; }

/* ── Archive ─────────────────────────────────────────────────────────────── */
.archive-header { background: var(--cream); padding: 3.5rem 0; border-bottom: 1px solid var(--sage); }
.archive-header h1 { margin: 0; }
.archive-layout { padding: 3.5rem 0; }
.blog-index { padding: 3.5rem 0; }
.blog-title { margin-bottom: 2.5rem; }
.no-posts { color: var(--slate); }

.pagination { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 3rem; }
.pagination a, .pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 .75rem;
    border-radius: var(--radius);
    font-size: .88rem; font-weight: 500;
    border: 1px solid var(--sage);
    color: var(--slate);
    transition: background var(--transition), color var(--transition);
}
.pagination a:hover { background: var(--mist); color: var(--emerald); text-decoration: none; }
.pagination .current { background: var(--emerald); color: var(--white); border-color: var(--emerald); }

/* ── Standard Page ───────────────────────────────────────────────────────── */
.page-header { background: var(--canopy); padding: 3.5rem 0; }
.page-header h1 { color: var(--white); margin: 0; }
.page-content { max-width: 760px; padding-top: 3rem; padding-bottom: 4rem; font-size: 1.05rem; line-height: 1.8; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--canopy); padding: 4rem 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(200,224,214,.1);
}
.footer-logo img { filter: brightness(0) invert(1); opacity: .8; margin-bottom: 1.25rem; }
.footer-bio { font-size: .86rem; max-width: 300px; line-height: 1.65; color: rgba(200,224,214,.6); }
.footer-links { display: flex; gap: 4rem; }
.footer-col h5 { color: rgba(200,224,214,.4); margin-bottom: .85rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { padding: 1.25rem 0; }
.footer-bottom .container { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: space-between; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); margin: 0; }

/* ── Quiz Page ───────────────────────────────────────────────────────────── */
.quiz-landing { background: var(--canopy); padding: 5rem 0; }
.quiz-landing-inner { max-width: 680px; }
.quiz-landing h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.quiz-sub { color: var(--sage); font-size: 1.1rem; margin-bottom: 1.75rem; }
.quiz-promises { list-style: none; padding: 0; margin-bottom: 1.75rem; }
.quiz-promises li {
    padding: .4rem 0 .4rem 1.5rem;
    position: relative;
    color: rgba(255,255,255,.85);
    font-size: .92rem;
}
.quiz-promises li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.quiz-trust { font-size: .78rem; color: rgba(200,224,214,.45); font-style: italic; margin-bottom: 1.75rem; }

.quiz-wrapper { background: var(--cream); padding: 4rem 0; }
.quiz-container { max-width: 640px; }

.quiz-progress-bar { height: 4px; background: var(--sage); border-radius: 2px; margin-bottom: .5rem; overflow: hidden; }
.quiz-progress-fill { height: 100%; background: var(--emerald); border-radius: 2px; transition: width .35s ease; width: 0%; }
.quiz-progress-label { font-size: .78rem; color: var(--text-light); margin-bottom: 2.5rem; }

.quiz-step { animation: fadeSlide .25s ease; }
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.quiz-step h2 { margin-bottom: .5rem; }
.quiz-help { font-size: .85rem; color: var(--slate); margin-bottom: 1.5rem; }

.quiz-options { display: flex; flex-direction: column; gap: .55rem; margin-top: 1.25rem; }
.quiz-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .95rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--sage);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    font-size: .92rem;
    color: var(--slate);
}
.quiz-option:hover { border-color: var(--emerald); background: var(--mist); box-shadow: var(--shadow-sm); }
.quiz-option input { width: 18px; height: 18px; accent-color: var(--emerald); flex-shrink: 0; cursor: pointer; }
.quiz-option:has(input:checked) { border-color: var(--emerald); background: var(--mist); color: var(--canopy); font-weight: 500; }
.quiz-option--none { border-style: dashed; color: var(--text-light); }

.quiz-nav { display: flex; gap: 1rem; margin-top: 2.5rem; }

.shake { animation: shake .3s ease; }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

.quiz-email-gate { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--sage); }
.email-gate-inner { max-width: 460px; margin: 0 auto; text-align: center; }
.email-gate-inner h2 { margin-bottom: .75rem; }
.email-gate-inner > p { color: var(--slate); margin-bottom: 1.75rem; }
.email-gate-form { display: flex; flex-direction: column; gap: .75rem; }
.email-gate-form input {
    width: 100%;
    padding: .85rem 1rem;
    border: 2px solid var(--sage);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--canopy);
    background: var(--cream);
    transition: border-color var(--transition);
    outline: none;
}
.email-gate-form input:focus { border-color: var(--emerald); background: var(--white); }
.email-note { font-size: .75rem; color: var(--text-light); margin: 0; }
.email-error { color: var(--danger); font-size: .82rem; margin-top: .5rem; }

/* Results */
.quiz-results { background: var(--cream); padding: 5rem 0; }
.quiz-results-inner { max-width: 760px; }
.results-header { text-align: center; margin-bottom: 4rem; }
.results-header h2 { margin-bottom: 2rem; }

.score-display { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.score-dial { position: relative; width: 140px; height: 140px; flex-shrink: 0; }
.score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: var(--sage); stroke-width: 8; }
.score-ring-fill { fill: none; stroke: var(--emerald); stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.2s ease, stroke .3s; }
.score-number-wrap { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-number { font-size: 2.4rem; font-weight: 700; color: var(--canopy); line-height: 1; }
.score-denom { font-size: .78rem; color: var(--slate); }
.score-band-wrap { text-align: left; max-width: 360px; }
.score-band-label { display: block; font-size: 1.6rem; font-weight: 700; color: var(--canopy); margin-bottom: .35rem; }
.score-band-desc { display: block; color: var(--slate); font-size: .93rem; line-height: 1.55; }

.results-dimensions { margin-bottom: 3rem; }
.results-dimensions h3 { margin-bottom: 1.5rem; }
.dimensions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dimension-card { background: var(--white); border: 1px solid var(--sage); border-radius: var(--radius); padding: 1.25rem; }
.dimension-card.dim--strong { border-left: 3px solid var(--emerald); }
.dimension-card.dim--weak   { border-left: 3px solid var(--warning); }
.dim-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .6rem; }
.dim-label { font-size: .85rem; font-weight: 600; color: var(--canopy); }
.dim-score { font-size: .82rem; color: var(--slate); font-weight: 500; }
.dim-bar { height: 5px; background: var(--mist); border-radius: 3px; overflow: hidden; margin-bottom: .6rem; }
.dim-bar-fill { height: 100%; border-radius: 3px; transition: width 1s ease .3s; }
.dim-badge { font-size: .72rem; font-weight: 600; padding: .2rem .55rem; border-radius: 3px; }
.dim-badge--strong { background: var(--mist); color: var(--emerald); }
.dim-badge--weak   { background: #fef3ee; color: var(--warning); }

.results-insights { margin-bottom: 3rem; }
.insight-block { background: var(--white); border: 1px solid var(--sage); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1rem; }
.insight-block h4 { margin-bottom: .75rem; font-size: 1rem; }
.insight-block p { font-size: .9rem; color: var(--slate); margin: 0; line-height: 1.65; }
.insight--gap  { border-left: 4px solid var(--warning); }
.insight--fear { border-left: 4px solid var(--forest); }
.insight--path { border-left: 4px solid var(--emerald); }

.results-cta { text-align: center; padding: 2.5rem; background: var(--mist); border-radius: var(--radius-lg); }
.results-cta p { color: var(--slate); margin-bottom: 1.5rem; }

/* ── Roadmap Page ────────────────────────────────────────────────────────── */
.roadmap-hero { background: var(--canopy); padding: 5rem 0; }
.roadmap-hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.roadmap-text h1 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: .75rem; }
.roadmap-sub { color: var(--sage); font-size: 1.05rem; margin-bottom: 1.5rem; }
.roadmap-text > p { color: rgba(200,224,214,.7); font-size: .93rem; line-height: 1.65; }

.roadmap-steps-preview { margin-top: 2rem; display: flex; flex-direction: column; gap: .4rem; }
.roadmap-step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .65rem 1rem;
    background: rgba(200,224,214,.07);
    border-radius: var(--radius);
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    transition: background var(--transition);
}
.roadmap-step-item:hover { background: rgba(200,224,214,.12); }
.step-num {
    display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--emerald);
    color: var(--white);
    font-size: .7rem; font-weight: 700;
    flex-shrink: 0;
}
.optin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}
.optin-card h3 { margin-bottom: .5rem; }
.optin-card > p { color: var(--slate); font-size: .9rem; margin-bottom: 1.5rem; }
.optin-card form { display: flex; flex-direction: column; gap: .75rem; }
.optin-card input {
    width: 100%;
    padding: .85rem 1rem;
    border: 2px solid var(--sage);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--canopy);
    background: var(--cream);
    outline: none;
    transition: border-color var(--transition);
}
.optin-card input:focus { border-color: var(--emerald); background: var(--white); }
.optin-note { font-size: .72rem; color: var(--text-light); margin: 0; }
.optin-error { color: var(--danger); font-size: .8rem; }

.optin-success { text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-lg); }
.success-icon {
    width: 50px; height: 50px;
    background: var(--emerald); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; font-weight: 700;
    margin: 0 auto 1.25rem;
}
.optin-success h3 { margin-bottom: .5rem; }
.optin-success p { color: var(--slate); font-size: .88rem; margin-bottom: 1.5rem; }

.roadmap-trust { background: var(--cream); padding: 1.25rem 0; border-top: 1px solid var(--sage); border-bottom: 1px solid var(--sage); }
.trust-line { text-align: center; font-size: .82rem; color: var(--slate); font-style: italic; margin: 0; }
.roadmap-upsell { background: var(--white); }
.roadmap-upsell-inner { max-width: 580px; }
.roadmap-upsell h2 { margin-bottom: 1rem; }
.roadmap-upsell p { color: var(--slate); margin-bottom: 1.75rem; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.not-found { padding: 5rem 0; }
.not-found h1 { margin-bottom: 1rem; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-bottom: 0; }
    .hero-content { padding-bottom: 3rem; }
    .hero-image-wrap { display: none; }
    .for-you-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .dimensions-grid { grid-template-columns: 1fr; }
    .roadmap-hero-inner { grid-template-columns: 1fr; }
    .optin-card { position: static; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    section { padding: 3.5rem 0; }

    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        z-index: 90;
        background: var(--white);
        border-bottom: 1px solid var(--sage);
        padding: 1.25rem 1.5rem;
        box-shadow: var(--shadow);
        transform: translateY(calc(-100% - var(--header-h) - 10px));
        transition: transform .25s ease;
        flex: none;
    }
    .site-nav.nav-open { transform: translateY(0); }
    .nav-list { flex-direction: column; gap: .1rem; }
    .nav-list li a { padding: .75rem 1rem; font-size: .95rem; }

    .header-cta { display: none; }

    .trust-inner { gap: 1.5rem; }
    .trust-divider { display: none; }

    .posts-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .footer-links { flex-direction: column; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; gap: .5rem; }

    .reach-step { grid-template-columns: 52px 1fr; gap: 1rem; }
    .reach-letter { font-size: 2.5rem; }

    .score-display { flex-direction: column; align-items: center; text-align: center; }
    .score-band-wrap { text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .quiz-step h2 { font-size: 1.2rem; }
    .quiz-option { padding: .85rem 1rem; font-size: .88rem; }
    .quiz-email-gate { padding: 1.75rem 1.25rem; }
    .posts-grid { grid-template-columns: 1fr; }
}

/* ── About Page ──────────────────────────────────────────────────────────── */
.about-hero {
    background: var(--canopy);
    padding: 5rem 0 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(200,224,214,.1);
}
.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: end;
}
.about-hero-text { padding-bottom: 5rem; }
.about-hero-text h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}
.about-hero-sub {
    color: var(--sage);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.about-credentials { display: flex; flex-wrap: wrap; gap: .6rem; }
.about-credential {
    background: rgba(200,224,214,.1);
    border: 1px solid rgba(200,224,214,.2);
    color: rgba(255,255,255,.75);
    font-size: .78rem;
    font-weight: 500;
    padding: .3rem .85rem;
    border-radius: 50px;
}
.about-hero-image img {
    display: block;
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
    mask-image: linear-gradient(to bottom, black 55%, transparent 95%);
}

.about-story { background: var(--white); padding: 5rem 0; }
.about-story-inner { max-width: 720px; }
.about-story-inner h2 { margin-bottom: 1.5rem; margin-top: 2.5rem; }
.about-story-inner h2:first-child { margin-top: 0; }
.about-story-inner p { font-size: 1.02rem; line-height: 1.85; color: var(--slate); }

.about-stats {
    background: var(--cream);
    border-top: 1px solid var(--sage);
    border-bottom: 1px solid var(--sage);
}
.about-stats-inner { display: flex; }
.about-stat {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid var(--sage);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--canopy);
    line-height: 1;
    margin-bottom: .4rem;
}
.about-stat-label { display: block; font-size: .78rem; color: var(--slate); }

.about-mission { background: var(--mist); padding: 5rem 0; }
.about-mission-inner { max-width: 720px; }
.about-mission-inner h2 { margin-bottom: 1.5rem; }
.about-mission-inner p { font-size: 1.02rem; line-height: 1.85; color: var(--slate); }
.about-mission-inner .btn { margin-top: 1rem; }

/* ── REACH Framework Page ────────────────────────────────────────────────── */
.reach-page-hero {
    background: var(--canopy);
    padding: 5rem 0;
    border-bottom: 1px solid rgba(200,224,214,.1);
}
.reach-page-hero h1 {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.reach-page-intro {
    color: var(--sage);
    font-size: 1.1rem;
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 2rem;
}
.reach-page-steps-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.reach-page-steps-nav a {
    color: rgba(255,255,255,.6);
    font-size: .82rem;
    font-weight: 500;
    background: rgba(200,224,214,.08);
    border: 1px solid rgba(200,224,214,.15);
    padding: .35rem .9rem;
    border-radius: 50px;
    transition: color var(--transition), background var(--transition);
    text-decoration: none;
}
.reach-page-steps-nav a:hover { color: var(--white); background: rgba(200,224,214,.15); }

.reach-page-why { background: var(--white); padding: 5rem 0; }
.reach-page-why-inner { max-width: 720px; }
.reach-page-why-inner h2 { margin-bottom: 1.5rem; }
.reach-page-why-inner p { font-size: 1.02rem; line-height: 1.85; color: var(--slate); }

.reach-page-step { padding: 5rem 0; }
.reach-page-step:nth-child(odd)  { background: var(--cream); }
.reach-page-step:nth-child(even) { background: var(--white); }

.reach-page-step-inner {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 2rem;
    max-width: 820px;
}
.reach-page-letter {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
    opacity: .2;
    padding-top: .15rem;
}
.reach-page-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: .4rem;
}
.reach-page-tagline {
    display: block;
    font-size: .95rem;
    color: var(--emerald);
    font-weight: 500;
    margin-bottom: 1.75rem;
}
.reach-page-content p { font-size: 1rem; line-height: 1.82; color: var(--slate); }
.reach-page-content p strong { color: var(--canopy); }

.reach-page-example {
    background: var(--mist);
    border-left: 4px solid var(--emerald);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 2rem;
}
.example-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--emerald);
    margin-bottom: .6rem;
}
.reach-page-example p { font-size: .92rem; color: var(--canopy); margin: 0; line-height: 1.7; }

/* About + REACH responsive */
@media (max-width: 1024px) {
    .about-hero-inner { grid-template-columns: 1fr; }
    .about-hero-image { display: none; }
    .about-hero-text { padding-bottom: 4rem; }
    .reach-page-step-inner { grid-template-columns: 64px 1fr; }
    .reach-page-letter { font-size: 4rem; }
}

@media (max-width: 768px) {
    .about-stats-inner { flex-wrap: wrap; }
    .about-stat { flex: 1 1 40%; border-right: none; border-bottom: 1px solid var(--sage); padding: 1.5rem 1rem; }
    .about-stat:last-child { border-bottom: none; }
    .reach-page-step-inner { grid-template-columns: 1fr; gap: 0; }
    .reach-page-letter { font-size: 3rem; margin-bottom: .5rem; }
    .reach-page-steps-nav { gap: .4rem; }
}

/* ── Roadmap page ──────────────────────────────────────────────────────────── */

.roadmap-hero {
    background-color: var(--canopy);
    padding: 80px 0;
}

.roadmap-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

.roadmap-hero .section-eyebrow--light { color: var(--emerald); }

.roadmap-hero h1 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.roadmap-hero-sub {
    font-size: 1.05rem;
    color: rgba(214,232,222,0.8);
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

.roadmap-hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.roadmap-hero-list li {
    font-size: .95rem;
    color: rgba(214,232,222,0.75);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.roadmap-hero-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8FD4A8;
    font-size: .9rem;
}

/* Optin card */
.roadmap-optin-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.roadmap-optin-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--canopy);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.roadmap-field {
    margin-bottom: 1rem;
}

.roadmap-field label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--canopy);
    margin-bottom: .35rem;
}

.roadmap-field input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid #D6E8DE;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--canopy);
    background: #ffffff;
    transition: border-color .15s;
    box-sizing: border-box;
}

.roadmap-field input:focus {
    outline: none;
    border-color: var(--emerald);
}

.roadmap-field input::placeholder {
    color: #b0bab5;
}

.roadmap-submit {
    width: 100%;
    margin-top: .5rem;
    justify-content: center;
}

.roadmap-optin-note {
    font-size: .78rem;
    color: #9aa5a0;
    text-align: center;
    margin: .75rem 0 0;
}

.roadmap-error {
    font-size: .85rem;
    color: #c0392b;
    margin: .75rem 0 0;
    text-align: center;
}

/* Success state */
.roadmap-success {
    text-align: center;
    padding: 8px 0;
}

.roadmap-success-icon {
    width: 52px;
    height: 52px;
    background-color: var(--emerald);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.roadmap-success h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--canopy);
    margin: 0 0 .75rem;
}

.roadmap-success p {
    font-size: .9rem;
    color: #6a7a72;
    line-height: 1.55;
    margin: 0 0 .5rem;
}

.roadmap-success a {
    color: var(--emerald);
}

.roadmap-success-note {
    font-size: .82rem !important;
    color: #9aa5a0 !important;
    margin-top: .75rem !important;
}

/* Steps grid */
.roadmap-steps {
    padding: 80px 0;
    background-color: #ffffff;
}

.roadmap-steps h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--canopy);
    margin: 0 0 2.5rem;
    text-align: center;
}

.roadmap-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.roadmap-step-card {
    background-color: var(--cream);
    border-radius: 8px;
    padding: 24px;
}

.roadmap-step-card--highlight {
    background-color: var(--canopy);
    grid-column: span 1;
}

.roadmap-step-card--highlight .roadmap-step-title,
.roadmap-step-card--highlight .roadmap-step-desc {
    color: rgba(214,232,222,0.75);
}

.roadmap-step-card--highlight .roadmap-step-num {
    color: #8FD4A8;
}

.roadmap-step-num {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: .5rem;
}

.roadmap-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--canopy);
    margin-bottom: .5rem;
    line-height: 1.3;
}

.roadmap-step-desc {
    font-size: .875rem;
    color: #6a7a72;
    line-height: 1.55;
}

/* Proof section */
.roadmap-proof {
    background-color: var(--canopy);
    padding: 64px 0;
}

.roadmap-proof-inner {
    max-width: 700px;
}

.roadmap-proof-label {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(214,232,222,0.5);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.roadmap-proof-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.roadmap-proof-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: .35rem;
}

.roadmap-proof-desc {
    display: block;
    font-size: .8rem;
    color: rgba(214,232,222,0.55);
    line-height: 1.4;
}

.roadmap-proof-stat--highlight .roadmap-proof-num {
    color: #8FD4A8;
}

.roadmap-proof-context {
    font-size: .9rem;
    color: rgba(214,232,222,0.6);
    line-height: 1.6;
    border-top: 1px solid rgba(214,232,222,0.15);
    padding-top: 1.25rem;
}

/* Mobile CTA inside nav (hidden on desktop) */
.nav-mobile-cta { display: none; }

/* Responsive */
@media (max-width: 1024px) {
    .roadmap-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .roadmap-optin-card { max-width: 480px; }
    .roadmap-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .roadmap-proof-numbers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-mobile-cta {
        display: inline-flex;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .roadmap-hero { padding: 48px 0; }
    .roadmap-hero h1 { font-size: 1.75rem; }
    .roadmap-steps-grid { grid-template-columns: 1fr; }
    .roadmap-proof-numbers { grid-template-columns: repeat(2, 1fr); }
    .roadmap-optin-card { padding: 28px 20px; }
}
