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

:root {
    --blue: #3B82F6;
    --blue-hover: #2563EB;
    --blue-light: #EBF2FE;
    --blue-glow: rgba(59,130,246,0.10);
    --blue-500: #3B82F6;
    --navy: #0F172A;
    --navy-soft: #1E293B;
    --white: #FFFFFF;
    --surface: #F8FAFC;
    --grey-800: #1E293B;
    --grey-600: #475569;
    --grey-500: #64748B;
    --grey-400: #94A3B8;
    --grey-300: #CBD5E1;
    --border: #E2E8F0;
    --green: #059669;
    --green-light: #ECFDF5;
    --gold: #B8860B;
    --gold-light: #FDF8E8;
    --gold-border: rgba(184,134,11,0.2);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-btn: 12px;
    --grey-200: #E4E8EB;
    --border: 1px solid var(--grey-200);
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    color: var(--grey-800);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
    background: linear-gradient(135deg, #0F172A 0%, #1a2744 100%);
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 101;
    letter-spacing: -0.01em;
}
.ann-pill {
    background: linear-gradient(135deg, #B8860B, #D4A017);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ann-cta {
    color: #93C5FD;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 38px;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226,232,240,0.6);
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.nav-logo-text { font-size: 17px; font-weight: 800; color: var(--navy); }
.nav-logo-badge {
    background: var(--navy);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.06em;
}
.btn-primary-2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    height: 44px;
    padding: 0 22px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 180ms ease-out;
}
.btn-primary-2:hover { background: #1a2744; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(15,23,42,0.25); color: var(--white) }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--grey-500);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-btn);
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: all 180ms ease-out;
    border: 1px solid var(--grey-500);
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* ── HERO ── */
.hero {
    background: linear-gradient(165deg, #080D17 0%, #0F172A 60%, #101f38 100%);
    margin: 0 auto;
    padding: 72px 32px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Blue radial glow at top */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 65% 40% at 50% 0%, rgba(59,130,246,0.13) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 1;
    max-width: 760px; margin: 0 auto;
}

/* Eyebrow pill */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 28px;
}

.eyebrow-pill {
    background: rgba(59,130,246,0.14);
    border: 1px solid rgba(59,130,246,0.28);
    color: #93C5FD;
    font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px; border-radius: 20px;
}


/* Headline */
.hero h1 em {
    font-style: normal;
    color: var(--blue);
    display: block;
}

/* CTAs */
.hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--white);
}
.hero h1 span { color: var(--blue); }
.hero-sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--grey-500);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.hero-ctas {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.hero-meta {
    font-size: 13px;
    color: var(--grey-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-meta span {
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.28);
    display: flex; align-items: center; gap: 6px;
}
.hero-meta span:before {
    content: '✓'; color: var(--green);
    font-size: 11px; font-weight: 800;
}

/* ── CREDIBILITY STRIP ── */
.cred-strip {
    background: var(--navy);
    padding: 40px 32px;
    overflow: hidden;
}
.cred-inner { max-width: 960px; margin: 0 auto; }
.cred-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-bottom: 28px;
}
.cred-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 32px;
}
.cred-stat {
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.cred-stat:last-child { border-right: none; }
.cred-num { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.cred-desc { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45); margin-top: 6px; }
.cred-companies {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
    line-height: 2;
}

/* ── SECTIONS ── */
.section {
    padding: 72px 32px;
    max-width: 960px;
    margin: 0 auto;
}
.section-alt {
    background: var(--surface);
    padding: 72px 32px;
}
.section-alt-inner { max-width: 960px; margin: 0 auto; }
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--grey-400);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    line-height: 1.15;
}
.section-sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-500);
    max-width: 520px;
    line-height: 1.6;
}

/* ── PAIN POINTS — PREMIUM MINIMAL ── */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}
.pain-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: all 200ms ease-out;
    position: relative;
}
.pain-card:hover { border-color: var(--grey-300); box-shadow: 0 4px 20px rgba(15,23,42,0.06); transform: translateY(-1px); }
.pain-text { font-size: 15px; font-weight: 500; color: var(--grey-600); line-height: 1.6; }
.pain-text strong { font-weight: 700; color: var(--navy); display: block; margin-top: 4px; }
.pain-bridge {
    margin-top: 20px;
    background: var(--navy);
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pain-bridge p { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.pain-bridge span { color: var(--blue); font-weight: 700; }

/* ── VALUE CARDS ── */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.value-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    background: var(--white);
    transition: all 200ms ease-out;
}
.value-card:hover { border-color: var(--grey-300); box-shadow: 0 8px 32px rgba(15,23,42,0.06); transform: translateY(-2px); }
.value-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    background: var(--surface);
}
.value-freq {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--grey-400);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.value-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.value-body {
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-500);
    line-height: 1.6;
}

/* ── DIFFERENTIATION ── */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.diff-col {
    border-radius: var(--radius);
    padding: 24px;
}
.diff-col.them {
    border: 1px solid var(--border);
    background: var(--white);
}
.diff-col.us {
    border: 1px solid var(--navy);
    background: var(--navy);
}
.diff-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.diff-label.them-label { color: var(--grey-400); }
.diff-label.us-label { color: rgba(255,255,255,0.5); }
.diff-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.diff-row:last-child { margin-bottom: 0; }
.diff-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.diff-text { font-size: 14px; font-weight: 500; color: var(--grey-500); line-height: 1.5; }
.diff-col.us .diff-text { font-weight: 600; color: rgba(255,255,255,0.85); }
.diff-col.us .diff-icon { color: var(--blue); }

/* ── PRICING — INNER CIRCLE ── */
.pricing-card {
    max-width: 520px;
    margin: 36px auto 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(15,23,42,0.08);
}
.pricing-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--grey-400);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
}
.pricing-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--grey-400);
    margin-left: 2px;
}
.pricing-regular {
    font-size: 18px;
    font-weight: 600;
    color: var(--grey-300);
    text-decoration: line-through;
    margin-right: 8px;
}
.pricing-note {
    font-size: 13px;
    color: var(--grey-400);
    margin-top: 6px;
    margin-bottom: 24px;
}
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 28px;
}
.pricing-toggle button {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 150ms ease-out;
    letter-spacing: -0.01em;
}
.pricing-toggle .active { background: var(--navy); color: white; }
.pricing-toggle .inactive { background: transparent; color: var(--grey-400); }
.save-badge {
    background: var(--green-light);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    display: grid;
    gap: 10px;
}
.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--grey-800);
}
.pricing-check {
    width: 18px; height: 18px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 10px;
}
.pricing-divider { height: 1px; background: var(--border); margin: 0 0 24px; }
.pricing-cta { width: 100%; justify-content: center; height: 48px; font-size: 16px; border-radius: var(--radius-btn); }
.pricing-fine {
    text-align: center;
    font-size: 12px;
    color: var(--grey-400);
    margin-top: 12px;
}

/* ── INNER CIRCLE BANNER ── */
.ic-banner {
    background: var(--gold-light);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}
.ic-banner-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ic-banner-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-600);
    line-height: 1.55;
}
.ic-badge {
    background: linear-gradient(135deg, #B8860B, #D4A017);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ── TRUST BANNER ── */
.trust-banner {
    margin-top: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: left;
}
.trust-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--grey-600);
    margin-bottom: 6px;
}
.trust-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-500);
    line-height: 1.55;
}

/* ── FAQ ── */
.faq-list {
    margin-top: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.01em;
    transition: background 150ms ease-out;
}
.faq-q:hover { background: var(--surface); }
.faq-icon { font-size: 16px; color: var(--grey-400); transition: transform 200ms ease-out; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-500);
    line-height: 1.65;
}
.faq-a.open { display: block; }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 32px;
    text-align: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.footer-logo-text { font-size: 16px; font-weight: 700; color: white; }
.footer-logo-badge {
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
footer p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── PROOF SECTION ── */
.proof-stat {
    text-align: center;
    padding: 28px 16px;
    background: var(--navy-soft);
    border: none;
    border-radius: var(--radius);
}
.proof-stat .ps-num {
    font-size: 52px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
}
.proof-stat .ps-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}

/* ── JOURNEY TABS ── */
.journey-tab {
    font-family:'Manrope',sans-serif;
    font-size:14px;font-weight:700;
    padding:9px 20px;border-radius:10px;
    border:1px solid var(--border);
    background:white;color:var(--grey-500);
    cursor:pointer;transition:all 150ms ease-out;
    letter-spacing:-0.01em;
}
.journey-tab.active { background:var(--navy);color:white;border-color:var(--navy); }
.journey-tab:hover:not(.active) { border-color:var(--navy);color:var(--navy); }
@keyframes jfadeIn { from{opacity:0;transform:translateY(5px)} to{opacity:1;transform:translateY(0)} }
.jfade { animation:jfadeIn 180ms ease-out forwards; }

/* ── TOOL CHIPS ── */
.tool-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 7px 13px;
    background: white;
    font-size: 13px;
    font-weight: 700;
    color: var(--grey-800);
    transition: border-color 150ms;
}
.tool-chip:hover { border-color: var(--grey-300); }
.tool-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── INNER CIRCLE EXPLAINER ── */
.ic-explainer {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.ic-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 200ms ease-out;
}
.ic-step:hover { box-shadow: 0 4px 20px rgba(15,23,42,0.06); }
.ic-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.ic-step h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}
.ic-step p {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.55;
}

.lp-nav {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.li-card{min-width:230px;max-width:230px;display:flex;flex-direction:column;justify-content:space-between;background:white;border-radius:var(--radius);padding:16px 18px;text-decoration:none;flex-shrink:0;transition:opacity 150ms;}
.li-card:hover{opacity:0.9;}
.li-card-header{display:flex;align-items:center;gap:7px;margin-bottom:8px;}
.li-card-header span{font-size:12px;font-weight:800;color:var(--navy);}
.li-card-tag{font-size:11px;font-weight:700;color:var(--grey-500);margin-bottom:7px;}
.li-card-quote{font-size:12px;color:var(--grey-500);line-height:1.55;font-style:italic;flex:1;}
.li-card-footer{display:flex;align-items:center;gap:7px;margin-top:12px;font-size:12px;font-weight:700;color:var(--grey-400);}
.li-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,0.2);transition:background 200ms;}
.li-dot.active{background:white;}

.bingo-cell {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    cursor: pointer;
    transition: all 200ms ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-height: 120px;
    justify-content: center;
}
.bingo-cell:hover { border-color: var(--grey-300); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(15,23,42,0.06); }
.bingo-cell.selected {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(0.97);
    box-shadow: 0 2px 12px rgba(15,23,42,0.2);
}
.bingo-cell.selected .bingo-label { color: rgba(255,255,255,0.85); }
.bingo-cell.selected .bingo-icon { transform: scale(1.1); }
.bingo-cell.selected .bingo-icon svg { stroke: rgba(255,255,255,0.9); }
.bingo-icon { transition: transform 200ms ease-out; line-height: 1; display:flex;align-items:center;justify-content:center; }
.bingo-icon svg { stroke: var(--grey-400); transition: stroke 200ms ease-out; }
.bingo-label { font-size: 13px; font-weight: 600; color: var(--grey-600); line-height: 1.45; }
@keyframes bingoPop { 0%{transform:scale(0.8);opacity:0} 50%{transform:scale(1.05)} 100%{transform:scale(1);opacity:1} }
.bingo-pop { animation: bingoPop 400ms ease-out forwards; }

/* Week panels */
.week-panel { display: none; }
.week-panel.active { display: block; }

.hero-image-wrap {
    position: relative; z-index: 1;
    max-width: 860px; margin: 0 auto;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 -16px 60px rgba(59,130,246,0.12),
                0 0 0 1px rgba(255,255,255,0.06);
}

.hero-image-wrap img {
    width: 100%; display: block;
    border-radius: 16px 16px 0 0;
}

  /* ── TIMELINE SVG WRAPPER ── */
  .timeline-wrap {
    position: relative;
    margin-bottom: 24px;
    overflow: visible;
  }

  /* ── DETAIL CARD ── */
  .detail-card {
    border: var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    background: var(--white);
    min-height: 140px;
    transition: var(--transition);
  }

  .detail-card:hover { border-color: var(--blue-500); }

  .dc-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: 6px;
  }

  .dc-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--grey-800);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .dc-body {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: var(--grey-500);
    margin-bottom: 14px;
  }

  .dc-win {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--green-bg);
    border: 1px solid #A7F3D0;
    border-radius: 8px;
    padding: 12px 16px;
  }

  .dc-win-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .dc-win p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #065F46;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .dc-win p span {
    font-weight: 400;
    color: #047857;
  }

  /* milestone card */
  .detail-card.milestone {
    background: var(--navy);
    border-color: var(--indigo);
  }

  .detail-card.milestone .dc-eyebrow { color: #60A5FA; }
  .detail-card.milestone .dc-title { color: var(--white); }
  .detail-card.milestone .dc-body { color: #94A3B8; }
  .detail-card.milestone .dc-win {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
  }
  .detail-card.milestone .dc-win p { color: #A7F3D0; }
  .detail-card.milestone .dc-win p span { color: #6EE7B7; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero { padding: 48px 20px 40px; }
    .hero h1 { font-size: 26px; }
    .hero-sub { font-size: 15px; }
    .cred-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cred-stat { border-right: none; margin-bottom: 8px; }
    .pain-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .section, .section-alt { padding: 48px 20px; }
    .section-title { font-size: 24px; }
    nav { padding: 0 16px; top: 38px; }
    .pricing-card { padding: 24px 18px; }
    .ic-explainer { grid-template-columns: 1fr; }
    .ann-bar { font-size: 11px; gap: 6px; padding: 8px 14px; flex-wrap: wrap; justify-content: center; }
    /* Proof section: stack */
    .proof-bottom-grid { grid-template-columns: 1fr !important; }
    /* Proof stats: 3-col → 1-col */
    .proof-stats-grid, #proof-stats-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    /* Cadence 4-col → 2-col on tablet */
    .cadence-grid, [data-cadence] { grid-template-columns: 1fr 1fr !important; }
    /* LinkedIn carousel: smaller cards */
    .li-card { min-width: 200px !important; max-width: 200px !important; }
    /* Tools: allow full wrap */
    .tool-chip { font-size: 12px; padding: 6px 10px; }
    /* Sticky bar */
    #sticky-bar { padding: 10px 16px; gap: 8px; }
    #sticky-bar .sticky-sub { display: none; }

    .pricing-feature-item {
        align-items: start;
    }

    .pricing-feature-item .pricing-check {
        margin-top: 4px;
        width: 15px;
        height: 15px;
    }

    .ic-banner-title {
        font-size: 10px;
    }
}

@media(max-width:640px){
    #sticky-bar { padding:10px 16px; }
    #sticky-bar p:last-of-type { display:none; }
    #sticky-bar p:first-of-type { font-size:13px; }
}

@media (max-width: 480px) {
    nav { top: 0; }
    .ann-bar { display: none; }
    .hero h1 { font-size: 22px; }
    .hero-sub { font-size: 14px; }
    .value-grid { grid-template-columns: 1fr; }
    .hero-meta { flex-direction: column; gap: 6px; }
    .proof-stat .ps-num { font-size: 32px; }
    .proof-stats-grid, #proof-stats-grid { grid-template-columns: repeat(3,1fr) !important; }
    /* Li carousel even smaller on phone */
    .li-card { min-width: 175px !important; max-width: 175px !important; font-size: 11px; }
    /* Pricing toggle stacks */
    .pricing-toggle { width: 100%; }
    .pricing-toggle button { flex: 1; }
    /* Sticky bar: single line on phone */
    #sticky-bar { flex-wrap: nowrap; overflow: hidden; }
    #sticky-bar p { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    /* Section padding tighter */
    .section, .section-alt { padding: 36px 16px; }
    .section-title { font-size: 22px; }
    /* Bingo Section */
    #bingo-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .bingo-cell { padding: 14px 10px; min-height: 100px; }
    .bingo-icon svg { width: 20px; height: 20px; }
    .bingo-label { font-size: 11px; }
    .hero-ctas { flex-direction: column; gap: 12px; }
}
