/* ============================================================
   TOOT — landing page styles
   Brand: deep navy + warm cream + royal-blue accent, Lexend display
   ============================================================ */

:root {
  /* palette */
  --navy:        #1b3160;   /* brand navy (logo mark / suit) */
  --navy-deep:   #0f1f3d;   /* darkest sections / text */
  --ink:         #14233f;   /* primary text */
  --ink-soft:    #43526e;   /* secondary text */
  --ink-faint:   #7c879c;   /* tertiary / labels */

  --paper:       #f6f2e9;   /* warm cream page bg */
  --paper-2:     #efe9dc;   /* deeper cream panels */
  --card:        #ffffff;
  --line:        #e4ddcd;   /* hairlines on cream */
  --line-soft:   #ece6d9;

  --accent:      #2f50cf;   /* royal blue (tie / pocket square) */
  --accent-deep: #2340b0;
  --accent-tint: #e9edfb;
  --gold:        #b88a3e;   /* watch-chain gold, used sparingly */

  --grey-tusk:   #efe8da;   /* warm ivory */

  /* status hues */
  --ok:          #2f7d52;
  --ok-bg:       #e4f1e8;
  --warn:        #9a6a16;
  --warn-bg:     #f6ebd4;
  --audit:       #b4530e;
  --audit-bg:    #f8edda;
  --info:        #2f50cf;
  --info-bg:     #e9edfb;

  /* type */
  --display: 'Lexend', system-ui, sans-serif;
  --body:    'Lexend', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-card: 0 1px 2px rgba(20,35,63,.04), 0 12px 30px -12px rgba(20,35,63,.18);
  --shadow-float: 0 2px 4px rgba(20,35,63,.06), 0 30px 60px -22px rgba(15,31,61,.35);

  /* layout */
  --maxw: 1680px;
  --gutter: clamp(20px, 5vw, 56px);

  /* tweakable */
  --paper-warmth: 1;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--navy); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
/* offset in-page anchor jumps for the sticky nav (~75px) */
#demo, #faq, #top { scroll-margin-top: 86px; }
/* these two cancel each section's responsive top padding so the gap below the
   nav stays constant at every width (eyebrow/panel lands just under the nav) */
#how { scroll-margin-top: calc(93px - clamp(52px, 5.5vw, 84px)); }
#pricing { scroll-margin-top: calc(103px - clamp(48px, 5vw, 78px)); }

/* ---------- shared atoms ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.on-dark { color: #9fb4e8; }
.eyebrow.on-dark::before { background: #9fb4e8; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 26px;
  border-radius: 100px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 22px -10px rgba(27,49,96,.6); }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 16px 30px -12px rgba(27,49,96,.7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--paper); }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }
.btn-sm { height: 44px; padding: 0 18px; font-size: 15px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .02em;
  padding: 5px 11px; border-radius: 100px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }

/* ============================================================
   NAV
   ============================================================ */
.announce {
  background: var(--navy-deep);
  color: #dfe7f6;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.announce b { color: #fff; font-weight: 600; }
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.4); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img.mark { height: 30px; width: auto; }
.brand img.word { height: 21px; width: auto; margin-top: 3px; }
.brand .tm { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); align-self: flex-start; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  transition: color .15s ease; position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .login { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.nav-actions .login:hover { color: var(--ink); }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(40px, 6vw, 70px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero-copy { max-width: 720px; }

/* audience switcher */
.switcher {
  display: inline-flex;
  padding: 5px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  gap: 3px;
  margin-bottom: 26px;
}
.switcher button {
  border: none; background: transparent;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  color: var(--ink-soft);
  padding: 9px 15px; border-radius: 100px;
  transition: color .25s ease, background .28s ease, box-shadow .28s ease;
  position: relative; z-index: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.switcher button .ic { margin-right: 7px; opacity: .65; }
.switcher button:hover { color: var(--ink); }
body.preload .switcher button { transition: none !important; }
.switcher button[aria-selected="true"] {
  color: #fff; background: var(--navy);
  box-shadow: 0 6px 16px -6px rgba(27,49,96,.55);
}
.switcher button[aria-selected="true"]:hover { color: #fff; }
.switcher button[aria-selected="true"] .ic { opacity: 1; }

.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.05rem); font-weight: 600; }
.hero h1 .accent { color: var(--accent); }
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 0.06em; height: 0.30em;
  background: var(--gold); opacity: .32; border-radius: 3px; z-index: -1;
}
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-soft); margin-top: 22px; max-width: 620px; line-height: 1.55; }
.hero-sub code { font-family: 'JetBrains Mono', monospace; font-size: 0.88em; background: rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.08); padding: 1px 6px; border-radius: 5px; }
.hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 16px; margin-top: 20px; color: var(--ink-faint); font-size: 14px; flex-wrap: wrap; }
.hero-note .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); opacity: .5; }
.hero-note b { color: var(--ink-soft); font-weight: 600; }

/* swap animation for hero text blocks */
.aud-swap { display: none; }
.aud-swap.is-active { display: block; opacity: 1; animation: rise .5s cubic-bezier(.2,.7,.2,1); }
@keyframes rise { from { transform: translateY(12px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .aud-swap.is-active { animation: none; } }
.aud-swap-inline { display: none; }
.aud-swap-inline.is-active { display: inline; }

/* ---------- hero visual: product + mascot ---------- */
.hero-visual { position: relative; }
.mascot-hero {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 40%;
  max-width: 230px;
  filter: drop-shadow(0 24px 30px rgba(15,31,61,.28));
  z-index: 3;
  pointer-events: none;
}

/* faux product card — the weekly review */
.app-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.app-top {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 16px; border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.app-top .tdot { width: 11px; height: 11px; border-radius: 50%; background: #d9d2c2; }
.app-top .tdot:nth-child(2){ background:#e3dccb;} .app-top .tdot:nth-child(3){ background:#ece5d4;}
.app-top .ttl { margin-left: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink-faint); letter-spacing: .02em; }
.app-top .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; color: var(--ok); font-weight: 600; }
.app-top .live .dot { background: var(--ok); box-shadow: 0 0 0 0 rgba(47,125,82,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(47,125,82,.45);} 70%{box-shadow:0 0 0 7px rgba(47,125,82,0);} 100%{box-shadow:0 0 0 0 rgba(47,125,82,0);} }

.app-summary { display: flex; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--line-soft); flex-wrap: wrap; }
.app-summary .stat { flex: 1; min-width: 90px; }
.app-summary .k { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); }
.app-summary .v { font-family: var(--display); font-weight: 600; font-size: 19px; margin-top: 3px; letter-spacing: -.02em; }
.app-summary .v.ok { color: var(--ok); }
.app-summary .v.warn { color: var(--warn); }

.app-rows { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.txn {
  display: grid; grid-template-columns: 34px 1fr auto; gap: 11px; align-items: center;
  padding: 11px 12px; border-radius: var(--r-md);
  border: 1px solid transparent; transition: background .15s ease, border-color .15s ease;
}
.txn:hover { background: var(--paper); }
.txn.locked { background: color-mix(in srgb, var(--ok-bg) 55%, #fff); border-color: color-mix(in srgb, var(--ok) 22%, transparent); }
.txn .logo {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 14px; color: #fff;
}
.txn .meta { min-width: 0; }
.txn .name { font-weight: 600; font-size: 14.5px; letter-spacing: -.01em; color: var(--ink); }
.txn .sub { font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); margin-top: 1px; }
.txn .right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.txn .amt { font-family: var(--mono); font-weight: 600; font-size: 14px; color: var(--ink); }
.chip { font-family: var(--mono); font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 100px; display: inline-flex; align-items: center; gap: 5px; letter-spacing: .01em; }
.chip.ok { background: var(--ok-bg); color: var(--ok); }
.chip.warn { background: var(--warn-bg); color: var(--warn); }
.chip.info { background: var(--info-bg); color: var(--info); }

.app-foot { padding: 12px 16px 15px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; gap: 10px; }
.app-foot .agent { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-soft); }
.app-foot .agent .av { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; }
.app-foot .agent .av img { width: 17px; }
.app-foot .lockbtn { margin-left: auto; }

/* hero product card — Tally-style transaction list */
.app-head { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border-bottom: 1px solid var(--line-soft); background: var(--paper); }
.app-head .avatar { width: 30px; height: 30px; border-radius: 8px; background: var(--navy); display: grid; place-items: center; flex: none; }
.app-head .avatar img { width: 20px; }
.app-head .bname { font-family: var(--display); font-weight: 700; font-size: 14.5px; letter-spacing: -.01em; line-height: 1.1; }
.app-head .bsub { font-size: 10.5px; color: var(--ink-faint); }
.app-head .recbtn { margin-left: auto; background: var(--ok); color: #fff; border: none; font-family: var(--display); font-weight: 600; font-size: 12px; padding: 7px 12px; border-radius: 8px; }
.app-bar { display: flex; align-items: center; padding: 12px 15px 9px; }
.app-bar .ttl2 { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -.02em; }
.app-bar .month { margin-left: auto; font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); border: 1px solid var(--line); padding: 4px 10px; border-radius: 7px; }
.app-filters { display: flex; gap: 6px; padding: 0 15px 11px; flex-wrap: wrap; border-bottom: 1px solid var(--line-soft); }
.fpill { font-family: var(--mono); font-size: 11px; padding: 4px 9px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-soft); display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
.fpill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.fpill .c { font-weight: 700; }
.fpill .dotg { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.trows { display: flex; flex-direction: column; }
.trow { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 11px 15px; border-bottom: 1px solid var(--line-soft); align-items: center; }
.trow.audit-row { background: var(--audit-bg); box-shadow: inset 3px 0 0 var(--audit); }
.trow .main { min-width: 0; }
.trow .l1 { display: flex; align-items: center; gap: 8px; min-width: 0; }
.trow .name { font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trow .l2 { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.badge { font-family: var(--mono); font-size: 9.5px; font-weight: 600; padding: 3px 7px; border-radius: 5px; display: inline-flex; gap: 4px; align-items: center; white-space: nowrap; flex: none; letter-spacing: .01em; }
.badge.rec { background: var(--ok-bg); color: var(--ok); }
.badge.unrec { background: var(--paper-2); color: var(--ink-faint); }
.badge.audit { background: var(--audit); color: #fff; }
.acct { font-family: var(--mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .04em; background: var(--paper-2); color: var(--ink-soft); padding: 3px 7px; border-radius: 5px; white-space: nowrap; flex: none; }
.cls { font-size: 12px; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trow .right { text-align: right; flex: none; }
.trow .amt2 { font-family: var(--mono); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.rcpt { font-family: var(--mono); font-size: 10.5px; margin-top: 5px; display: inline-flex; gap: 4px; align-items: center; justify-content: flex-end; }
.rcpt.ok { color: var(--ok); }
.rcpt.miss { color: var(--audit); font-weight: 600; }
.rcpt.na { color: var(--ink-faint); }
.app-banner { display: flex; align-items: center; gap: 10px; padding: 11px 15px; background: var(--audit-bg); border-top: 1px solid var(--line-soft); }
.app-banner .abw { color: var(--audit); font-size: 12px; }
.app-banner .abtxt strong { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.app-banner .abbtn { margin-left: auto; background: var(--audit); color: #fff; border: none; font-family: var(--display); font-weight: 600; font-size: 11.5px; padding: 6px 11px; border-radius: 7px; }

/* founders transaction detail card */
.detail-card { overflow: hidden; }
.dc-head { padding: 18px 20px 16px; border-bottom: 1px solid var(--line-soft); }
.dc-head .badge { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 5px; display: inline-flex; gap: 4px; align-items: center; }
.dc-head .badge.rec { background: var(--ok-bg); color: var(--ok); }
.dc-title { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; margin-top: 11px; }
.dc-meta { display: flex; align-items: center; gap: 9px; margin-top: 7px; font-size: 13px; color: var(--ink-soft); }
.dc-meta .dc-amt { font-family: var(--mono); font-weight: 600; color: var(--ink); }
.dc-meta .dc-sep { color: var(--ink-faint); opacity: .6; }
.dc-meta .mono { font-family: var(--mono); }
.dc-meta .acct { font-family: var(--mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: .04em; background: var(--paper-2); color: var(--ink-soft); padding: 3px 7px; border-radius: 5px; }
.dc-body { padding: 18px 20px 20px; }
.dc-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.dc-narr { margin-top: 11px; font-size: 15px; line-height: 1.62; color: var(--ink); }
.dc-tell { margin-top: 18px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px; background: color-mix(in srgb, var(--accent-tint) 35%, #fff); }
.dc-tell-head { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.dc-tell-head .dc-star { color: var(--accent); }
.dc-input { margin-top: 11px; background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px; font-size: 13.5px; color: var(--ink-faint); display: flex; align-items: center; }
.dc-input .dc-caret { width: 1.5px; height: 16px; background: var(--accent); margin-left: 2px; animation: blink 1.1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.dc-chips { display: flex; gap: 7px; margin-top: 11px; flex-wrap: wrap; }
.dc-chip { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 5px 10px; }

/* floating receipt tickets */
.ticket {
  position: absolute; z-index: 4; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--shadow-card); padding: 9px 12px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.ticket .dot { background: var(--ok); }
.ticket.t1 { top: -18px; left: -22px; animation: floaty 6s ease-in-out infinite; }
.ticket.t2 { bottom: 64px; left: -30px; animation: floaty 7s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(-2deg);} 50%{ transform: translateY(-9px) rotate(-2deg);} }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper-2) 60%, var(--paper)); }
.trust-inner { display: flex; align-items: center; gap: clamp(20px,4vw,52px); padding: 22px 0; flex-wrap: wrap; }
.trust .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; }
.trust .marks { display: flex; align-items: center; gap: clamp(20px,4vw,46px); flex-wrap: wrap; flex: 1; }
.trust .marks span { font-family: var(--display); font-weight: 400; font-size: 16px; color: var(--ink-soft); letter-spacing: -.01em; }
.trust .marks span b { color: var(--ink); font-weight: 600; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }
.section-pad { padding: clamp(52px, 5.5vw, 84px) 0; }
.sec-head { max-width: 680px; margin-bottom: clamp(32px,4vw,46px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-top: 16px; }
.sec-head p { font-size: 1.16rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px 28px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step .num {
  counter-increment: step; font-family: var(--mono); font-weight: 600; font-size: 13px;
  color: var(--accent); letter-spacing: .05em;
}
.step .num::before { content: "0" counter(step); }
.step .ic-wrap { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); display: grid; place-items: center; margin: 18px 0 16px; color: var(--accent); }
.step h3 { font-size: 1.24rem; font-weight: 600; }
.step p { margin-top: 9px; font-size: 15px; color: var(--ink-soft); }
.step .line {
  position: absolute; top: 38px; right: -10px; width: 20px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 4px, transparent 4px 8px);
}

/* ============================================================
   AUDIENCE SECTION (swaps)
   ============================================================ */
.aud-section .aud-panel { display: none; }
.aud-section .aud-panel.is-active { display: block; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.split.flip .split-visual { order: -1; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; flex: none; margin-top: 1px; }
.feature-list .ft { font-weight: 600; font-size: 16px; color: var(--ink); }
.feature-list .fd { font-size: 14.5px; color: var(--ink-soft); margin-top: 2px; }

/* visual panels */
.visual-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.vc-head { padding: 15px 18px; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-faint); }
.vc-head .dot { background: var(--ok); }
.vc-body { padding: 8px; }

/* clients table (accountants) */
.client-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 13px 14px; border-radius: var(--r-md); }
.client-row:hover { background: var(--paper); }
.client-row .cname { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 14.5px; }
.client-row .cav { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; font-size: 13px; }
.client-row .prog { width: 88px; height: 7px; border-radius: 100px; background: var(--paper-2); overflow: hidden; }
.client-row .prog i { display: block; height: 100%; border-radius: 100px; background: var(--ok); }
.client-row .pct { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); width: 38px; text-align: right; }

/* code block (developers) */
.code {
  background: var(--navy-deep); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-float); border: 1px solid #20305a;
}
.code-top { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid #20305a; }
.code-top .cdot { width: 11px; height: 11px; border-radius: 50%; }
.code-top .tab { margin-left: 10px; font-family: var(--mono); font-size: 12px; color: #8fa3cf; }
.code-top .cp { margin-left: auto; font-family: var(--mono); font-size: 11px; color: #5e729e; }
.code pre { margin: 0; padding: 20px 20px; overflow-x: auto; }
.code code { font-family: var(--mono); font-size: 13.5px; line-height: 1.85; color: #cdd8f2; white-space: pre; }
.code .c-key { color: #f0b86c; }
.code .c-str { color: #8fd6a8; }
.code .c-com { color: #5e729e; font-style: italic; }
.code .c-fn { color: #8ab4ff; }
.code .c-num { color: #d9a7f0; }
.code .c-flag { color: #f0b86c; }

/* ============================================================
   FEATURE GRID (core)
   ============================================================ */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fgrid.caps4 { grid-template-columns: repeat(4, 1fr); }
.fcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--line-soft); }
.fcard .ic-wrap { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: var(--accent-tint); color: var(--accent); }
.fcard.feat-gold .ic-wrap { background: #f6ecd6; color: var(--gold); }
.fcard h3 { font-size: 1.28rem; }
.fcard .kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.fcard p { margin-top: 10px; font-size: 15px; color: var(--ink-soft); }
.fcard.wide { grid-column: span 1; }

/* ============================================================
   BRAND MOMENT — never forgets
   ============================================================ */
.brandm { background: var(--navy-deep); color: #eaf0fb; position: relative; overflow: hidden; }
.brandm::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 78% 120%, rgba(47,80,207,.34), transparent 60%);
}
.brandm .wrap { position: relative; }
.brandm-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,4vw,40px); align-items: center; }
.brandm h2 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.4rem); }
.brandm h2 .gold { color: #e7c184; }
.brandm p { color: #b9c6e2; font-size: 1.2rem; margin-top: 22px; max-width: 520px; }
.brandm .stats { display: flex; gap: 38px; margin-top: 36px; flex-wrap: wrap; }
.brandm .stat .v { font-family: var(--display); font-weight: 600; font-size: 2.6rem; color: #fff; letter-spacing: -.03em; }
.brandm .stat .v .gold { color: #e7c184; }
.brandm .stat .k { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #8aa0cf; margin-top: 4px; }
.brandm-visual { position: relative; display: grid; place-items: center; min-height: 380px; }
.brandm-visual .halo { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(231,193,132,.18), transparent 65%); }
.brandm-visual .ring { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.brandm-visual .ring.r1 { width: 300px; height: 300px; } .brandm-visual .ring.r2 { width: 400px; height: 400px; }
.brandm-visual img.mascot { position: relative; height: 440px; max-height: 52vh; width: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.4)); z-index: 2; }

/* ============================================================
   PRICING / CTA BAND
   ============================================================ */
.ctaband { padding: clamp(48px,5vw,78px) 0; }
.ctaband .wrap { max-width: 1200px; }
#how .wrap { max-width: 1200px; }
.ctaband .panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--r-xl); padding: clamp(40px,6vw,72px); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-float);
}
.ctaband .panel::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(231,193,132,.16), transparent 60%);
}
.ctaband .panel > * { position: relative; z-index: 1; }
.ctaband h2 { color: #fff; font-size: clamp(2rem,4vw,3.2rem); }
.ctaband p { color: #c2cfea; font-size: 1.18rem; margin: 18px auto 0; max-width: 520px; }
.ctaband .cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.ctaband .micro { margin-top: 20px; font-family: var(--mono); font-size: 12.5px; color: #8aa0cf; letter-spacing: .02em; }

/* waitlist form */
.waitlist-panel { position: relative; overflow: visible; text-align: left; min-height: clamp(520px, 54vw, 720px); }
.waitlist-panel .wf-content { position: relative; z-index: 2; max-width: 620px; }
.waitlist-panel .wf-mascot-float {
  position: absolute; right: clamp(16px, 2.5%, 40px); bottom: 0;
  height: clamp(460px, 50vw, 680px); width: auto; z-index: 1; pointer-events: none;
  filter: drop-shadow(0 26px 38px rgba(0,0,0,.45));
}
.waitlist-panel .eyebrow,
.waitlist-panel h2,
.waitlist-panel .wf-content > p { text-align: left; }
.waitlist-panel h2 { margin-inline: 0; }
.waitlist-panel .wf-content > p { margin-left: 0; }
.waitform { max-width: 560px; margin: 32px 0 0; text-align: left; }
.wf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wf-row + .wf-row { margin-top: 14px; }
.wf-field { display: flex; flex-direction: column; gap: 7px; }
.wf-label { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #aab9da; }
.wf-label i { color: var(--gold); font-style: normal; }
.waitform input[type="email"],
.waitform input[type="tel"],
.waitform select {
  width: 100%; font-family: var(--body); font-size: 15px; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 13px 14px; transition: border-color .15s ease, background .15s ease;
  -webkit-appearance: none; appearance: none;
}
.waitform input::placeholder { color: #7e8eb0; }
.waitform input:focus, .waitform select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.wf-select { position: relative; }
.wf-select::after { content: ""; position: absolute; right: 15px; top: 50%; width: 8px; height: 8px; border-right: 2px solid #aab9da; border-bottom: 2px solid #aab9da; transform: translateY(-65%) rotate(45deg); pointer-events: none; }
.waitform select { color: #fff; cursor: pointer; }
.waitform select option { color: var(--ink); background: #fff; }
.waitform select:invalid { color: #7e8eb0; }
.wf-check { display: flex; align-items: flex-start; gap: 11px; margin-top: 18px; font-size: 14px; color: #cdd9f0; line-height: 1.45; cursor: pointer; }
.wf-check input { width: 19px; height: 19px; margin-top: 1px; flex: none; accent-color: var(--gold); cursor: pointer; }
.wf-check i { color: var(--gold); font-style: normal; }
.wf-submit { margin-top: 22px; width: 100%; justify-content: center; }
.wf-submit[disabled] { opacity: .6; cursor: progress; }
.wf-status { margin-top: 14px; font-size: 13.5px; min-height: 18px; text-align: center; }
.wf-status.err { color: #ffb4a8; }
.wf-done { max-width: 560px; margin: 32px auto 0; text-align: center; }
.wf-tick { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: rgba(231,193,132,.16); color: var(--gold); }
.wf-done h3 { color: #fff; font-size: 1.6rem; }
.wf-done p { color: #c2cfea; margin-top: 8px; }
@media (max-width: 860px) {
  .waitlist-panel .wf-mascot-float { position: static; display: block; height: 220px; margin: 4px auto -8px; right: auto; }
  .waitlist-panel { text-align: center; }
  .waitlist-panel .eyebrow { justify-content: center !important; }
  .waitlist-panel .eyebrow,
  .waitlist-panel h2,
  .waitlist-panel .wf-content > p { text-align: center; }
  .waitlist-panel .wf-content { max-width: 560px; margin-inline: auto; }
  .waitform { margin-inline: auto; }
}
@media (max-width: 560px) { .wf-row { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; padding: 24px 8px; display: flex; align-items: center; gap: 18px; font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: -.01em; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .qmark { margin-left: auto; width: 26px; height: 26px; flex: none; position: relative; transition: transform .25s ease; }
.qa summary .qmark::before, .qa summary .qmark::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.qa summary .qmark::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.qa summary .qmark::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: transform .25s ease; }
.qa[open] summary .qmark::after { transform: scaleY(0); }
.qa .ans { padding: 0 8px 24px; color: var(--ink-soft); font-size: 16px; max-width: 700px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: #aebbd6; padding: clamp(48px,5.5vw,64px) 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer .fbrand-lockup { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer .fbrand img.mark { height: 34px; }
.footer .fbrand-word { color: #fff; font-size: 24px; font-weight: 700; letter-spacing: -.01em; }
.footer .fbrand p { color: #8497ba; font-size: 14.5px; max-width: none; }
.footer h4 { color: #fff; font-size: 13px; font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 15px; color: #aebbd6; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.footer-bottom .legal { font-size: 13.5px; color: #7e90b4; }
.footer-bottom .legal .copyright { display: inline-block; margin-top: 4px; color: #6a7c9f; }
.footer-bottom .legal b { color: #aebbd6; font-weight: 600; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #aebbd6; transition: all .15s; }
.footer-social a:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }

/* ============================================================
   DEMO VIDEO
   ============================================================ */
.video-wrap { max-width: 940px; margin: 0 auto; }
.video-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-float); border: 1px solid var(--line); background: #000; }
.video-chrome { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--navy-deep); }
.video-chrome .cdot { width: 11px; height: 11px; border-radius: 50%; }
.video-chrome .tab { margin-left: 10px; font-family: var(--mono); font-size: 12.5px; color: #8fa3cf; letter-spacing: .02em; }
.video-aspect { position: relative; aspect-ratio: 16 / 9; background: var(--navy-deep); }
.video-aspect iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; cursor: pointer; background-color: var(--navy-deep); background-size: cover; background-position: center; display: grid; place-items: center; }
.video-facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,31,61,.55), rgba(15,31,61,.10)); transition: background .25s ease; }
.video-facade:hover::after { background: linear-gradient(to top, rgba(15,31,61,.42), rgba(15,31,61,.04)); }
.video-facade .play { position: relative; z-index: 1; width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--navy); display: grid; place-items: center; box-shadow: 0 14px 34px rgba(0,0,0,.4); transition: transform .2s ease, background .2s ease; }
.video-facade .play svg { margin-left: 4px; }
.video-facade:hover .play { transform: scale(1.07); background: #fff; }
.demo-cap a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.demo-cap { text-align: center; margin-top: 14px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-faint); letter-spacing: .01em; }
.demo-claim { text-align: center; margin-top: 30px; font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.75rem); letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; }
.demo-claim .accent { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-visual { min-width: 0; }
  .hero-visual { margin-top: 14px; max-width: 520px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .line { display: none; }
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .fgrid.caps4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.flip .split-visual { order: 0; }
  .brandm-grid { grid-template-columns: 1fr; }
  .brandm-visual { min-height: 320px; margin-top: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-actions .login { display: none; }
  /* segmented control scrolls horizontally instead of inflating the page */
  .switcher {
    width: 100%; max-width: 100%; justify-content: flex-start;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; flex-wrap: nowrap;
  }
  .switcher::-webkit-scrollbar { display: none; }
  .switcher button { padding: 10px 14px; font-size: 13px; flex: 0 0 auto; }
  .switcher button .ic { display: none; }
  .steps { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .fgrid.caps4 { grid-template-columns: 1fr; }
  .brandm .stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mascot-hero { width: 32%; right: 0; }
  .hero-cta .btn { flex: 1; }
  /* waitlist: full-width stacked form, drop the decorative mascot */
  .waitlist-panel .wf-mascot-float { display: none; }
  .waitlist-panel .wf-content { max-width: none; }
  .wf-row { grid-template-columns: 1fr; }
  .waitlist-panel { min-height: 0; }
}
