/* =========================================================================
   Numbizz marketing site — shared design system
   System A: "Confident Numbers" — matches the live mobile app exactly.
   Primary Electric Indigo #4F46E5 · pure-white surfaces · Plus Jakarta Sans
   headlines + Inter body. No 1px hairline list borders (no-lines rule).
   Built by hand (marketing pages are not Stitch-owned app screens).
   ========================================================================= */

:root {
  /* Brand */
  --indigo:        #4F46E5;
  --indigo-600:    #4338CA;
  --indigo-700:    #3730A3;
  --indigo-50:     #EEF2FF;
  --indigo-100:    #E0E7FF;
  --coral:         #F97316;   /* secondary / urgent accent */
  --teal:          #0F766E;   /* tertiary / positive */
  --saffron:       #B45309;

  /* Ink + surface */
  --ink:           #1A1A2E;   /* near-black headings */
  --ink-2:         #374151;   /* body text */
  --ink-3:         #6B7280;   /* muted */
  --ink-4:         #9CA3AF;   /* faint */
  --surface:       #FFFFFF;   /* pure white per brand rule */
  --surface-2:     #FAFAFB;   /* faintest off-white wash for section bands */
  --surface-3:     #F4F4F8;
  --line:          #ECECF2;   /* used ONLY for hr / footer dividers, never list rows */

  /* Radius (brand: 12px) */
  --r-sm: 10px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows — soft, no harsh borders */
  --shadow-sm:  0 1px 2px rgba(26,26,46,.04), 0 1px 3px rgba(26,26,46,.06);
  --shadow:     0 4px 16px rgba(26,26,46,.06), 0 2px 6px rgba(26,26,46,.04);
  --shadow-lg:  0 18px 50px rgba(79,70,229,.12), 0 6px 18px rgba(26,26,46,.06);
  --shadow-indigo: 0 14px 40px rgba(79,70,229,.30);

  --maxw: 1140px;
  --pad: 24px;

  --font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-600); }
img, svg { display: block; max-width: 100%; }
strong { color: var(--ink); font-weight: 700; }

/* ---- Layout helpers (MOBILE-FIRST: base = phone, scale up at min-width) ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: 60px 0; }
.section--tight { padding: 44px 0; }
@media (min-width: 768px) { .section { padding: 92px 0; } .section--tight { padding: 64px 0; } }
.band { background: var(--surface-2); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--indigo); background: var(--indigo-50);
  padding: 7px 14px; border-radius: var(--r-full); margin-bottom: 18px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-sub { font-size: 1.075rem; color: var(--ink-3); max-width: 620px; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  height: 52px; padding: 0 26px; border-radius: var(--r);
  border: none; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--indigo); color: #fff; box-shadow: var(--shadow-indigo); }
.btn--primary:hover { background: var(--indigo-600); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 46px rgba(79,70,229,.38); }
.btn--ghost { background: #fff; color: var(--indigo); border: 1.5px solid var(--indigo-100); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--indigo); color: var(--indigo-600); transform: translateY(-2px); }
.btn--lg { height: 58px; padding: 0 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---- Header / nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 36px; height: 36px; flex-shrink: 0; object-fit: contain; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: -.03em; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink-2); }
.nav__links a:hover { color: var(--indigo); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav__mobile { display: none; }

/* ---- Hero ---- */
.hero { position: relative; padding: 48px 0 56px; overflow: hidden; }
@media (min-width: 900px) { .hero { padding: 86px 0 76px; } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 78% 8%, rgba(79,70,229,.10), transparent 60%),
    radial-gradient(50% 70% at 8% 90%, rgba(249,115,22,.07), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero__copy { text-align: center; }
.hero h1 { font-size: clamp(2.05rem, 8vw, 3.6rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--indigo); }
.hero__lede { font-size: 1.06rem; color: var(--ink-3); max-width: 540px; margin: 0 auto 26px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; justify-content: center; }
.hero__actions .btn { flex: 1 1 auto; min-width: 200px; }
.hero__trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--ink-3); font-size: .86rem; justify-content: center; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__visual { order: -1; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero__copy { text-align: left; }
  .hero__lede { margin-left: 0; margin-right: 0; font-size: 1.18rem; }
  .hero__actions { justify-content: flex-start; }
  .hero__actions .btn { flex: 0 0 auto; min-width: 0; }
  .hero__trust { justify-content: flex-start; }
  .hero__visual { order: 0; }
}

/* Phone mockup — smaller on phones so it doesn't dominate the screen */
.phone {
  width: 216px; height: 440px; margin: 0 auto; position: relative;
  background: var(--ink); border-radius: 38px; padding: 9px;
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
}
@media (min-width: 560px) { .phone { width: 258px; height: 524px; border-radius: 42px; padding: 11px; } }
@media (min-width: 900px) { .phone { width: 286px; height: 580px; } }
.phone__screen { width: 100%; height: 100%; background: #fff; border-radius: 32px; overflow: hidden; display: flex; flex-direction: column; }
.phone__notch { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: var(--ink); border-radius: var(--r-full); z-index: 2; }
.app-top { background: var(--indigo); color: #fff; padding: 30px 20px 22px; }
.app-top .lbl { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .82; font-weight: 600; }
.app-top .kpi { font-family: var(--font-head); font-weight: 800; font-size: 2.05rem; letter-spacing: -.02em; margin-top: 4px; }
.app-top .sub { font-size: .8rem; opacity: .85; margin-top: 2px; }
.app-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; background: #fff; flex: 1; }
.app-card { background: var(--surface-2); border-radius: var(--r); padding: 14px 15px; }
.app-card .row { display: flex; justify-content: space-between; align-items: center; }
.app-card .nm { font-weight: 600; font-size: .85rem; color: var(--ink); }
.app-card .mut { font-size: .72rem; color: var(--ink-4); }
.app-card .amt { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink); }
.app-card .amt--over { color: var(--coral); }
.app-card .amt--pos { color: var(--teal); }
.app-pill { font-size: .62rem; font-weight: 700; padding: 3px 9px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .04em; }
.app-pill--over { background: #FEF0E6; color: var(--coral); }
/* Scale the in-phone content down to match the smaller phone on phones. */
@media (max-width: 559px) {
  .phone__notch { top: 18px; width: 80px; height: 18px; }
  .app-top { padding: 26px 16px 18px; }
  .app-top .kpi { font-size: 1.62rem; }
  .app-top .lbl { font-size: .6rem; }
  .app-top .sub { font-size: .72rem; }
  .app-body { padding: 12px; gap: 9px; }
  .app-card { padding: 11px 12px; }
  .app-card .nm { font-size: .78rem; }
  .app-card .amt { font-size: .82rem; }
}

/* ---- Logo strip ---- */
.logos { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; color: var(--ink-4); font-weight: 600; font-size: .92rem; }
.logos span { display: inline-flex; align-items: center; gap: 8px; }

/* ---- Feature grid (mobile-first) ---- */
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid { gap: 22px; } .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff; border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__ic {
  width: 50px; height: 50px; border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  background: var(--indigo-50); color: var(--indigo); margin-bottom: 18px;
}
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { font-size: .96rem; color: var(--ink-3); }

/* ---- How it works (mobile-first) ---- */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.step { position: relative; padding: 30px 26px; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.step__n {
  counter-increment: step; width: 42px; height: 42px; border-radius: var(--r-full);
  background: var(--indigo); color: #fff; font-family: var(--font-head); font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step__n::before { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--ink-3); }

/* ---- Pricing (mobile-first) ---- */
.plans { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 420px; margin: 0 auto; }
@media (min-width: 720px) { .plans { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 760px; } }
.plan { position: relative; background: #fff; border-radius: var(--r-xl); padding: 34px 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.plan--popular { box-shadow: var(--shadow-lg); outline: 2px solid var(--indigo); }
.plan__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--indigo); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-full);
}
.plan__name { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.plan__desc { font-size: .9rem; color: var(--ink-3); margin: 4px 0 18px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; }
.plan__price .cur { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.plan__price .amt { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: var(--ink); letter-spacing: -.03em; }
.plan__price .per { font-size: .95rem; color: var(--ink-3); }
.plan__gst { font-size: .82rem; color: var(--ink-4); margin-top: 6px; }
.plan__feats { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.plan__feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink-2); }
.plan__feats svg { width: 20px; height: 20px; color: var(--indigo); flex-shrink: 0; margin-top: 1px; }
.plan .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--ink-3); font-size: .92rem; margin-top: 26px; }

/* ---- CTA band ---- */
.cta {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-700) 100%);
  border-radius: var(--r-xl); padding: 58px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 80% 0%, rgba(255,255,255,.14), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 540px; margin: 0 auto 28px; }
.cta .btn--primary { background: #fff; color: var(--indigo); box-shadow: 0 12px 36px rgba(0,0,0,.18); }
.cta .btn--primary:hover { background: #fff; color: var(--indigo-700); }
.cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 4px 8px; }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 18px; font-family: var(--font-head);
  font-weight: 700; color: var(--ink); font-size: 1.04rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--indigo); font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 18px 22px; color: var(--ink-3); font-size: .97rem; }

/* ---- Footer (mobile-first) ---- */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 48px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
.footer__about { grid-column: 1 / -1; }
@media (min-width: 860px) { .footer { padding: 60px 0 34px; } .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; } .footer__about { grid-column: auto; } }
.footer__about { max-width: 320px; }
.footer__about p { font-size: .92rem; color: var(--ink-3); margin-top: 14px; }
.footer__col h4 { font-family: var(--font-head); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 16px; font-weight: 700; }
.footer__col a { display: block; font-size: .93rem; color: var(--ink-2); margin-bottom: 11px; }
.footer__col a:hover { color: var(--indigo); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); font-size: .86rem; color: var(--ink-4); }
.footer__bottom a { color: var(--ink-4); }
.footer__bottom a:hover { color: var(--indigo); }

/* ---- Legal / content pages ---- */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 0 80px; }
.legal__head { border-bottom: 1px solid var(--line); padding-bottom: 26px; margin-bottom: 38px; }
.legal__head h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 8px; }
.legal__meta { font-size: .92rem; color: var(--ink-3); }
.legal section { margin-bottom: 34px; }
.legal h2 { font-size: 1.32rem; margin-bottom: 12px; color: var(--ink); }
.legal h3 { font-size: 1.06rem; margin: 18px 0 8px; color: var(--ink); }
.legal p { margin-bottom: 13px; font-size: 1rem; color: var(--ink-2); }
.legal ul { margin: 0 0 14px 22px; }
.legal li { margin-bottom: 7px; font-size: 1rem; color: var(--ink-2); }
.legal .toc { background: var(--surface-2); border-radius: var(--r-lg); padding: 22px 26px; margin-bottom: 38px; }
.legal .toc h4 { font-family: var(--font-head); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 12px; }
.legal .toc a { font-size: .95rem; }
.legal .toc ul { columns: 2; margin-left: 18px; }

/* ---- About-specific ---- */
.about-hero { padding: 48px 0 28px; }
@media (min-width: 768px) { .about-hero { padding: 70px 0 40px; } }
.values { display: grid; grid-template-columns: 1fr; gap: 18px; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; text-align: center; }
@media (min-width: 768px) { .values { grid-template-columns: repeat(3,1fr); gap: 22px; } .stat-row { gap: 22px; } }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--indigo); letter-spacing: -.03em; }
.stat .l { font-size: .92rem; color: var(--ink-3); margin-top: 4px; }

/* ---- Contact (mobile-first) ---- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.contact-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; }
.contact-card .ic { width: 46px; height: 46px; border-radius: var(--r); background: var(--indigo-50); color: var(--indigo); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: .97rem; color: var(--ink-2); }

/* ---- Nav: mobile-first. Base = hamburger + drawer; desktop links at >=860px ---- */
.legal .toc ul { columns: 1; }
@media (min-width: 768px) { .legal .toc ul { columns: 2; } }

/* Mobile nav: ONLY the logo + hamburger. Both header CTA buttons are hidden
   (they live inside the drawer), so nothing overlaps the wordmark or the
   hamburger tap target. */
.nav__links { display: none; }
.nav__cta .btn { display: none; }
.nav__toggle { display: inline-flex; }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 12px var(--pad) 20px; border-bottom: 1px solid var(--line); background: #fff; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-head); font-weight: 600; color: var(--ink-2); padding: 13px 6px; }
.cta { padding: 44px 24px; }

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__cta .btn { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
  .cta { padding: 58px 40px; }
}

/* =========================================================================
   FULL-BUILD ADDITIONS (mobile-first)
   ========================================================================= */

/* ---- Auth / signup ---- */
.auth { min-height: calc(100vh - 70px); display: grid; grid-template-columns: 1fr; }
.auth__aside { display: none; }
.auth__main { display: flex; align-items: flex-start; justify-content: center; padding: 36px var(--pad) 64px; }
.auth__card { width: 100%; max-width: 460px; }
.auth__card h1 { font-size: clamp(1.6rem, 6vw, 2.1rem); margin-bottom: 8px; }
.auth__card .sub { color: var(--ink-3); font-size: 1rem; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--ink-2); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select {
  width: 100%; height: 50px; padding: 0 15px; font-size: 1rem; font-family: var(--font-body);
  color: var(--ink); background: var(--surface-2); border: 1.5px solid transparent;
  border-radius: var(--r); transition: border-color .15s ease, background .15s ease; -webkit-appearance: none;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--indigo); background: #fff; }
.field input.is-invalid, .field .phone-wrap.is-invalid input { border-color: #DC2626; background: #FEF2F2; }
.field .field-err { display: none; font-size: .8rem; color: #DC2626; margin-top: 6px; font-weight: 500; }
.field .field-err.show { display: block; }
.field .hint { font-size: .8rem; color: var(--ink-4); margin-top: 6px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.phone-wrap { display: flex; align-items: stretch; }
.phone-wrap .cc { display: inline-flex; align-items: center; padding: 0 12px; background: var(--surface-3); border-radius: var(--r) 0 0 var(--r); font-weight: 600; color: var(--ink-2); font-size: .95rem; }
.phone-wrap input { border-radius: 0 var(--r) var(--r) 0; }
.auth__alt { text-align: center; margin-top: 20px; font-size: .95rem; color: var(--ink-3); }
.auth__legal { text-align: center; margin-top: 16px; font-size: .82rem; color: var(--ink-4); line-height: 1.6; }
.auth__msg { padding: 12px 14px; border-radius: var(--r); font-size: .9rem; margin-bottom: 18px; display: none; }
.auth__msg--err { background: #FEF0E6; color: #B2410C; display: block; }
.auth__msg--ok { background: #E8F5F1; color: #0F766E; display: block; }
.auth__benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.auth__benefits li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.94); font-size: 1rem; }
.auth__benefits svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: #fff; }
.btn--loading { opacity: .7; pointer-events: none; }
@media (min-width: 920px) {
  .auth { grid-template-columns: 1fr 1fr; }
  .auth__aside {
    display: flex; flex-direction: column; justify-content: center; gap: 28px;
    padding: 56px; color: #fff;
    background: linear-gradient(150deg, var(--indigo) 0%, var(--indigo-700) 100%);
  }
  .auth__aside h2 { color: #fff; font-size: 2rem; line-height: 1.15; }
  .auth__aside p { color: rgba(255,255,255,.88); font-size: 1.05rem; }
  .auth__main { align-items: center; padding: 56px; }
}

/* ---- Download / get-the-app ---- */
.dl-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 920px; margin: 0 auto; }
@media (min-width: 760px) { .dl-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
.dl-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.dl-card .ic { width: 56px; height: 56px; border-radius: var(--r); background: var(--indigo-50); color: var(--indigo); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.dl-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.dl-card p { color: var(--ink-3); font-size: .95rem; margin-bottom: 18px; }
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: auto; }
.store-badge {
  display: inline-flex; align-items: center; gap: 9px; height: 48px; padding: 0 16px;
  background: var(--ink); color: #fff; border-radius: 11px; font-family: var(--font-head);
}
.store-badge:hover { color: #fff; background: #000; }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge .s { font-size: .62rem; line-height: 1; opacity: .8; display: block; }
.store-badge .b { font-size: .98rem; line-height: 1.1; font-weight: 700; }
.store-badge--soon { background: var(--surface-3); color: var(--ink-3); pointer-events: none; }
.store-badge--soon .b, .store-badge--soon .s { color: var(--ink-3); }

/* ---- Comparison table ---- */
.compare { max-width: 860px; margin: 0 auto; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 15px 16px; text-align: left; font-size: .93rem; }
.compare thead th { font-family: var(--font-head); font-weight: 700; color: var(--ink); background: var(--surface-2); font-size: .9rem; }
.compare thead th:nth-child(2) { color: var(--indigo); }
.compare tbody tr:nth-child(even) { background: var(--surface-2); }
.compare td:first-child { font-weight: 600; color: var(--ink-2); }
.compare .yes { color: var(--teal); font-weight: 700; }
.compare .no { color: var(--ink-4); }
.compare .col-us { background: var(--indigo-50); }
@media (max-width: 560px) { .compare th, .compare td { padding: 12px 10px; font-size: .82rem; } }

/* ---- Security feature rows ---- */
.sec-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .sec-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
.sec-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 22px; }
.sec-item .ic { width: 44px; height: 44px; border-radius: var(--r); background: var(--indigo-50); color: var(--indigo); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sec-item h3 { font-size: 1.05rem; margin-bottom: 5px; }
.sec-item p { font-size: .92rem; color: var(--ink-3); }

/* ---- Made-in-India badge ---- */
.in-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--r-full); background: #fff; box-shadow: var(--shadow-sm); font-weight: 600; font-size: .85rem; color: var(--ink-2); }
.in-badge .flag { font-size: 1.05rem; line-height: 1; }

/* ---- Floating WhatsApp button ---- */
.wa-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  width: 56px; height: 56px; border-radius: var(--r-full); background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .15s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 30px; height: 30px; }
@media (min-width: 720px) { .wa-fab { right: 24px; bottom: 24px; } }

/* ---- Sticky mobile CTA bar ---- */
.mcta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; transform: translateY(110%); transition: transform .25s ease;
}
.mcta.show { transform: translateY(0); }
.mcta .btn { flex: 1; height: 48px; }
@media (min-width: 720px) { .mcta { display: none; } }
/* keep the WA fab above the sticky bar on mobile */
@media (max-width: 719px) { .wa-fab { bottom: 76px; } }

/* ---- Scroll-reveal animations (progressive enhancement) ----
   Content is VISIBLE BY DEFAULT. Reveal only kicks in when JS confirms it can
   run by adding `.js-reveal` to <html> (see the inline head script). This means
   no-JS users, crawlers, OG/social-preview bots, and static screenshots all see
   the full page; only JS-capable browsers get the fade-in. Without this guard,
   any .reveal element below the first viewport stayed at opacity:0 forever in
   non-scrolling contexts — whole sections looked empty. */
.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
