/*
  Filename: site.css
  Purpose: Public website design system — ported from landing-v2.html (Aurora light,
           indigo→cyan, MyFitnessPal-inspired) + subpage primitives (page hero, prose,
           pricing cards, blog grid, auth forms). Light default, dark toggle.
  Last Modified: 2026-07-03
*/

/* ============================================================ */
/*  Tokens — light default (MFP-bright) + dark Aurora override   */
/* ============================================================ */
:root {
    /* Surfaces (light) */
    --bg:           #ffffff;
    --bg-soft:      #f5f7fb;
    --bg-elev:      #ffffff;
    --bg-tint:      #eef1f8;
    --text:         #141a2b;
    --text-soft:    #4d5872;
    --text-muted:   #8a93a8;
    --border:       rgba(20, 26, 43, 0.10);
    --border-soft:  rgba(20, 26, 43, 0.06);

    /* Brand (shared with the apps) */
    --c1:    #6366F1;   /* indigo */
    --c2:    #22D3EE;   /* cyan */
    --c-pink:#EC4899;
    --c-violet:#A855F7;
    --green: #10b981;
    --amber: #f59e0b;
    --red:   #ef4444;
    --grad:  linear-gradient(135deg, #6366F1, #22D3EE);
    --grad-soft: linear-gradient(135deg, rgba(99,102,241,.12), rgba(34,211,238,.12));

    --glow:   0 16px 40px rgba(99, 102, 241, .28);
    --shadow-sm: 0 4px 18px rgba(20, 33, 69, 0.06);
    --shadow-md: 0 12px 34px rgba(20, 33, 69, 0.10);
    --shadow-lg: 0 30px 70px rgba(20, 33, 69, 0.14);

    --hero-glow: radial-gradient(60% 50% at 50% 0%, rgba(99,102,241,.16) 0%, transparent 70%);
    --grid-line: rgba(20, 26, 43, 0.04);

    --radius: 18px;
    --radius-lg: 26px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

[data-theme="dark"] {
    --bg:           #14171f;
    --bg-soft:      #1c2029;
    --bg-elev:      #1c2029;
    --bg-tint:      #262a34;
    --text:         #f8fafc;
    --text-soft:    #b6c0d4;
    --text-muted:   #76819a;
    --border:       rgba(255, 255, 255, 0.10);
    --border-soft:  rgba(255, 255, 255, 0.06);

    --grad-soft: linear-gradient(135deg, rgba(99,102,241,.20), rgba(34,211,238,.16));
    --glow:   0 16px 40px rgba(99, 102, 241, .40);
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.30);
    --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);

    --hero-glow: radial-gradient(60% 50% at 50% 0%, rgba(99,102,241,.22) 0%, transparent 70%);
    --grid-line: rgba(255, 255, 255, 0.035);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background .35s var(--ease), color .35s var(--ease);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: rgba(99, 102, 241, .25); }
:focus-visible { outline: 3px solid var(--c1); outline-offset: 2px; border-radius: 4px; }
[id] { scroll-margin-top: 84px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 200; padding: 12px 18px;
    background: var(--bg-elev); color: var(--text); font-weight: 700; border-radius: 12px;
    border: 1px solid var(--border); box-shadow: var(--shadow-md);
    transform: translateY(-200%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ============================================================ */
/*  Buttons                                                      */
/* ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: inherit; font-weight: 800; font-size: 15px; cursor: pointer;
    padding: 14px 26px; border-radius: 14px; border: 1px solid transparent;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, border-color .18s;
    white-space: nowrap;
}
.btn i { font-size: 19px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(99,102,241,.40); }
.btn-ghost { background: var(--bg-elev); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--c1); color: var(--c1); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 12px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }
/* On the dark contrasting hero */
.btn-white { background: #fff; color: #4f46e5; box-shadow: 0 16px 38px rgba(0,0,0,.28); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(0,0,0,.34); }
.btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.34); }
.btn-outline:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }

/* ============================================================ */
/*  Nav                                                          */
/* ============================================================ */
header.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .3s var(--ease), border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}
header.nav.scrolled {
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; gap: 14px; height: 72px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; letter-spacing: -.5px; }
.logo-mark {
    width: 38px; height: 38px; border-radius: 11px; background: var(--grad);
    display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 21px;
    box-shadow: var(--glow);
}
.logo span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: 22px; }
.nav-links a {
    padding: 9px 14px; border-radius: 10px; font-weight: 700; font-size: 14.5px; color: var(--text-soft);
    transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-tint); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; border: 1px solid var(--border);
    background: var(--bg-elev); color: var(--text-soft); cursor: pointer; font-size: 20px;
    display: inline-flex; align-items: center; justify-content: center; transition: color .15s, border-color .15s;
}
.icon-btn:hover { color: var(--c1); border-color: var(--c1); }
.lang-btn { width: auto; padding: 0 12px; font-size: 13px; font-weight: 800; letter-spacing: .5px; font-family: inherit; }
.nav-login { font-weight: 700; font-size: 14.5px; color: var(--text-soft); padding: 9px 8px; }
.nav-login:hover { color: var(--text); }
.burger { display: none; }
/* Nav sitting over a dark contrasting hero (top, not yet scrolled, on hero pages) */
.nav-onhero .nav:not(.scrolled) .logo { color: #fff; }
.nav-onhero .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.80); }
.nav-onhero .nav:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-onhero .nav:not(.scrolled) .nav-login { color: rgba(255,255,255,.82); }
.nav-onhero .nav:not(.scrolled) .nav-login:hover { color: #fff; }
.nav-onhero .nav:not(.scrolled) .icon-btn { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); color: #fff; }
.nav-onhero .nav:not(.scrolled) .icon-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.nav-onhero .nav:not(.scrolled) .logo span { -webkit-text-fill-color: #fff; color: #fff; }
.nav-onhero .nav:not(.scrolled) .nav-actions .btn-primary { background: #fff; color: #0ea5e9; box-shadow: 0 8px 22px rgba(8,47,73,.18); }
.nav-onhero .nav:not(.scrolled) .nav-actions .btn-primary:hover { transform: translateY(-2px); }

/* ============================================================ */
/*  Section scaffolding                                          */
/* ============================================================ */
section { position: relative; }
.sec-pad { padding: 96px 0; }
.sec-alt { background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.2px; color: var(--c1);
    padding: 7px 14px; border-radius: 999px; background: var(--grad-soft); border: 1px solid var(--border-soft);
}
.sec-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; margin: 18px 0 14px; }
.sec-head p { font-size: 18px; color: var(--text-soft); }

/* Scroll-reveal is gated behind the .js class (set in <head>) so content stays visible without JS */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================ */
/*  Hero (home)                                                  */
/* ============================================================ */
.hero {
    padding: 168px 0 150px; position: relative; overflow: hidden; color: #fff; text-align: center;
    background: linear-gradient(118deg, #37A9F0 0%, #29C7EC 54%, #22D3EE 100%);
}
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(60% 55% at 18% -8%, rgba(255,255,255,.34), transparent 60%),
        radial-gradient(55% 60% at 96% 8%, rgba(56,189,248,.30), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(40px, 6.6vw, 78px); font-weight: 800; letter-spacing: -2.4px; line-height: 1.03; max-width: 980px; margin: 0 auto; color: #fff; text-shadow: 0 2px 22px rgba(8,47,73,.16); }
.hero .sub { font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.95); max-width: 600px; margin: 24px auto 0; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; font-size: 14.5px; color: rgba(255,255,255,.9); font-weight: 600; }
.stars { color: #FFDD66; font-size: 17px; letter-spacing: 1px; }
.hero-trust b { color: #fff; font-weight: 800; }

/* Page hero — smaller gradient band for subpages */
.page-hero {
    padding: 140px 0 72px; position: relative; overflow: hidden; color: #fff; text-align: center;
    background: linear-gradient(118deg, #37A9F0 0%, #29C7EC 54%, #22D3EE 100%);
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(60% 55% at 18% -8%, rgba(255,255,255,.34), transparent 60%),
        radial-gradient(55% 60% at 96% 8%, rgba(56,189,248,.30), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -1.8px; line-height: 1.05; color: #fff; text-shadow: 0 2px 22px rgba(8,47,73,.16); }
.page-hero p { font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,.94); max-width: 620px; margin: 16px auto 0; }
.page-hero .hero-cta { margin-top: 30px; }

/* Real iPhone mockups (trainer + client) — overlap the hero's bottom edge */
.stage-sec { background: var(--bg); padding-bottom: 84px; }
.hero-stage { position: relative; z-index: 5; margin: -140px auto 0; max-width: 1020px; }
.hero-shots { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-shots img { display: block; height: auto; transition: transform .45s var(--ease); }
.shot-trainer { width: 320px; transform: rotate(-6deg); margin: 26px -112px 0 0; position: relative; z-index: 1; filter: drop-shadow(0 30px 50px rgba(8,47,73,.32)); }
.shot-client { width: 366px; position: relative; z-index: 2; filter: drop-shadow(0 38px 58px rgba(8,47,73,.4)); }
.hero-shots:hover .shot-trainer { transform: rotate(-9deg) translate(-12px, -4px); }
.hero-shots:hover .shot-client { transform: translateY(-8px) scale(1.012); }
/* Floating label pills */
.shot-tag { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; padding: 8px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px; background: var(--bg-elev); box-shadow: var(--shadow-md); }
.shot-tag i { font-size: 15px; }
.shot-tag.t { left: 19%; top: 21%; color: var(--c1); transform: rotate(-6deg); }
.shot-tag.c { right: 7%; bottom: 18%; color: #0891b2; }
[data-theme="dark"] .shot-tag.c { color: #5EE3F5; }

/* ============================================================ */
/*  Logo / "everything you need" strip                           */
/* ============================================================ */
.strip { padding: 40px 0 8px; }
.strip p { text-align: center; font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 22px; }
.strip-logos { display: flex; flex-wrap: wrap; gap: 18px 44px; align-items: center; justify-content: center; opacity: .75; }
.strip-logos div { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; color: var(--text-soft); letter-spacing: -.3px; }
.strip-logos i { font-size: 22px; }

/* ============================================================ */
/*  Stat band                                                    */
/* ============================================================ */
.statband { background: var(--bg-soft); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.statband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 0; text-align: center; }
.statband .num { font-size: clamp(32px, 4vw, 46px); font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.statband .lab { font-size: 14px; color: var(--text-soft); font-weight: 700; margin-top: 8px; }

/* ============================================================ */
/*  How it works (1-2-3)                                         */
/* ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 28px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); opacity: .9; }
.step-n { font-size: 13px; font-weight: 800; color: var(--c1); letter-spacing: 1px; }
.step-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-soft); color: var(--c1); display: inline-flex; align-items: center; justify-content: center; font-size: 28px; margin: 16px 0 18px; }
.step h3 { font-size: 20px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 9px; }
.step p { color: var(--text-soft); font-size: 15px; }

/* ============================================================ */
/*  Feature grid                                                 */
/* ============================================================ */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcard {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--c1) 45%, var(--border)); }
.fcard-ico { width: 50px; height: 50px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 25px; color: #fff; margin-bottom: 18px; }
.fcard h3 { font-size: 18.5px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; }
.fcard p { color: var(--text-soft); font-size: 14.5px; }
.fcard .tag { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 800; color: var(--c1); }
.bg-indigo { background: linear-gradient(135deg, #6366F1, #4f46e5); }
.bg-cyan { background: linear-gradient(135deg, #22D3EE, #0891b2); }
.bg-pink { background: linear-gradient(135deg, #EC4899, #be185d); }
.bg-violet { background: linear-gradient(135deg, #A855F7, #7c3aed); }
.bg-green { background: linear-gradient(135deg, #10b981, #059669); }
.bg-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* ============================================================ */
/*  Spotlight (alternating media + text)                         */
/* ============================================================ */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.spot + .spot { margin-top: 110px; }
.spot.flip .spot-media { order: 2; }
.spot-text h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; margin: 16px 0 16px; }
.spot-text p { font-size: 17px; color: var(--text-soft); margin-bottom: 22px; }
.spot-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.spot-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; font-size: 15.5px; font-weight: 600; }
.spot-list i { color: var(--green); font-size: 21px; flex-shrink: 0; margin-top: 1px; }
.spot-media { display: flex; justify-content: center; }
.spot-card {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 22px; width: 100%; max-width: 440px; position: relative;
}
.glow-behind::before {
    content: ""; position: absolute; inset: -10% -6%; z-index: -1; border-radius: 40px;
    background: var(--grad); filter: blur(60px); opacity: .18;
}

/* AI scan mock */
.scan-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.scan-ico { width: 44px; height: 44px; border-radius: 13px; background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--glow); }
.scan-head .nm { font-weight: 800; font-size: 15px; } .scan-head .nm small { display: block; color: var(--text-muted); font-weight: 600; font-size: 12px; }
.scan-img {
    height: 120px; border-radius: 14px; margin-bottom: 16px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1f2430, #2c3344); display: flex; align-items: center; justify-content: center;
}
.scan-img i { font-size: 46px; color: rgba(255,255,255,.55); }
.scan-img::after { content: ""; position: absolute; left: 0; right: 0; height: 3px; top: 12px; background: var(--c2); box-shadow: 0 0 14px var(--c2); animation: scanline 2.4s var(--ease) infinite; }
@keyframes scanline { 0%,100% { top: 12px; } 50% { top: 102px; } }
.scan-result { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.scan-result div { background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 12px; padding: 11px 8px; text-align: center; }
.scan-result .v { font-size: 18px; font-weight: 800; letter-spacing: -.5px; }
.scan-result .l { font-size: 10px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; }

/* finance mock */
.fin-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.fin-box { border-radius: 14px; padding: 15px; border: 1px solid var(--border-soft); background: var(--bg-soft); }
.fin-box .l { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.fin-box .v { font-size: 23px; font-weight: 800; letter-spacing: -1px; margin-top: 6px; }
.fin-box.pos { border-left: 3px solid var(--green); } .fin-box.pos .v { color: var(--green); }
.fin-box.net { border-left: 3px solid var(--c1); }
.fin-chart { display: flex; align-items: flex-end; gap: 6px; height: 92px; padding: 12px; background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 14px; }
.fin-chart i { flex: 1; border-radius: 5px 5px 0 0; background: var(--grad); opacity: .85; min-width: 0; }

/* ============================================================ */
/*  Two apps                                                     */
/* ============================================================ */
.apps2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.app2 {
    border-radius: var(--radius-lg); padding: 38px 34px; color: #fff; position: relative; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.app2.trainer { background: linear-gradient(150deg, #4f46e5, #6366F1 55%, #818cf8); }
.app2.client { background: linear-gradient(150deg, #0e7490, #22D3EE 60%, #67e8f9); }
.app2 .badge2 { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; background: rgba(255,255,255,.18); padding: 6px 13px; border-radius: 999px; }
.app2 h3 { font-size: 26px; font-weight: 800; letter-spacing: -.8px; margin: 16px 0 10px; }
.app2 p { font-size: 15.5px; opacity: .92; margin-bottom: 20px; max-width: 360px; }
.app2 ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.app2 li { display: flex; gap: 10px; align-items: center; font-weight: 600; font-size: 14.5px; }
.app2 li i { font-size: 19px; }
.app2 .btn { background: #fff; color: var(--text); }
.app2 .btn:hover { transform: translateY(-2px); }
.app2 .deco { position: absolute; right: -50px; bottom: -50px; font-size: 220px; opacity: .12; }

/* ============================================================ */
/*  Testimonials                                                 */
/* ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.tcard .stars { font-size: 15px; }
.tcard blockquote { font-size: 16px; line-height: 1.6; margin: 14px 0 20px; font-weight: 500; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.tcard .who .nm { font-weight: 800; font-size: 14.5px; } .tcard .who .nm small { display: block; color: var(--text-muted); font-weight: 600; font-size: 12.5px; }

/* ============================================================ */
/*  Big CTA                                                      */
/* ============================================================ */
.cta-final { position: relative; overflow: hidden; }
.cta-box {
    background: var(--grad); border-radius: 32px; padding: 70px 40px; text-align: center; color: #fff; position: relative; overflow: hidden;
    box-shadow: var(--glow);
}
.cta-box::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-box h2 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; letter-spacing: -1.5px; position: relative; }
.cta-box p { font-size: 18px; opacity: .94; max-width: 520px; margin: 16px auto 30px; position: relative; }
.cta-box .btn { background: #fff; color: var(--c1); position: relative; }
.cta-box .btn:hover { transform: translateY(-2px); }
.cta-box .fineprint { margin-top: 16px; font-size: 13.5px; opacity: .9; position: relative; }

/* ============================================================ */
/*  FAQ                                                          */
/* ============================================================ */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border: 1px solid var(--border); border-radius: 16px; margin-bottom: 12px; overflow: hidden; background: var(--bg-elev); }
.qa-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; text-align: left; padding: 20px 22px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 16.5px; font-weight: 700; color: var(--text); }
.qa-q i { font-size: 22px; color: var(--c1); transition: transform .25s var(--ease); flex-shrink: 0; }
.qa.open .qa-q i { transform: rotate(45deg); }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.qa-a p { padding: 0 22px 20px; color: var(--text-soft); font-size: 15.5px; }

/* ============================================================ */
/*  Pricing                                                      */
/* ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 26px; justify-content: center; }
.plan-card {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column;
    transition: transform .2s var(--ease), box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.featured { border: 2px solid var(--c1); box-shadow: var(--glow); }
.plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--grad); color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .8px; padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.plan-name { font-size: 20px; font-weight: 800; letter-spacing: -.4px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 6px; }
.plan-price .amount { font-size: 46px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.plan-price .per { font-size: 15px; color: var(--text-muted); font-weight: 700; }
.plan-limit { font-size: 14px; color: var(--text-soft); font-weight: 700; margin-bottom: 20px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 0 0 28px; flex: 1; }
.plan-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.plan-features i { color: var(--green); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.trial-note { text-align: center; margin-top: 26px; color: var(--text-soft); font-size: 15px; font-weight: 600; }
.trial-note b { color: var(--text); }

/* ============================================================ */
/*  Blog                                                         */
/* ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bcard {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
    transition: transform .2s var(--ease), box-shadow .2s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bcard-img { height: 180px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; }
.bcard-img i { font-size: 48px; color: var(--c1); opacity: .5; }
.bcard-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.bcard-cat { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--c1); margin-bottom: 10px; }
.bcard h3 { font-size: 18px; font-weight: 800; letter-spacing: -.4px; line-height: 1.3; margin-bottom: 10px; }
.bcard p { color: var(--text-soft); font-size: 14.5px; flex: 1; }
.bcard-meta { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.blog-cats a {
    padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 700; color: var(--text-soft);
    border: 1px solid var(--border); background: var(--bg-elev); transition: color .15s, border-color .15s;
}
.blog-cats a:hover { color: var(--c1); border-color: var(--c1); }
.blog-cats a.active { background: var(--grad); color: #fff; border-color: transparent; }
.empty-note { text-align: center; color: var(--text-muted); font-weight: 600; padding: 60px 0; }

/* ============================================================ */
/*  Prose (blog post + legal pages)                              */
/* ============================================================ */
.prose { font-size: 16.5px; line-height: 1.75; color: var(--text-soft); }
.prose h1, .prose h2, .prose h3, .prose h4 { color: var(--text); font-weight: 800; letter-spacing: -.6px; line-height: 1.25; margin: 1.8em 0 .6em; }
.prose h1 { font-size: 32px; } .prose h2 { font-size: 26px; } .prose h3 { font-size: 21px; } .prose h4 { font-size: 17px; }
.prose > :first-child { margin-top: 0; }
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 26px; }
.prose li { margin-bottom: .45em; }
.prose a { color: var(--c1); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(99,102,241,.35); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--c1); }
.prose strong, .prose b { color: var(--text); }
.prose blockquote { border-left: 4px solid var(--c1); padding: 4px 0 4px 20px; margin: 1.4em 0; font-style: italic; }
.prose code { background: var(--bg-tint); border: 1px solid var(--border-soft); border-radius: 6px; padding: 2px 7px; font-size: 14px; }
.prose pre { background: var(--bg-tint); border: 1px solid var(--border-soft); border-radius: 14px; padding: 18px; overflow-x: auto; margin: 0 0 1.2em; }
.prose pre code { background: none; border: none; padding: 0; }
.prose img { border-radius: 14px; margin: 1.2em 0; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.2em; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.prose th { background: var(--bg-soft); color: var(--text); font-weight: 800; }

.legal-updated { font-size: 14px; color: var(--text-muted); font-weight: 600; margin-bottom: 34px; }
.legal-body { padding: 64px 0 96px; }

.post-head { max-width: 820px; margin: 0 auto; text-align: center; }
.post-head h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.12; color: #fff; text-shadow: 0 2px 22px rgba(8,47,73,.16); }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.92); font-weight: 700; flex-wrap: wrap; }
.post-meta .cat { background: rgba(255,255,255,.18); padding: 5px 13px; border-radius: 999px; font-size: 12px; text-transform: uppercase; letter-spacing: .7px; font-weight: 800; }
.post-body { padding: 64px 0 40px; }
.post-cover { max-width: 820px; margin: -46px auto 0; position: relative; z-index: 5; padding: 0 24px; }
.post-cover img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.post-untranslated {
    background: var(--grad-soft); border: 1px solid var(--border); border-radius: 14px;
    padding: 13px 18px; font-size: 14px; font-weight: 600; color: var(--text-soft); margin-bottom: 28px;
}
.post-nav { border-top: 1px solid var(--border-soft); padding: 26px 0 80px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--c1); }
.breadcrumbs i { font-size: 15px; }

/* ============================================================ */
/*  Auth / register card                                         */
/* ============================================================ */
.auth-wrap { max-width: 520px; margin: 0 auto; padding: 0 24px; }
.auth-card {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 38px 36px; position: relative; margin-top: -60px; z-index: 5;
}
.auth-card h2 { font-size: 22px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 22px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 800; margin-bottom: 7px; }
.form-field input, .form-field select {
    width: 100%; padding: 13px 16px; border-radius: 13px; border: 1px solid var(--border);
    background: var(--bg-soft); color: var(--text); font-family: inherit; font-size: 15px; font-weight: 600;
    transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--c1); box-shadow: 0 0 0 3px rgba(99,102,241,.18); }
.form-field .hint { font-size: 12.5px; color: var(--text-muted); font-weight: 600; margin-top: 6px; }
.form-error {
    display: none; background: rgba(239,68,68,.10); border: 1px solid rgba(239,68,68,.35); color: var(--red);
    border-radius: 13px; padding: 12px 16px; font-size: 14px; font-weight: 700; margin-bottom: 18px;
}
.form-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.auth-alt { text-align: center; margin-top: 20px; font-size: 14.5px; color: var(--text-soft); font-weight: 600; }
.auth-alt a { color: var(--c1); font-weight: 800; }
/* Plan selector on the register form */
.plan-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.plan-pick label {
    border: 2px solid var(--border); border-radius: 16px; padding: 16px; cursor: pointer;
    transition: border-color .15s, background .15s; display: block;
}
.plan-pick input { position: absolute; opacity: 0; }
.plan-pick label.selected { border-color: var(--c1); background: var(--grad-soft); }
.plan-pick .pp-name { font-weight: 800; font-size: 15px; }
.plan-pick .pp-price { font-size: 20px; font-weight: 800; letter-spacing: -.6px; margin-top: 4px; }
.plan-pick .pp-price small { font-size: 12px; color: var(--text-muted); font-weight: 700; letter-spacing: 0; }
.plan-pick .pp-limit { font-size: 12px; color: var(--text-soft); font-weight: 600; margin-top: 3px; }
/* Honeypot — visually hidden from humans, present for bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

/* ============================================================ */
/*  Contact / about blocks                                       */
/* ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); text-align: center; }
.contact-card .cico { width: 54px; height: 54px; border-radius: 16px; background: var(--grad-soft); color: var(--c1); display: inline-flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.contact-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.contact-card p, .contact-card a.val { color: var(--text-soft); font-size: 14.5px; font-weight: 600; }
.contact-card a.val { color: var(--c1); font-weight: 800; display: inline-block; margin-top: 4px; }

/* ============================================================ */
/*  404                                                          */
/* ============================================================ */
.nf-hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 140px 24px 80px; }
.nf-hero .code { font-size: clamp(80px, 16vw, 160px); font-weight: 800; letter-spacing: -6px; line-height: 1; }
.nf-hero h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.8px; margin: 12px 0 10px; }
.nf-hero p { color: var(--text-soft); max-width: 440px; margin: 0 auto 28px; }

/* ============================================================ */
/*  Footer                                                       */
/* ============================================================ */
footer.site-foot { border-top: 1px solid var(--border-soft); background: var(--bg-soft); padding: 60px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.foot-brand p { color: var(--text-soft); font-size: 14.5px; max-width: 280px; margin-top: 14px; }
.foot-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--text-soft); font-size: 14.5px; font-weight: 600; padding: 5px 0; }
.foot-col a:hover { color: var(--c1); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; border-top: 1px solid var(--border-soft); flex-wrap: wrap; }
.foot-bottom span { color: var(--text-muted); font-size: 13.5px; font-weight: 600; }
.foot-legal-row { display: flex; gap: 4px 18px; flex-wrap: wrap; }
.foot-legal-row a { color: var(--text-muted); font-size: 13.5px; font-weight: 600; }
.foot-legal-row a:hover { color: var(--c1); }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; font-size: 19px; color: var(--text-soft); }
.foot-social a:hover { color: var(--c1); border-color: var(--c1); }

/* ============================================================ */
/*  Mobile drawer                                                */
/* ============================================================ */
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 110; opacity: 0; pointer-events: none; transition: opacity .25s; }
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; max-width: 84%; background: var(--bg-elev); border-left: 1px solid var(--border); z-index: 120; transform: translateX(105%); transition: transform .3s var(--ease); padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.drawer.open { transform: none; box-shadow: -20px 0 60px rgba(0,0,0,.3); }
.drawer a { padding: 13px 14px; border-radius: 12px; font-weight: 700; font-size: 16px; color: var(--text-soft); }
.drawer a:hover { background: var(--bg-tint); color: var(--text); }
.drawer .btn { margin-top: 10px; }
.drawer-close { align-self: flex-end; }

/* ============================================================ */
/*  ROI calculator (home)                                        */
/* ============================================================ */
.calc {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center;
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: 44px 46px; max-width: 980px; margin: 0 auto;
}
.calc-field { margin-bottom: 26px; }
.calc-field:last-of-type { margin-bottom: 14px; }
.calc-lab-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.calc-lab-row label { font-size: 15px; font-weight: 800; }
.calc-val { font-size: 20px; font-weight: 800; letter-spacing: -.5px; color: var(--c1); white-space: nowrap; }
.calc input[type="range"] { width: 100%; accent-color: var(--c1); height: 26px; cursor: pointer; }
.calc-note { font-size: 13.5px; color: var(--text-muted); font-weight: 600; }
.calc-out { text-align: center; border-left: 1px solid var(--border-soft); padding-left: 40px; }
.calc-big { font-size: clamp(44px, 5vw, 62px); font-weight: 800; letter-spacing: -2.5px; line-height: 1; }
.calc-line { font-size: 15.5px; color: var(--text-soft); font-weight: 700; margin: 12px auto 0; max-width: 320px; }
.calc-vs { font-size: 15px; font-weight: 800; margin: 16px auto 22px; max-width: 320px; }

/* ============================================================ */
/*  Offer / value stack (home)                                   */
/* ============================================================ */
.offer-box {
    background: var(--bg-elev); border: 2px solid var(--c1); border-radius: 30px;
    box-shadow: var(--glow); padding: 46px; position: relative;
}
.offer-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.stack { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.stack li { display: flex; gap: 14px; align-items: flex-start; }
.stack li > i { color: var(--green); font-size: 23px; flex-shrink: 0; margin-top: 1px; }
.stack li > div { min-width: 0; }
.stack b { display: block; font-size: 16.5px; font-weight: 800; letter-spacing: -.3px; }
.stack span { display: block; font-size: 14.5px; color: var(--text-soft); font-weight: 500; margin-top: 2px; }
.offer-side { background: var(--bg-soft); border: 1px solid var(--border-soft); border-radius: 22px; padding: 30px 28px; text-align: center; }
.offer-price-lead { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.offer-price { font-size: clamp(38px, 4.4vw, 52px); font-weight: 800; letter-spacing: -2px; line-height: 1.05; margin-top: 8px; }
.offer-price small { font-size: 17px; font-weight: 800; letter-spacing: -.4px; }
.offer-anchor { font-size: 14.5px; color: var(--text-soft); font-weight: 600; margin: 14px 0 20px; }
.found { background: var(--grad-soft); border: 1px dashed var(--c1); border-radius: 16px; padding: 18px 18px 16px; margin-bottom: 22px; text-align: left; }
.found-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; background: var(--grad); color: #fff; padding: 5px 12px; border-radius: 999px; }
.found-h { font-size: 21px; font-weight: 800; letter-spacing: -.6px; margin: 10px 0 6px; }
.found p { font-size: 13.5px; color: var(--text-soft); font-weight: 600; line-height: 1.55; }
.offer-side .fineprint { margin-top: 12px; font-size: 12.5px; color: var(--text-muted); font-weight: 600; }

/* ============================================================ */
/*  Guarantee (home + pricing)                                   */
/* ============================================================ */
.gua-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gua-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.gua-ico { width: 54px; height: 54px; border-radius: 16px; background: var(--grad-soft); color: var(--c1); display: inline-flex; align-items: center; justify-content: center; font-size: 27px; margin-bottom: 16px; flex-shrink: 0; }
.gua-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; }
.gua-card p { color: var(--text-soft); font-size: 14.5px; }
.gua-line { text-align: center; font-size: 17px; font-weight: 800; letter-spacing: -.3px; margin-top: 36px; }
.gua-blurb {
    display: flex; gap: 20px; align-items: flex-start; max-width: 860px; margin: 26px auto 0;
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 26px 30px; box-shadow: var(--shadow-sm);
}
.gua-blurb h3 { font-size: 18px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 6px; }
.gua-blurb p { color: var(--text-soft); font-size: 15px; }

/* ============================================================ */
/*  Founder note (home)                                          */
/* ============================================================ */
.founder-note {
    background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: 46px 48px;
}
.founder-note h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin: 14px 0 18px; }
.founder-note p { font-size: 16.5px; line-height: 1.7; color: var(--text-soft); margin-bottom: 16px; }
.fn-sign { font-size: 17px; font-weight: 800; letter-spacing: -.3px; margin-top: 22px; }

/* ============================================================ */
/*  Founding banner (pricing)                                    */
/* ============================================================ */
.found-banner {
    display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: center;
    background: var(--bg-elev); border: 2px solid var(--c1); border-radius: 28px;
    box-shadow: var(--glow); padding: 40px 44px; margin-top: 44px;
}
.found-banner h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -.9px; margin: 14px 0 12px; }
.found-banner-text > p { color: var(--text-soft); font-size: 15.5px; margin-bottom: 20px; }
.found-banner-text .spot-list { margin-bottom: 0; }
.found-banner-cta { text-align: center; }
.found-price { font-size: clamp(42px, 5vw, 58px); font-weight: 800; letter-spacing: -2.4px; line-height: 1; margin-bottom: 20px; }
.found-price small { font-size: 18px; font-weight: 800; letter-spacing: -.4px; }
.found-banner-cta .fineprint { margin-top: 12px; font-size: 12.5px; color: var(--text-muted); font-weight: 600; }

/* ============================================================ */
/*  Responsive                                                   */
/* ============================================================ */
@media (max-width: 980px) {
    .spot, .spot.flip .spot-media { grid-template-columns: 1fr; order: 0; }
    .spot-media { margin-top: 8px; }
    .apps2 { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
    .foot-brand { grid-column: 1 / -1; }
    .calc { grid-template-columns: minmax(0, 1fr); gap: 30px; padding: 34px 30px; }
    .calc-out { border-left: none; border-top: 1px solid var(--border-soft); padding-left: 0; padding-top: 30px; }
    .offer-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
    .gua-grid { grid-template-columns: minmax(0, 1fr); }
    .found-banner { grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 32px 28px; }
}
@media (max-width: 760px) {
    .nav-links, .nav-login, .nav-actions > .btn { display: none; }
    .burger { display: inline-flex; }
    .sec-pad { padding: 70px 0; }
    .hero { padding: 128px 0 130px; }
    .page-hero { padding: 118px 0 56px; }
    .hero-stage { margin-top: -86px; }
    .steps, .fgrid, .tgrid, .blog-grid, .plans-grid { grid-template-columns: 1fr; }
    .statband-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 20px; }
    .statband .num { font-size: clamp(22px, 7.4vw, 34px); }
    .shot-trainer { width: 178px; margin: 16px -62px 0 0; }
    .shot-client { width: 208px; }
    .shot-tag { font-size: 10px; padding: 6px 11px; }
    .shot-tag.t { left: -2%; top: 22%; } .shot-tag.c { right: -2%; bottom: 14%; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .scan-result { grid-template-columns: repeat(2, 1fr); }
    .cta-box { padding: 50px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .plan-pick { grid-template-columns: 1fr; }
    .auth-card { padding: 30px 22px; }
    .offer-box { padding: 30px 22px; border-radius: 22px; }
    .founder-note { padding: 32px 26px; }
    .gua-blurb { flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}
