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

:root {
    --navy:          #0F172A;
    --navy-mid:      #1E3A5F;
    --emerald:       #10B981;
    --emerald-dark:  #059669;
    --emerald-light: #D1FAE5;
    --emerald-glow:  rgba(16,185,129,0.18);
    --white:         #FFFFFF;
    --gray-50:       #F8FAFC;
    --gray-100:      #F1F5F9;
    --gray-200:      #E2E8F0;
    --gray-400:      #94A3B8;
    --gray-500:      #64748B;
    --gray-600:      #475569;
    --font:          'Inter', system-ui, -apple-system, sans-serif;
    --nav-h:         68px;
    --r:             12px;
    --r-lg:          20px;
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:     0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:     0 20px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); background: #fff; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }

/* ── NAVBAR ───────────────────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    height: var(--nav-h);
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s, box-shadow .25s;
}
.nav.scrolled { border-bottom-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.nav__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; gap: 8px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__mark { display: block; width: 40px; height: 40px; flex-shrink: 0; }
.logo__name { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.logo__name em { font-style: normal; color: var(--emerald); }
.logo__365 { color: var(--emerald); font-weight: 900; font-style: normal; }
.footer .logo__name { color: #fff; }
.footer .logo__365 { color: #34D399; }
.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; padding-left: 16px; }
.nav__link {
    padding: 7px 14px; font-size: 14px; font-weight: 500; color: var(--gray-600);
    border-radius: 8px; transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--navy); background: var(--gray-100); }
.nav__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    font-family: var(--font); font-weight: 600; border: none; cursor: pointer;
    border-radius: 9px; transition: all .15s; text-decoration: none; white-space: nowrap;
}
.btn-sm  { font-size: 13px; padding: 7px 16px; }
.btn-md  { font-size: 14px; padding: 9px 20px; }
.btn-lg  { font-size: 16px; padding: 13px 28px; border-radius: 11px; }
.btn-xl  { font-size: 17px; padding: 15px 34px; border-radius: 12px; }
.btn--full { width: 100%; }
.btn-ghost  { color: var(--gray-600); background: transparent; }
.btn-ghost:hover { color: var(--navy); background: var(--gray-100); }
.btn-outline { color: var(--navy); background: transparent; border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--navy); }
.btn-primary { color: #fff; background: var(--emerald); }
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(16,185,129,.35); }
.btn-primary-inv { color: var(--emerald); background: rgba(16,185,129,.12); border: 1.5px solid rgba(16,185,129,.25); }
.btn-primary-inv:hover { background: rgba(16,185,129,.2); }
.btn-dark { color: #fff; background: var(--navy); }
.btn-dark:hover { background: #1E293B; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(15,23,42,.3); }
.btn-white { color: var(--navy); background: #fff; }
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-white-outline { color: rgba(255,255,255,.85); background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25); }
.btn-white-outline:hover { background: rgba(255,255,255,.18); color: #fff; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; }
.hamburger:hover { background: var(--gray-100); }

/* Mobile nav drawer */
.mob-nav {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 850; padding: 20px 24px; flex-direction: column;
    overflow-y: auto; border-top: 1px solid var(--gray-200);
}
.mob-nav.open { display: flex; }
.mob-nav__link { display: block; padding: 13px 16px; font-size: 16px; font-weight: 600; color: var(--navy); border-radius: 10px; transition: background .15s; }
.mob-nav__link:hover { background: var(--gray-100); }
.mob-nav__sep { height: 1px; background: var(--gray-200); margin: 10px 0; }
.mob-nav__actions { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
.mob-nav__actions .btn { width: 100%; }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100svh; padding-top: var(--nav-h);
    background: linear-gradient(140deg, #0A1628 0%, #0F3D2E 55%, #0A2640 100%);
    display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero__glow-1 {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,.22) 0%, transparent 70%);
    top: -100px; right: -80px; pointer-events: none;
}
.hero__glow-2 {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(29,78,216,.2) 0%, transparent 70%);
    bottom: -60px; left: 40px; pointer-events: none;
}
.hero__glow-3 {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
    top: 50%; left: 35%; pointer-events: none;
}
.hero__inner {
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    position: relative; z-index: 1; width: 100%;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3);
    color: #6EE7B7; font-size: 12px; font-weight: 700; letter-spacing: .6px;
    text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
    margin-bottom: 24px;
}
.hero__badge-dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero__h1 {
    font-size: clamp(36px, 5vw, 58px); font-weight: 900; line-height: 1.08;
    color: #fff; letter-spacing: -2px; margin-bottom: 22px;
}
.hero__h1 em { font-style: normal; color: var(--emerald); }
.hero__sub {
    font-size: 18px; line-height: 1.72; color: rgba(255,255,255,.58);
    margin-bottom: 40px; max-width: 500px;
}
.hero__ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

/* ── Founding-member live counter ─────────────────────────────────────────── */
.founder-counter {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r); padding: 16px 20px; margin-bottom: 24px; max-width: 460px;
}
.hero__copy--center .founder-counter { margin-left: auto; margin-right: auto; }
.founder-counter__row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    margin-bottom: 10px;
}
.founder-counter__label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.6); }
.founder-counter__nums  { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.founder-counter__nums strong { color: var(--emerald); font-size: 16px; }
.founder-counter__bar {
    height: 8px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden;
}
.founder-counter__fill {
    height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, var(--emerald), #34D399);
    transition: width .6s ease;
}
.founder-counter__sub { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 9px; }

.hero__trust-line {
    display: flex; align-items: center; flex-wrap: wrap; gap: 6px 20px;
    margin-bottom: 32px;
}
.hero__trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.6);
}
.hero__trust-item svg { color: var(--emerald); flex-shrink: 0; }
.hero__social-proof { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatar {
    width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid #0F172A;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: #fff; margin-left: -9px;
}
.avatar:first-child { margin-left: 0; }
.avatar--a { background: #7C3AED; }
.avatar--b { background: #DB2777; }
.avatar--c { background: #D97706; }
.avatar--d { background: #0891B2; }
.avatar--e { background: #65A30D; }
.social-proof-text { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.45; }
.social-proof-text strong { color: rgba(255,255,255,.88); display: block; }

/* ── Compact landing page ─────────────────────────────────────────────────── */
.hero__inner--single { grid-template-columns: 1fr; max-width: 720px; }
.hero__copy--center { text-align: center; }
.hero__copy--center .hero__badge,
.hero__copy--center .hero__ctas,
.hero__copy--center .hero__trust-line { justify-content: center; }
.hero__copy--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero__more-link { font-size: 13.5px; color: rgba(255,255,255,.5); }
.hero__more-link a { color: var(--emerald); font-weight: 600; }
.hero__more-link a:hover { text-decoration: underline; }

.quick-strip { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 44px 0; }
.quick-strip__inner {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px;
}
.quick-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.quick-item svg { flex-shrink: 0; }

/* Dashboard mockup */
.hero__visual { position: relative; }
.mockup {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 48px 96px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}
.mockup__bar {
    background: rgba(255,255,255,.06); padding: 11px 16px;
    display: flex; align-items: center; gap: 7px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.mockup__dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup__dot--r { background: #FF5F56; }
.mockup__dot--y { background: #FFBD2E; }
.mockup__dot--g { background: #27C93F; }
.mockup__url {
    flex: 1; background: rgba(255,255,255,.07); border-radius: 5px;
    padding: 3px 10px; font-size: 11px; color: rgba(255,255,255,.3); font-family: monospace;
}
.mockup__body { display: flex; height: 360px; }
.mockup__side {
    width: 54px; background: rgba(10,22,40,.7); border-right: 1px solid rgba(255,255,255,.06);
    padding: 14px 9px; display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.mockup__side-brand {
    width: 28px; height: 28px; border-radius: 7px; background: var(--emerald);
    display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.mock-nav {
    width: 36px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; gap: 3px; flex-direction: column;
}
.mock-nav--active { background: rgba(16,185,129,.2); }
.mock-nav-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,.15); }
.mock-nav-bar--g { background: var(--emerald); width: 16px; }
.mock-nav-bar--s { width: 12px; }
.mock-nav-bar--lg { width: 18px; }
.mockup__main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.mock-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.mock-stat {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06);
    border-radius: 8px; padding: 10px 10px 8px;
}
.mock-stat__label { font-size: 8px; color: rgba(255,255,255,.3); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.mock-stat__val { font-size: 16px; font-weight: 800; color: rgba(255,255,255,.85); }
.mock-stat__val--g { color: var(--emerald); }
.mock-chart {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05);
    border-radius: 8px; padding: 10px 12px;
}
.mock-chart__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mock-chart__title { font-size: 9px; color: rgba(255,255,255,.35); font-weight: 600; }
.mock-chart__pill { font-size: 8px; background: rgba(16,185,129,.15); color: var(--emerald); padding: 2px 7px; border-radius: 4px; font-weight: 700; }
.mock-bars { display: flex; align-items: flex-end; gap: 4px; height: 52px; }
.mock-bar { flex: 1; border-radius: 3px 3px 0 0; background: rgba(16,185,129,.2); }
.mock-bar--hi { background: var(--emerald); }
/* Bar heights (replaces inline style="height:X%") */
.mock-bar--h35  { height: 35%; }
.mock-bar--h42  { height: 42%; }
.mock-bar--h50  { height: 50%; }
.mock-bar--h55  { height: 55%; }
.mock-bar--h60  { height: 60%; }
.mock-bar--h68  { height: 68%; }
.mock-bar--h70  { height: 70%; }
.mock-bar--h75  { height: 75%; }
.mock-bar--h82  { height: 82%; }
.mock-bar--h90  { height: 90%; }
.mock-bar--h95  { height: 95%; }
.mock-bar--h100 { height: 100%; }
.mock-table { display: flex; flex-direction: column; gap: 5px; }
.mock-row {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.04);
    border-radius: 7px; padding: 7px 10px; display: flex; align-items: center; gap: 9px;
}
.mock-row__av { width: 22px; height: 22px; border-radius: 50%; background: rgba(16,185,129,.35); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; color: var(--emerald); }
.mock-row__lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mock-row__line { height: 5px; border-radius: 3px; background: rgba(255,255,255,.1); }
.mock-row__line--short { width: 55%; }
.mock-badge { font-size: 7px; padding: 2px 7px; border-radius: 4px; font-weight: 700; flex-shrink: 0; }
.mock-badge--g { background: rgba(16,185,129,.18); color: var(--emerald); }
.mock-badge--y { background: rgba(234,179,8,.18); color: #EAB308; }
.mock-badge--b { background: rgba(59,130,246,.18); color: #60A5FA; }

/* Floating cards */
.hero__float {
    position: absolute; background: rgba(255,255,255,.97);
    border-radius: 14px; padding: 13px 18px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; backdrop-filter: blur(10px);
}
.hero__float--tl { top: -16px; left: -16px; }
.hero__float--br { bottom: 16px; right: -16px; }
.hf-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hf-icon--g { background: #D1FAE5; }
.hf-icon--b { background: #DBEAFE; }
.hf-icon--y { background: #FEF3C7; }
.hf-label { font-size: 10px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; }
.hf-val { font-size: 20px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -1px; }
.hf-sub { font-size: 11px; color: var(--emerald); font-weight: 600; }
.hf-sub--blue { color: #3B82F6; }

/* ── STATS BAR ────────────────────────────────────────────────────────── */
.statsbar { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.statsbar__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-item__val { font-size: 38px; font-weight: 900; color: var(--navy); letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.stat-item__val span { color: var(--emerald); }
.stat-item__label { font-size: 14px; color: var(--gray-500); }

/* ── SECTION COMMONS ──────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--gray-50); }
.section__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-hd { margin-bottom: 56px; }
.section-hd--c { text-align: center; }
.section-hd--c .section-sub { margin: 0 auto; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
    font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--emerald);
}
.section-tag::before { content: ''; width: 18px; height: 2px; background: var(--emerald); border-radius: 1px; }
.section-h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--navy); letter-spacing: -1.5px; line-height: 1.13; margin-bottom: 14px; }
.section-h2 em { font-style: normal; color: var(--emerald); }
.section-sub { font-size: 17px; color: var(--gray-500); line-height: 1.72; max-width: 560px; }
.link-accent { color: var(--emerald); font-weight: 600; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--r-lg); padding: 36px 32px; position: relative;
    overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-card__num {
    position: absolute; top: 12px; right: 20px;
    font-size: 80px; font-weight: 900; line-height: 1;
    color: var(--gray-100); letter-spacing: -4px; user-select: none;
}
.step-card__icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--emerald-light);
    display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.step-card__title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.step-card__desc { font-size: 14.5px; color: var(--gray-500); line-height: 1.72; }

/* ── FEATURES ─────────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card {
    background: var(--white); border: 1.5px solid var(--gray-200);
    border-radius: var(--r-lg); padding: 32px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--emerald); }
.feat-card__icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feat-card__title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-card__desc { font-size: 14px; color: var(--gray-500); line-height: 1.72; }
.ic--green  { background: #D1FAE5; }
.ic--blue   { background: #DBEAFE; }
.ic--purple { background: #EDE9FE; }
.ic--yellow { background: #FEF3C7; }
.ic--rose   { background: #FFE4E6; }
.ic--cyan   { background: #CFFAFE; }
.ic--orange { background: #FFEDD5; }

/* ── FREE FOREVER SECTION ─────────────────────────────────────────────── */
.free-section { background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #F0FDF4 100%); }
.free-banner {
    border: 2px solid rgba(16,185,129,.25); border-radius: 24px;
    padding: 64px 56px; text-align: center; position: relative; overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(16,185,129,.06);
}
.free-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(16,185,129,.06) 0%, transparent 65%);
    pointer-events: none;
}
.free-banner__eyebrow {
    display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.2px; color: var(--emerald); margin-bottom: 16px;
}
.free-banner__h2 {
    font-size: clamp(30px, 4vw, 48px); font-weight: 900; color: var(--navy);
    letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 18px;
}
.free-banner__h2 em { font-style: normal; color: var(--emerald); }
.free-banner__sub {
    font-size: 17px; color: var(--gray-500); line-height: 1.72; max-width: 580px;
    margin: 0 auto 48px;
}
.free-banner__sub strong { color: var(--navy); }
.free-banner__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: left; position: relative; }
.free-item {
    background: var(--gray-50); border: 1.5px solid var(--gray-200);
    border-radius: 16px; padding: 28px 24px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.free-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--emerald); }
.free-item__icon {
    width: 44px; height: 44px; border-radius: 12px; background: var(--emerald-light);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.free-item__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.free-item__desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; }

/* ── TRUST & SECURITY SECTION ─────────────────────────────────────────── */
/* Backer callout card */
.backer-card {
    display: flex; align-items: flex-start; gap: 28px;
    background: var(--navy); border-radius: 20px; padding: 36px 40px;
    margin-bottom: 40px; position: relative; overflow: hidden;
}
.backer-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(16,185,129,.14) 0%, transparent 60%);
    pointer-events: none;
}
.backer-card__flag { flex-shrink: 0; margin-top: 4px; }
.backer-card__body { flex: 1; position: relative; }
.backer-card__label {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    color: var(--emerald); margin-bottom: 6px;
}
.backer-card__name {
    font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -0.8px;
    margin-bottom: 4px;
}
.backer-card__detail { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.backer-card__quote {
    font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.75;
    font-style: italic; max-width: 680px;
}
.backer-card__badge {
    flex-shrink: 0; display: flex; align-items: center; gap: 8px;
    background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3);
    color: #6EE7B7; font-size: 12px; font-weight: 700; padding: 8px 16px;
    border-radius: 100px; white-space: nowrap; position: relative;
}

/* Trust shields grid */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.trust-card {
    background: var(--white); border: 1.5px solid var(--gray-200);
    border-radius: var(--r-lg); padding: 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--emerald); }
.trust-card__icon {
    width: 48px; height: 48px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.trust-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.trust-card__desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.72; }
.tc--blue   { background: #DBEAFE; }
.tc--green  { background: #D1FAE5; }
.tc--purple { background: #EDE9FE; }
.tc--yellow { background: #FEF3C7; }
.tc--rose   { background: #FFE4E6; }
.tc--cyan   { background: #CFFAFE; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--r-lg); padding: 32px;
    transition: transform .2s, box-shadow .2s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-stars__s { color: #F59E0B; font-size: 17px; }
.testi-quote { font-size: 15px; color: var(--gray-600); line-height: 1.78; margin-bottom: 24px; font-style: italic; position: relative; }
.testi-quote::before { content: '\201C'; font-size: 60px; color: var(--emerald-light); position: absolute; top: -20px; left: -8px; font-style: normal; line-height: 1; pointer-events: none; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi-av--a { background: linear-gradient(135deg,#7C3AED,#DB2777); }
.testi-av--b { background: linear-gradient(135deg,#0891B2,#0F172A); }
.testi-av--c { background: linear-gradient(135deg,#D97706,#DC2626); }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--gray-400); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--emerald); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--navy);
    background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font);
    transition: background .15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon {
    width: 26px; height: 26px; border-radius: 50%; background: var(--gray-100); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform .25s, background .15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--emerald-light); }
.faq-a {
    max-height: 0; overflow: hidden; font-size: 14px; color: var(--gray-500);
    line-height: 1.75; padding: 0 22px; transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ── CTA BANNER ───────────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(140deg, #0A1628 0%, #064E3B 100%);
    padding: 96px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(16,185,129,.18) 0%, transparent 60%);
}
.cta-banner__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 48px;
    position: relative; z-index: 1;
}
.cta-banner__h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: #fff; letter-spacing: -1.5px; margin-bottom: 12px; }
.cta-banner__h2 em { font-style: normal; color: var(--emerald); }
.cta-banner__sub { font-size: 17px; color: rgba(255,255,255,.55); line-height: 1.65; }
.cta-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 64px 0 28px; }
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-logo { margin-bottom: 14px; display: inline-flex; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.38); line-height: 1.72; max-width: 260px; margin-top: 4px; }
/* Entity attribution — its own full-width row so the sentence fits on one line.
   It does NOT live in the 2fr brand column: that column is ~400px and the line
   needs ~630px, so it could never sit on one line there. */
.footer__attrib { display: flex; justify-content: center; margin-bottom: 28px; }
.footer__backer {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 700; line-height: 1.5;
    color: var(--emerald); background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.2); padding: 7px 18px;
    border-radius: 100px; max-width: 100%;
}
.footer__backer svg { flex-shrink: 0; }
/* Single text node — keeps the sentence out of the flex layout, otherwise the
   bare text and the <a> each become separate flex items and render as columns. */
.footer__backer-txt { min-width: 0; }
.footer__backer-lnk { color: #34D399; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.footer__backer-lnk:hover { color: #fff; text-decoration: none; }
.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__soc {
    width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.38); transition: background .15s, color .15s;
}
.footer__soc:hover { background: rgba(16,185,129,.2); color: var(--emerald); }
.footer__col-h { font-size: 11px; font-weight: 800; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__lnk { font-size: 14px; color: rgba(255,255,255,.48); transition: color .15s; }
.footer__lnk:hover { color: rgba(255,255,255,.9); }
.footer__bot { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,.28); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.28); transition: color .15s; }
.footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ── REVEAL ANIMATION ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .26s; }
.reveal-d4 { transition-delay: .34s; }
.reveal-d5 { transition-delay: .42s; }
.reveal-d6 { transition-delay: .50s; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__sub  { margin-left: auto; margin-right: auto; }
    .hero__ctas, .hero__social-proof { justify-content: center; }
    .hero__trust-line { justify-content: center; }
    .hero__visual { display: none; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .backer-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav__links, .nav__actions { display: none; }
    .hamburger { display: block; margin-left: auto; }
    .steps, .features-grid, .testi-grid, .trust-grid { grid-template-columns: 1fr; }
    .free-banner__grid { grid-template-columns: 1fr; }
    .free-banner { padding: 40px 28px; }
    .faq-grid { grid-template-columns: 1fr; }
    .statsbar__inner { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid var(--gray-200); }
    .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__actions { justify-content: center; flex-wrap: wrap; }
    .footer__top { grid-template-columns: 1fr; }
    .footer__bot { flex-direction: column; text-align: center; }
    /* Sentence is too long for one line on phones — let it wrap inside the pill,
       aligned to the icon rather than centred on a ragged second line. */
    .footer__backer { align-items: flex-start; border-radius: 14px; padding: 10px 14px; }
    .footer__backer svg { margin-top: 2px; }
    .backer-card { padding: 28px 24px; }
    .backer-card__name { font-size: 20px; }
}
@media (max-width: 480px) {
    .hero__h1 { letter-spacing: -1px; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }
    .hero__trust-line { flex-direction: column; align-items: center; gap: 8px; }
}

/* ── LEGAL PAGES (Privacy / Terms) ───────────────────────────────────────── */
.legal-hero {
    background: var(--navy);
    padding: calc(var(--nav-h) + 48px) 0 64px;
    text-align: center;
}
.legal-hero__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--emerald-glow);
    border: 1px solid rgba(16,185,129,.35);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.legal-hero__h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.legal-hero__sub { font-size: 15px; color: rgba(255,255,255,.55); margin-top: 10px; }
.legal-hero__updated {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--emerald);
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.3);
    border-radius: 999px;
    padding: 5px 14px;
    margin-top: 18px;
}

.legal-content { max-width: 760px; margin: 0 auto; padding: 64px 24px 40px; }
.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin: 40px 0 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 14px;
}
.legal-content ul {
    margin: 0 0 16px;
    padding-left: 20px;
}
.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 8px;
}
.legal-content strong { color: var(--navy); }
.legal-content a { color: var(--emerald-dark); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-toc {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--r);
    padding: 20px 24px;
    margin-bottom: 8px;
}
.legal-toc__title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 10px; }
.legal-toc ol { margin: 0; padding-left: 18px; }
.legal-toc li { font-size: 14px; margin-bottom: 6px; }
.legal-toc a { color: var(--navy-mid); font-weight: 500; }
.legal-toc a:hover { color: var(--emerald-dark); }
