/* ============================================================================
   Tovak — landing page
   Light, spacious, clean B2B SaaS. GRIFTER (display) + Satoshi (body).
   ========================================================================== */

@font-face {
  font-family: "Grifter";
  src: url("/fonts/Grifter-Bold.otf") format("opentype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-VariableItalic.ttf") format("truetype");
  font-weight: 300 900; font-style: italic; font-display: swap;
}

:root {
  --brand: #000092;
  --brand-2: #2a2ce0;
  --brand-tint: #eef0ff;
  --brand-tint-2: #f5f6ff;

  --bg: #ffffff;
  --bg-soft: #f6f7fb;       /* alternating section wash */
  --ink: #0a0c1b;           /* near-black headings */
  --body: #3b4054;          /* body text */
  --muted: #6b7186;
  --line: #e7e9f2;
  --line-2: #d7dae8;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --step: clamp(80px, 12vh, 150px);
  --radius: 16px;
  --btn-radius: 10px;   /* uniform radius for all buttons / nav pills */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.4, 0.5, 1);   /* overshoot = spring feel */

  /* shared component theme (nav2 + bf) — light page */
  --nav-chip-bg: var(--brand);
  --nav-chip-border: transparent;
  --nav-chip-logo: #fff;
  --nav-pill-bg: #fff;
  --nav-pill-border: var(--line);
  --nav-pill-text: var(--ink);
  --nav-pill-hover: var(--brand);
  --nav-pill-shadow: var(--shadow);
  --nav-cta-bg: var(--brand);
  --nav-cta-text: #fff;
  --nav-cta-shadow: 0 8px 20px -8px rgba(0, 0, 146, 0.5);

  --bf-bg: #0a0a1e;
  --bf-head: #888dca;
  --bf-text: #c9cce6;
  --bf-dim: #565b86;
  --bf-line: rgba(255, 255, 255, 0.10);
  --bf-blue: var(--brand);
  --bf-link: #e6e8f5;
  --bf-link-hover: #fff;
  --bf-wordmark: #ffffff;
  --bf-btn-bg: #fff;
  --bf-btn-text: #0a0a1e;
  --bf-solico-bg: rgba(39, 51, 224, 0.20);
  --bf-solico-fill: #ffffff;
  --shadow: 0 1px 2px rgba(10, 12, 27, 0.04), 0 12px 32px -16px rgba(10, 12, 27, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--body);
  font-family: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

/* ---- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: none; margin: 0 auto; padding-inline: clamp(14px, 2.4vw, 26px); }
.section { padding-block: var(--step); }
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.center { text-align: center; }
.center .lede, .center .eyebrow { margin-inline: auto; }

/* ---- Type ----------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 20px;
}
.display {
  font-family: "Grifter", "Satoshi", sans-serif;
  font-weight: 700; color: var(--ink);
  text-transform: uppercase; line-height: 0.98; letter-spacing: -0.01em;
}
h1.display { font-size: clamp(2.6rem, 6vw, 5rem); }
h2.display { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-family: "Grifter", sans-serif; text-transform: uppercase; color: var(--ink); }

.lede { font-size: clamp(1.08rem, 1.4vw, 1.3rem); color: var(--muted); max-width: 62ch; line-height: 1.6; }
.section > .wrap > h2.display { margin-bottom: 18px; }
.accent { color: var(--brand); }
em { font-style: italic; }

/* asterisk divider */
.stars { color: var(--line-2); letter-spacing: 0.6em; font-size: 1rem; text-align: center; padding-block: 8px; user-select: none; }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 10px;
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0.005em;
  border: 1px solid transparent; transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(0, 0, 146, 0.5); }
.btn--primary:hover { background: var(--brand-2); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.tlink { color: var(--brand); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.tlink:hover { gap: 10px; }

/* ---- Nav ------------------------------------------------------------------ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--body); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--brand); }
.logo svg { height: 28px; width: auto; }   /* colored logo on light bg — no recolour */
.nav__cta { padding: 10px 20px; font-size: 0.9rem; }
@media (max-width: 720px) { .nav__links { display: none; } }

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(128px, 18vh, 200px) var(--step); overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(50% 42% at 50% -6%, rgba(0, 0, 146, 0.14), transparent 70%),
    radial-gradient(46% 40% at 82% 6%, rgba(42, 44, 224, 0.10), transparent 62%),
    radial-gradient(40% 36% at 14% 2%, rgba(0, 0, 146, 0.07), transparent 62%);
}
/* dot-grid texture, fading from the centre */
.hero__dots {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  color: #b9bee0;
  background-image: radial-gradient(circle at center, currentColor 1px, transparent 1.6px);
  background-size: 26px 26px;
  opacity: 0.45;
  -webkit-mask-image: radial-gradient(62% 60% at 50% 30%, #000 0%, transparent 76%);
  mask-image: radial-gradient(62% 60% at 50% 30%, #000 0%, transparent 76%);
}
.hero__inner { max-width: 22ch; }
.hero h1 { margin-bottom: 26px; }
.hero .lede { margin-bottom: 36px; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.hero__note { margin-top: 22px; font-size: 0.88rem; color: var(--muted); }
.hero__note b { color: var(--brand); font-weight: 700; }

/* flow strip under hero */
.flowstrip { margin-top: 64px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.flowstrip__cell { padding: 28px 24px; text-align: center; }
.flowstrip__cell .k { font-family: "Grifter", sans-serif; text-transform: uppercase; font-size: 1.25rem; color: var(--ink); }
.flowstrip__cell .s { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--muted); }
.flowstrip__cell--mid { background: var(--brand); }
.flowstrip__cell--mid .k { color: #fff; }
.flowstrip__cell--mid .s { color: rgba(255, 255, 255, 0.7); }
.flowstrip__arr { color: var(--brand); font-size: 1.3rem; padding-inline: 14px; }
@media (max-width: 680px) {
  .flowstrip { grid-template-columns: 1fr; }
  .flowstrip__arr { transform: rotate(90deg); padding-block: 6px; }
}

/* ---- Solution cards ------------------------------------------------------- */
/* bento: 4-col grid, wide cards on opposite corners */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 18px; margin-top: 56px; }
.cards .card:nth-child(1), .cards .card:nth-child(6) { grid-column: span 2; }
.cards .card:nth-child(1) .card__punch, .cards .card:nth-child(6) .card__punch { font-size: 1.15rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; transition: transform 0.2s var(--ease), box-shadow 0.2s; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
.card__tags span { font-size: 0.78rem; font-weight: 600; color: var(--brand); background: var(--brand-tint); border-radius: 999px; padding: 6px 12px; line-height: 1.1; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }

/* ---- Metrics (the leaks, clean) ------------------------------------------- */
.metrics__head { max-width: 60ch; margin-bottom: 12px; }
.metrics__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.metric { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.metric__n { font-family: "Grifter", sans-serif; font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--brand); line-height: 1; margin-bottom: 14px; }
.metric__n.time { color: var(--ink); }
.metric h3 { font-size: 1rem; margin-bottom: 8px; text-transform: none; font-family: "Satoshi", sans-serif; font-weight: 700; color: var(--ink); }
.metric p { color: var(--muted); font-size: 0.92rem; }
.metrics__total { margin-top: 28px; text-align: center; font-size: 1.05rem; color: var(--body); }
.metrics__total b { font-family: "Grifter", sans-serif; color: var(--brand); font-size: 1.4em; }
.metrics__foot { margin-top: 18px; text-align: center; font-size: 0.82rem; color: var(--muted); }
@media (max-width: 860px) { .metrics__grid { grid-template-columns: 1fr; } }

/* ---- Steps ---------------------------------------------------------------- */
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.stepc { padding-top: 22px; border-top: 2px solid var(--brand); }
.stepc__n { font-family: "Grifter", sans-serif; color: var(--brand); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 14px; }
.stepc h3 { font-size: 1.05rem; margin-bottom: 10px; }
.stepc p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 860px) { .steps__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps__grid { grid-template-columns: 1fr; } }

/* ---- Compare -------------------------------------------------------------- */
.cmp { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.cmp__row { display: grid; grid-template-columns: 1fr 1.4fr 1.6fr; }
.cmp__row + .cmp__row { border-top: 1px solid var(--line); }
.cmp__row > div { padding: 22px 26px; }
.cmp__row > div + div { border-left: 1px solid var(--line); }
.cmp__head { background: var(--brand-tint-2); }
.cmp__head > div { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.cmp__name { font-weight: 700; color: var(--ink); }
.cmp__stop { color: var(--muted); font-size: 0.94rem; }
.cmp__do { color: var(--body); font-size: 0.94rem; }
.cmp__do b { color: var(--brand); }
@media (max-width: 720px) {
  .cmp__row { grid-template-columns: 1fr; }
  .cmp__row > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .cmp__head { display: none; }
}

/* ---- Trust ---------------------------------------------------------------- */
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.trustc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; }
.trustc h3 { font-size: 1.05rem; margin-bottom: 10px; }
.trustc p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 720px) { .trust__grid { grid-template-columns: 1fr; } }

/* ---- Big stat band -------------------------------------------------------- */
.statband { background: var(--brand); color: #fff; border-radius: var(--radius); padding: clamp(40px, 6vw, 72px); text-align: center; margin-top: 8px; }
.statband .big { font-family: "Grifter", sans-serif; font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1; }
.statband p { color: rgba(255, 255, 255, 0.8); margin-top: 16px; font-size: 1.05rem; }

/* ---- Early access --------------------------------------------------------- */
.access__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.access h2 { margin-bottom: 18px; }
.access .lede { margin-bottom: 22px; }
.access__list { list-style: none; display: grid; gap: 12px; }
.access__list li { display: flex; gap: 12px; color: var(--body); font-size: 0.98rem; }
.access__list li::before { content: "✓"; color: var(--brand); font-weight: 700; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow); }
.form__field { margin-bottom: 18px; }
.form__field label { display: block; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.form__field input { width: 100%; padding: 14px 16px; background: var(--bg-soft); border: 1px solid var(--line-2); color: var(--ink); font: inherit; border-radius: 10px; transition: border-color 0.2s, background 0.2s; }
.form__field input::placeholder { color: #aab0c2; }
.form__field input:focus { outline: none; border-color: var(--brand); background: #fff; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form button { width: 100%; justify-content: center; margin-top: 8px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
@media (max-width: 860px) { .access__grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* ---- Footer --------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding-block: 56px; background: var(--bg-soft); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; }
.footer__brand { max-width: 32ch; }
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; }
.footer__cols { display: flex; gap: clamp(36px, 6vw, 72px); flex-wrap: wrap; }
.footer__col h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; color: var(--body); font-size: 0.92rem; margin-bottom: 9px; transition: color 0.2s; }
.footer__col a:hover { color: var(--brand); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); }

/* ============================================================================
   home2 additions
   ========================================================================== */

/* centred sections */
.center { text-align: center; }
.center .lede, .center .hero__sub, .center .hero__small { margin-inline: auto; }

/* nav extras */
.nav__inner { gap: 24px; }
.nav__links { flex: 1; justify-content: center; }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__login { font-size: 0.92rem; font-weight: 600; color: var(--body); transition: color 0.2s; }
.nav__login:hover { color: var(--brand); }
@media (max-width: 860px) { .nav__login { display: none; } }

/* nav2 (floating-pill nav) lives in components.css — themed via :root vars below. */

/* hero — centred variant */
.hero.center .wrap > * { margin-inline: auto; }
.hero.center .display { max-width: 16ch; }
.hero__sub { font-family: "Grifter", sans-serif; text-transform: uppercase; color: var(--brand); font-size: clamp(0.95rem, 1.5vw, 1.2rem); letter-spacing: 0.02em; margin-bottom: 22px; }
.hero.center .lede { max-width: 58ch; margin-bottom: 14px; }
.hero__small { color: var(--muted); max-width: 48ch; font-size: 0.98rem; margin-bottom: 30px; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.hero.center .flowstrip { margin-inline: auto; max-width: 860px; }
.hero.center .hero__cta { justify-content: center; }

/* hero entrance — headline rises and fades in, children stagger after it */
@keyframes heroRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero.center .display,
.hero__sub,
.hero.center .lede,
.hero__small,
.hero__cta,
.hero__note,
.hero .flowstrip { animation: heroRise 0.85s var(--ease) both; }
.hero.center .display { animation-delay: 0.08s; }
.hero__sub { animation-delay: 0.18s; }
.hero.center .lede { animation-delay: 0.26s; }
.hero__small { animation-delay: 0.32s; }
.hero__cta { animation-delay: 0.38s; }
.hero__note { animation-delay: 0.44s; }
.hero .flowstrip { animation-delay: 0.54s; }

/* trust line */
.trustline { padding-block: clamp(56px, 8vh, 96px); border-bottom: 1px solid var(--line); }
.trustline__h { font-family: "Satoshi", sans-serif; font-weight: 700; text-transform: none; color: var(--ink); font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.25; max-width: 24ch; margin: 0 auto 18px; letter-spacing: -0.01em; }

/* solution card extras */
.card__punch { color: var(--ink); font-weight: 600; font-size: 1.02rem; margin-bottom: 10px; }
.card p { margin-bottom: 16px; }
.card .tlink { font-size: 0.92rem; }

/* ---- Results (rotating metrics) ------------------------------------------ */
/* ---- How it works: sticky-stacking step cards ---------------------------- */
.steps2 { position: relative; padding-bottom: 0; }
/* full-width sticky title bar; title sits top-left in the container */
.steps2__head { position: sticky; top: 0; z-index: 4; background: var(--bg); padding-block: clamp(80px, 10vh, 100px) 20px; }
.steps2__head .eyebrow { margin-bottom: 8px; }
.steps2__head .display { font-size: clamp(1.6rem, 3vw, 2.5rem); margin: 0; max-width: 26ch; }
/* cards are full-bleed (edge to edge) and stack under the title */
.steps2__stack { position: relative; }
.stepcard { position: sticky; display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: calc(100vh - 196px); width: 100%; background: #fff; border-top: 1px solid var(--line); border-radius: 0; overflow: hidden; box-shadow: 0 -12px 44px -22px rgba(10, 12, 40, 0.22); }
.stepcard:nth-child(1) { top: 188px; }
.stepcard:nth-child(2) { top: 212px; }
.stepcard:nth-child(3) { top: 236px; }
.stepcard:nth-child(4) { top: 260px; }
/* dim overlay: fades in on a card as the next one covers it (driven by JS) */
.stepcard__overlay { position: absolute; inset: 0; background: #070a18; opacity: 0; pointer-events: none; z-index: 6; }
.stepcard__visual { position: relative; display: grid; place-items: center; color: #fff; overflow: hidden; padding: clamp(28px, 4vw, 60px); }
.stepcard__v1 { background: var(--brand); }
.stepcard__v2 { background: var(--brand); }
.stepcard__v3 { background: var(--brand); }
.stepcard__v4 { background: var(--brand); }
.stepcard__bg { position: absolute; font-family: "Grifter", sans-serif; font-size: clamp(180px, 34vh, 360px); line-height: 0.7; opacity: 0.13; color: #fff; user-select: none; }
/* mini mockups on each card's visual panel */
.vmock { width: min(380px, 100%); background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 28px 60px -26px rgba(0, 0, 0, 0.55); color: var(--ink); text-align: left; }
.vmock--chat .chat__body { gap: 8px; }
.vmock__bar { display: flex; align-items: center; gap: 12px; padding: 11px 14px; background: #f4f5fa; border-bottom: 1px solid var(--line); }
.vmock__t { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.vmock__pad { padding: 16px; }
.vvoice { display: inline-flex; align-items: center; gap: 9px; font-size: 0.78rem; color: var(--ink); }
.vvoice__play { color: var(--brand); font-size: 0.7rem; }
.vvoice__wave { width: 86px; height: 14px; background: repeating-linear-gradient(90deg, var(--brand) 0 2px, transparent 2px 5px); opacity: 0.5; border-radius: 3px; }
.vvoice__time { color: var(--muted); }
.vnote { font-size: 0.88rem; color: var(--ink); margin: 12px 0 0; font-weight: 500; }
.vstage { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.vstage li { font-size: 0.72rem; padding: 5px 10px; border-radius: 999px; background: var(--bg-soft); color: var(--muted); }
.vstage li.done { background: #e6f6ec; color: #1a7d4b; }
.vstage li.active { background: var(--brand-tint); color: var(--brand); font-weight: 600; }
.vbill__row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.82rem; color: var(--muted); padding: 7px 0; }
.vbill__row b { color: var(--ink); font-weight: 600; }
.vbill__tot { display: flex; justify-content: space-between; font-size: 0.98rem; font-weight: 700; color: var(--ink); padding: 11px 0 4px; border-top: 1px solid var(--line); margin-top: 6px; }
.vchip { margin-top: 14px; display: inline-block; font-size: 0.74rem; font-weight: 600; color: var(--brand); background: var(--brand-tint); padding: 6px 12px; border-radius: 999px; }
.vupi { font-family: ui-monospace, Menlo, monospace; font-size: 0.78rem !important; opacity: 0.92; }
.stepcard__body { padding: clamp(44px, 6vh, 88px) clamp(36px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.stepcard__n { font-family: "Grifter", sans-serif; text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand); font-size: 0.92rem; margin-bottom: 16px; }
.stepcard h3 { font-family: "Grifter", sans-serif; text-transform: uppercase; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1; color: var(--ink); margin-bottom: 18px; }
.stepcard__lead { font-size: clamp(1.1rem, 1.5vw, 1.35rem); font-weight: 600; color: var(--ink); margin-bottom: 4px; max-width: 32ch; }
.stepcard__label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 28px 0 16px; }
.stepcard__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.stepcard__list li { display: flex; align-items: center; gap: 16px; font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.stepcard__ico { flex: none; width: 50px; height: 50px; border-radius: 13px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; }
.stepcard__ico svg { width: 24px; height: 24px; }
@media (max-width: 760px) {
  .stepcard { grid-template-columns: 1fr; min-height: 0; position: relative; top: auto !important; }
  .stepcard__visual { min-height: 180px; }
}

/* keep trustline line-art stroke uniform (was bundled with old results art) */
.trustline__art .art, .trustline__art .art * { vector-effect: non-scaling-stroke; stroke-width: 1px; }

/* ===================== RESULTS (two-column insight slider) ============== */
.results { position: relative; overflow: hidden; background: var(--bg); min-height: 100vh; display: flex; align-items: center; padding-block: 0; }
.results .wrap { width: 100%; }
.results__grid { display: grid; grid-template-columns: minmax(290px, 0.82fr) 1.18fr; gap: clamp(28px, 4vw, 60px); align-items: stretch; min-height: 100vh; }

/* left: gradient panel, content centred with inner spacing */
.results__left {
  display: flex; flex-direction: column; justify-content: center;
  margin-left: calc(-1 * clamp(14px, 2.4vw, 26px));
  padding: clamp(72px, 12vh, 120px) clamp(36px, 4vw, 64px) clamp(72px, 12vh, 120px) clamp(40px, 5vw, 80px);
  background: linear-gradient(165deg, #e9ecff 0%, #f4f5fc 72%);
  border-right: 1px solid var(--line-2);
}
.results__intro .eyebrow { margin-bottom: 10px; }
.results__title { font-family: "Grifter", sans-serif; text-transform: uppercase; color: var(--ink); font-size: clamp(1.7rem, 2.7vw, 2.6rem); line-height: 1; letter-spacing: -0.01em; margin: 0 0 28px; }
.results__cta { align-self: flex-start; }
.results__slider { margin-top: clamp(44px, 7vh, 80px); }
.results__control { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.results__dots { display: flex; align-items: center; gap: 7px; }
.results__dots button { width: 8px; height: 8px; border: 0; padding: 0; border-radius: 999px; background: var(--line-2); cursor: pointer; transition: width 0.45s var(--ease), background 0.4s; }
.results__dots button[data-on] { width: 48px; background: var(--line-2); position: relative; overflow: hidden; }
.results__dots button[data-on]::after { content: ""; position: absolute; inset: 0; background: var(--brand); transform-origin: left; transform: scaleX(0); animation: rprog 5s linear forwards; }
@keyframes rprog { to { transform: scaleX(1); } }
.results__count { font-size: 0.92rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.results__count b { color: var(--ink); font-weight: 700; }

.rcards { position: relative; }
.rcard { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity 0.5s var(--ease), transform 0.6s var(--spring); }
.rcard[data-active] { position: relative; opacity: 1; visibility: visible; transform: none; }
.rcard__ico { width: 86px; height: 86px; border-radius: 18px; background: var(--brand); display: grid; place-items: center; margin-bottom: 22px; }
.rcard__ico svg { width: 38px; height: 38px; stroke: #fff; fill: none; stroke-width: 1.6; }
.rcard__h { font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 600; color: var(--ink); line-height: 1.18; margin-bottom: 14px; max-width: 18ch; }
.rcard__p { color: var(--muted); font-size: 1rem; line-height: 1.6; max-width: 40ch; }

/* right: animated bar viz + floating stat pill */
.results__right { position: relative; display: flex; align-items: center; }
.rgraphs { position: relative; width: 100%; height: clamp(440px, 80vh, 800px); }
.rgraph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: scale(0.98); transition: opacity 0.5s var(--ease), transform 0.6s var(--ease); }
.rgraph[data-active] { opacity: 1; visibility: visible; transform: none; }
.rgraph > svg { width: 100%; height: 100%; overflow: visible; }
/* area + crossing-curve line draws in on activate */
.rdraw { stroke-dasharray: 3000; stroke-dashoffset: 3000; }
.results.in-view .rgraph[data-active] .rdraw { animation: rdraw 1.1s var(--ease) 0.12s forwards; }
@keyframes rdraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .rdraw { stroke-dashoffset: 0; }
  .rgraph { transition: none; }
}
/* bars (slide 3) */
.results__viz { display: flex; align-items: stretch; gap: clamp(8px, 1vw, 15px); width: 100%; height: 86%; }
.results__viz i { flex: 1 1 0; min-width: 0; border-radius: 100px; background: linear-gradient(180deg, var(--brand) 0%, #07072a 100%); }
@media (prefers-reduced-motion: no-preference) {
  .results__viz i { animation: rbar 3.8s ease-in-out infinite; }
  .results__viz i:nth-child(1) { animation-delay: -0.2s; }
  .results__viz i:nth-child(2) { animation-delay: -1.5s; }
  .results__viz i:nth-child(3) { animation-delay: -0.8s; }
  .results__viz i:nth-child(4) { animation-delay: -2.3s; }
  .results__viz i:nth-child(5) { animation-delay: -1.1s; }
  .results__viz i:nth-child(6) { animation-delay: -3.0s; }
  .results__viz i:nth-child(7) { animation-delay: -0.5s; }
  .results__viz i:nth-child(8) { animation-delay: -2.0s; }
  .results__viz i:nth-child(9) { animation-delay: -1.8s; }
}
@keyframes rbar { 0%, 100% { flex-grow: 0.7; } 50% { flex-grow: 2.6; } }
.results__pill { position: absolute; top: clamp(72px, 11vh, 108px); left: 50%; right: auto; transform: translateX(-50%); background: #fff; color: var(--ink); font-weight: 600; font-size: clamp(0.95rem, 1.3vw, 1.15rem); padding: 14px 26px; border-radius: 999px; box-shadow: 0 14px 36px -14px rgba(10, 12, 40, 0.32); white-space: nowrap; }

@media (max-width: 900px) {
  .results__grid { grid-template-columns: 1fr; min-height: 0; }
  .results__slider { margin-top: 40px; }
  .results__right { order: 2; min-height: 320px; }
  .results__pill { top: 12px; }
}

/* ---- Cases (case-study style) -------------------------------------------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; transition: transform 0.2s var(--ease), box-shadow 0.2s; }
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.case__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.case__num { font-family: "Grifter", sans-serif; font-size: 1.6rem; color: var(--brand); }
.case__tags { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.case h3 { font-size: 1.15rem; margin-bottom: 12px; }
.case p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; flex: 1; }
.cases__note { margin-top: 26px; text-align: center; font-size: 0.86rem; color: var(--muted); }
@media (max-width: 860px) { .cases { grid-template-columns: 1fr; } }

/* footer extras */
.footer__props { list-style: none; margin-top: 18px; display: grid; gap: 7px; }
.footer__props li { color: var(--muted); font-size: 0.88rem; display: flex; gap: 9px; }
.footer__props li::before { content: "→"; color: var(--brand); }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { transition: color 0.2s; }
.footer__legal a:hover { color: var(--brand); }

/* ============================================================================
   Hero v2 — left copy + product mockups (dashboard + WhatsApp chat)
   ========================================================================== */
.hero2 {
  position: relative; overflow: hidden;
  padding-block: clamp(120px, 16vh, 180px) clamp(100px, 15vh, 190px);
  background:
    radial-gradient(58% 48% at 80% -10%, rgba(0, 0, 146, 0.10), transparent 60%),
    radial-gradient(50% 44% at 4% -6%, rgba(42, 44, 224, 0.08), transparent 60%),
    linear-gradient(180deg, #f5f6ff 0%, var(--bg) 50%);
}
/* faint blueprint line grid, fading from the top */
.hero2::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 146, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 146, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(86% 72% at 50% -2%, #000, transparent 82%);
  mask-image: radial-gradient(86% 72% at 50% -2%, #000, transparent 82%);
}
.hero2__dots {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; color: #b7bce0;
  background-image: radial-gradient(circle at center, currentColor 1.1px, transparent 1.7px);
  background-size: 24px 24px; opacity: 0.5;
  -webkit-mask-image: radial-gradient(85% 55% at 72% -5%, #000, transparent 72%);
  mask-image: radial-gradient(85% 55% at 72% -5%, #000, transparent 72%);
}
/* faint concentric "blueprint" rings, top-right */
.hero2::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: -26%; right: -12%; width: 64vw; height: 64vw; max-width: 820px; max-height: 820px;
  background: repeating-radial-gradient(circle at center, transparent 0 42px, rgba(0, 0, 146, 0.06) 42px 43px);
  -webkit-mask-image: radial-gradient(closest-side, #000 30%, transparent 78%);
  mask-image: radial-gradient(closest-side, #000 30%, transparent 78%);
}
.hero2 .wrap { max-width: none; }
.hero2__copy { max-width: 720px; }
.hero2__copy .eyebrow { margin-bottom: 18px; }
.hero2 h1.display { font-size: clamp(2.5rem, 5.4vw, 4.6rem); margin-bottom: 22px; }
@media (min-width: 760px) { .hero2 h1.display { white-space: nowrap; } }
.hero2__muted { color: var(--muted); }
.hero2__sub { font-size: clamp(1.05rem, 1.4vw, 1.28rem); color: var(--muted); max-width: 56ch; line-height: 1.6; margin-bottom: 30px; }
.hero2__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.hero2__note { margin-top: 18px; font-size: 0.88rem; color: var(--muted); }
.hero2__note b { color: var(--brand); font-weight: 700; }
.hero2__stage { position: relative; max-width: 980px; margin: clamp(48px, 7vw, 88px) auto 0; }

/* window mock */
.mock { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 32px 64px -32px rgba(10, 12, 40, 0.4), 0 2px 8px rgba(10, 12, 40, 0.06); overflow: hidden; }
.mock__bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #f4f5fa; border-bottom: 1px solid var(--line); }
.mock__dots { display: flex; gap: 7px; }
.mock__dots i { width: 11px; height: 11px; border-radius: 50%; background: #d6d9e6; }
.mock__dots i:nth-child(1) { background: #ff5f57; }
.mock__dots i:nth-child(2) { background: #febc2e; }
.mock__dots i:nth-child(3) { background: #28c840; }
.mock__title { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* dashboard */
.mock--dash { width: 100%; }
.dash { padding: 26px clamp(20px, 2.6vw, 30px); }
.dash__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.dash__eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.dash__big { font-family: "Grifter", sans-serif; font-size: 1.55rem; color: var(--ink); margin-top: 5px; }
.dash__live { display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 600; color: #1a7d4b; background: #e6f6ec; padding: 6px 12px; border-radius: 999px; }
.dash__live i { width: 7px; height: 7px; border-radius: 50%; background: #1a7d4b; animation: pulseDot 1.6s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.dash__thead, .dash__row { display: grid; grid-template-columns: 0.55fr 1.3fr 1fr 0.9fr; align-items: center; gap: 10px; padding: 12px 0; }
.dash__thead { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); }
.dash__thead span:last-child { text-align: right; }
.dash__row { border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.dash__row span:first-child { font-weight: 700; color: var(--ink); }
.dash__row span:nth-child(2) { color: var(--body); }
.dash__row span:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.badge { display: inline-block; font-size: 0.74rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.badge--ship { background: #e8edff; color: #2a3ce0; }
.badge--make { background: #fff3e0; color: #b5730a; }
.badge--paid { background: #e6f6ec; color: #1a7d4b; }
.badge--due { background: #ffeaea; color: #c0392b; }

/* whatsapp chat */
.mock--chat { position: absolute; left: -14px; bottom: -34px; width: min(286px, 38%); z-index: 2; }
.chat__bar { display: flex; align-items: center; gap: 11px; padding: 12px 14px; background: #128c7e; }
.chat__av { width: 36px; height: 36px; border-radius: 50%; background: #0c6b60; display: grid; place-items: center; flex: none; }
.chat__av svg { width: 20px; height: 20px; }
.chat__who { display: flex; flex-direction: column; line-height: 1.2; color: #fff; }
.chat__who b { font-size: 0.92rem; }
.chat__who i { font-size: 0.74rem; font-style: normal; opacity: 0.85; }
.chat__body { background: #e9e4dc; padding: 16px 14px; display: flex; flex-direction: column; gap: 9px; }
.bubble { max-width: 86%; font-size: 0.84rem; line-height: 1.4; padding: 8px 11px; border-radius: 12px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); color: #111; }
.bubble--in { align-self: flex-start; background: #fff; border-top-left-radius: 3px; }
.bubble--out { align-self: flex-end; background: #d8fdc8; border-top-right-radius: 3px; }
.bubble__t { display: block; text-align: right; font-size: 0.62rem; color: #5a7a52; margin-top: 2px; }

@media (max-width: 820px) {
  .mock--dash { width: 100%; }
  .mock--chat { position: static; width: 100%; margin-top: 18px; }
}

/* ---- scroll-reveal + float (spring physics, vanilla) --------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.8s var(--spring); will-change: transform, opacity; }
.js [data-reveal].in { opacity: 1; transform: none; }
/* staggered children (grids) */
.js [data-reveal="grid"] > * { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.75s var(--spring); }
.js [data-reveal="grid"].in > * { opacity: 1; transform: none; }
.js [data-reveal="grid"].in > *:nth-child(2) { transition-delay: 0.09s; }
.js [data-reveal="grid"].in > *:nth-child(3) { transition-delay: 0.18s; }
.js [data-reveal="grid"].in > *:nth-child(4) { transition-delay: 0.27s; }
.js [data-reveal="grid"] { opacity: 1; transform: none; }   /* grid container itself stays; children animate */
@media (prefers-reduced-motion: no-preference) {
  [data-float] { animation: floatA 7s ease-in-out infinite; }
  [data-float="2"] { animation: floatB 6s ease-in-out infinite; }
}
@keyframes floatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes floatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---- WhatsApp · Tovak · Tally accordion ---------------------------------- */
.acc { max-width: 840px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 16px; text-align: left; }
.acc__item { border: 1px solid var(--line); border-radius: var(--radius); transition: background 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.acc__row { display: flex; align-items: center; gap: 22px; width: 100%; text-align: left; padding: 22px 26px; }
.acc__ico { flex: none; width: 68px; height: 68px; border-radius: 16px; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand); transition: background 0.25s, color 0.25s; }
.acc__ico svg { width: 32px; height: 32px; }
.acc__text { display: flex; flex-direction: column; gap: 5px; }
.acc__title { font-family: "Grifter", sans-serif; text-transform: uppercase; font-size: 1.3rem; line-height: 1; color: var(--ink); }
.acc__sub { color: var(--muted); font-size: 0.98rem; line-height: 1.5; max-width: 54ch; }
.acc__more { display: none; }
.acc__item.acc--on { background: #fff; border-color: transparent; box-shadow: var(--shadow); }
.acc__item.acc--on .acc__row { padding-block: 30px; }
.acc__item.acc--on .acc__ico { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.acc__item.acc--on .acc__more { display: block; text-align: center; padding: 0 26px 24px; color: var(--brand); font-weight: 600; }
.acc__item.acc--on .acc__more:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) {
  .acc__row { gap: 16px; padding: 18px; }
  .acc__ico { width: 54px; height: 54px; border-radius: 13px; }
  .acc__ico svg { width: 26px; height: 26px; }
}

/* ---- Trust band: brand-blue background + animated outline art ------------ */
.trustline { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(155deg, #18189e 0%, var(--brand) 52%, #2a2ce0 100%); color: #fff; }
.trustline > .wrap { position: relative; z-index: 2; width: 100%; }
.trustline__h { color: #fff; }
.trustline__art { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; pointer-events: none; }
.trustline__art .art { position: absolute; width: max(108vw, 108vh); height: auto; color: rgba(255, 255, 255, 0.14); opacity: 0; transform: scale(0.92) rotate(-5deg); transition: opacity 0.7s var(--ease), transform 1s var(--spring); }
.trustline:has(.acc[data-active="0"]) .art--0,
.trustline:has(.acc[data-active="1"]) .art--1,
.trustline:has(.acc[data-active="2"]) .art--2,
.trustline:not(:has(.acc[data-active])) .art--0 { opacity: 1; transform: scale(1) rotate(0); }
/* accordion on the blue band */
.trustline .acc__item { border-color: rgba(255, 255, 255, 0.22); }
.trustline .acc__title { color: #fff; }
.trustline .acc__sub { color: rgba(255, 255, 255, 0.7); }
.trustline .acc__ico { background: rgba(255, 255, 255, 0.14); color: #fff; }
.trustline .acc__item.acc--on { background: #fff; border-color: transparent; box-shadow: 0 24px 56px -24px rgba(0, 0, 0, 0.45); }
.trustline .acc__item.acc--on .acc__title { color: var(--ink); }
.trustline .acc__item.acc--on .acc__sub { color: var(--muted); }
.trustline .acc__item.acc--on .acc__ico { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }

/* Big grid footer (.bf) lives in components.css — themed via :root vars below. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ---- FAQ ------------------------------------------------------------------ */
.faq .wrap { max-width: 860px; }
.faq__list { margin-top: 34px; border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__q {
  width: 100%; text-align: left; cursor: pointer; padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-weight: 600; font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq__q:hover, .faq__item.open .faq__q { color: var(--brand); }
.faq__plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--brand); border-radius: 2px;
  transition: transform 0.45s var(--spring);
}
.faq__plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item.open .faq__plus::before { transform: rotate(180deg); }
.faq__item.open .faq__plus::after { transform: scaleY(0); }
/* smooth spring open/close via grid-rows + content spring-in */
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.faq__item.open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; min-height: 0; }
.faq__a-inner p {
  padding: 0 44px 28px 0; max-width: 70ch; color: var(--body); line-height: 1.65;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.55s var(--spring);
}
.faq__item.open .faq__a-inner p { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
@media (prefers-reduced-motion: reduce) {
  .faq__a, .faq__a-inner p, .faq__plus::before, .faq__plus::after { transition: none; }
}

/* ===================== SHARED COMPONENTS (nav2 + bf) ===================== */
/* ============================================================================
   Tovak — shared components: floating-pill nav (.nav2) + grid footer (.bf).
   Used by BOTH pages. Each page stylesheet themes these via CSS variables
   (--btn-radius, --nav-*, --bf-*). Edit layout here once; colour per page.
   ========================================================================== */

/* ---- nav2 (floating-pill layout) --------------------------------- */
/* Overlays the hero (no background bar of its own) and stays pinned while
   scrolling. The first section needs enough top padding to clear it. */
.nav2 { position: fixed; top: 0; left: 0; right: 0; z-index: 60; padding-block: 14px; background: transparent; }
.nav2__inner { display: flex; align-items: center; gap: 16px; padding-inline: clamp(14px, 2.4vw, 26px); }
.nav2__logo {
  display: inline-flex; align-items: center; flex: none;
  background: var(--nav-chip-bg);
  border: 1px solid var(--nav-chip-border, transparent);
  border-radius: 14px; padding: 4px 8px;
}
.nav2__logo svg { height: 40px; width: auto; }
.nav2__logo svg path { fill: var(--nav-chip-logo); }
.nav2__pill {
  display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px);
  background: var(--nav-pill-bg); border: 1px solid var(--nav-pill-border);
  border-radius: var(--btn-radius); padding: 15px clamp(24px, 2.6vw, 38px);
  box-shadow: var(--nav-pill-shadow, none);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.nav2__pill a { color: var(--nav-pill-text); font-weight: 500; font-size: 0.95rem; white-space: nowrap; transition: color 0.2s; }
.nav2__pill a:hover { color: var(--nav-pill-hover); }
.nav2__pill a.is-active { color: var(--nav-pill-hover); font-weight: 700; }
.nav2__cta {
  margin-left: auto; flex: none;
  background: var(--nav-cta-bg); color: var(--nav-cta-text);
  border-radius: var(--btn-radius); padding: 14px 26px;
  font-weight: 600; font-size: 0.95rem; white-space: nowrap;
  box-shadow: var(--nav-cta-shadow, none);
  transition: transform 0.2s var(--ease, ease), filter 0.2s;
}
.nav2__cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
@media (max-width: 880px) { .nav2__pill { display: none; } }

/* ---- bf (big grid footer) ------------------------------------------------ */
.bf { background: var(--bf-bg); color: var(--bf-text); border-top: 1px solid var(--bf-line); }
.bf h4 { font-family: "Satoshi", sans-serif; text-transform: none; font-weight: 600; font-size: 0.92rem; letter-spacing: 0; color: var(--bf-head); margin-bottom: 24px; }

.bf__top { display: grid; grid-template-columns: 1.15fr 1fr 0.62fr; }
.bf__links { display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px; padding: 46px clamp(22px, 3vw, 48px); }
.bf__col { display: flex; flex-direction: column; }
.bf__col a { font-size: 1.06rem; color: var(--bf-link); margin-bottom: 11px; transition: color 0.2s; width: fit-content; }
.bf__col a:hover { color: var(--bf-link-hover); }

.bf__solutions { border-left: 1px solid var(--bf-line); padding: 46px clamp(22px, 3vw, 48px); }
.bf__solico { width: 64px; height: 64px; border-radius: 14px; background: var(--bf-solico-bg); display: grid; place-items: center; margin-bottom: 26px; }
.bf__solico svg { width: 34px; height: 34px; }
.bf__solico svg path { fill: var(--bf-solico-fill); }
.bf__sollist { display: flex; flex-direction: column; gap: 4px; }
.bf__sollist span { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.25; color: var(--bf-dim); }
.bf__sollist span.on { color: var(--bf-link-hover); }
.bf__soldots { display: flex; gap: 8px; margin: 20px 0 18px; }
.bf__soldots i { width: 24px; height: 6px; border-radius: 3px; background: var(--bf-dim); opacity: 0.5; }
.bf__soldots i[data-on] { background: var(--bf-link-hover); opacity: 1; }
.bf__soldesc { color: var(--bf-dim); font-size: 0.95rem; max-width: 36ch; line-height: 1.5; }

.bf__blue { position: relative; display: grid; place-items: center; min-height: 460px; background: var(--bf-blue); color: #fff; overflow: hidden; }
.bf__blueart { position: absolute; inset: 0; margin: auto; width: 80%; max-width: 360px; opacity: 0.9; }
.bf__blueart, .bf__blueart * { vector-effect: non-scaling-stroke; stroke-width: 1px; }
/* "Get early access" stays dead-centre, above the animating outline */
.bf__bluetext { position: relative; z-index: 1; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
.bf__blue:hover .bf__bluetext { text-decoration: underline; text-underline-offset: 4px; }

/* animated connector outline: lines flow, nodes pulse */
@media (prefers-reduced-motion: no-preference) {
  .bf__blueart path { stroke-dasharray: 5 7; animation: bfFlow 2.6s linear infinite; }
  .bf__blueart rect { transform-box: fill-box; transform-origin: center; animation: bfPulse 2.4s ease-in-out infinite; }
  .bf__blueart rect:nth-of-type(2n) { animation-delay: 0.5s; }
  .bf__blueart rect:nth-of-type(3n) { animation-delay: 1s; }
}
@keyframes bfFlow { to { stroke-dashoffset: -24; } }
@keyframes bfPulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }

/* slider bars + titles are clickable */
.bf__soldots i { cursor: pointer; }
.bf__sollist span { cursor: pointer; }

.bf__bottom { display: grid; grid-template-columns: 1.15fr 1.62fr; border-top: 1px solid var(--bf-line); }
.bf__cta { padding: 56px clamp(22px, 3vw, 48px); }
.bf__ctah { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.16; font-weight: 500; color: var(--bf-link); max-width: 15ch; margin: 14px 0 30px; }
.bf__btn { display: inline-flex; background: var(--bf-btn-bg); color: var(--bf-btn-text); border-radius: var(--btn-radius); padding: 15px 30px; font-weight: 600; transition: transform 0.2s var(--ease, ease); }
.bf__btn:hover { transform: translateY(-2px); }
.bf__brand { border-left: 1px solid var(--bf-line); display: flex; align-items: flex-end; justify-content: flex-start; padding: 44px clamp(22px, 3vw, 56px); }
.bf__wordmark { width: min(56%, 380px); height: auto; }
.bf__wordmark path { fill: var(--bf-wordmark); }

.bf__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding: 22px clamp(22px, 3vw, 48px); border-top: 1px solid var(--bf-line); font-size: 0.85rem; color: var(--bf-dim); }
.bf__legallinks { display: flex; gap: 26px; }
.bf__legallinks a { color: var(--bf-dim); transition: color 0.2s; }
.bf__legallinks a:hover { color: var(--bf-link-hover); }

@media (max-width: 900px) {
  .bf__top { grid-template-columns: 1fr; }
  .bf__solutions { border-left: 0; border-top: 1px solid var(--bf-line); }
  .bf__blue { min-height: 300px; border-top: 1px solid var(--bf-line); }
  .bf__bottom { grid-template-columns: 1fr; }
  .bf__brand { border-left: 0; border-top: 1px solid var(--bf-line); justify-content: center; padding-block: 36px; }
  .bf__wordmark { width: min(60%, 280px); }
}

/* ===================== LEGAL PAGES (scoped under .legal) ================= */
.legal .wrap { max-width: 760px; margin: 0 auto; padding: clamp(120px, 15vh, 168px) var(--gutter) clamp(64px, 9vh, 110px); }
.legal .wrap h1 { font-family: "Grifter", sans-serif; text-transform: uppercase; color: var(--ink); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.01em; margin-bottom: 14px; }
.legal .wrap h2 { font-family: "Grifter", sans-serif; text-transform: uppercase; color: var(--ink); font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.1; margin: 44px 0 14px; }
.legal .wrap h3 { font-weight: 700; color: var(--ink); font-size: 1.05rem; margin: 26px 0 8px; }
.legal .wrap p { margin-bottom: 16px; color: var(--body); line-height: 1.65; }
.legal .wrap ul { margin: 0 0 18px 0; padding-left: 22px; }
.legal .wrap li { margin-bottom: 9px; color: var(--body); line-height: 1.65; }
.legal .wrap strong { color: var(--ink); font-weight: 700; }
.legal .wrap .meta, .legal .wrap .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.legal .note { background: var(--brand-tint); border: 1px solid #dfe2ff; border-radius: 14px; padding: 20px 22px; margin: 28px 0; color: var(--body); }
.legal .note p:last-child { margin-bottom: 0; }
.legal .backlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-top: 28px; }
.legal .brand { display: none; }

.section__lede { margin-bottom: 40px; max-width: 58ch; }

/* ---- Onboarding & support strip ------------------------------------------ */
.support__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(28px, 3vw, 50px); margin-top: clamp(40px, 5vw, 60px); }
.support__item { flex: 1 1 168px; max-width: 220px; text-align: center; }
.support__ico { width: 74px; height: 74px; border-radius: 18px; background: var(--brand-tint); display: grid; place-items: center; margin: 0 auto 22px; }
.support__ico svg { width: 34px; height: 34px; stroke: var(--brand); fill: none; stroke-width: 1.7; }
.support__item h3 { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.1; margin-bottom: 9px; }
.support__item p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; max-width: 26ch; margin: 0 auto; }
@media (max-width: 760px) { .support__item { flex-basis: 130px; } }

.card__ico svg { width: 24px; height: 24px; stroke: var(--brand); fill: none; stroke-width: 1.7; }
.section--soft .card { background: #fff; }
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card:nth-child(1), .cards .card:nth-child(6) { grid-column: span 2; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .cards .card:nth-child(1), .cards .card:nth-child(6) { grid-column: span 1; }
}

/* ---- Contact page -------------------------------------------------------- */
.contact { padding-top: clamp(120px, 16vh, 170px); }
.contact__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.contact__intro h1.display { margin: 12px 0 18px; }
.contact__list { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; flex-direction: column; gap: 3px; }
.contact__list li > span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact__list li a { color: var(--ink); font-weight: 600; font-size: 1.06rem; width: fit-content; }
.contact__list li a:hover { color: var(--brand); }
.contact__list li > p { color: var(--ink); font-weight: 600; font-size: 1.06rem; max-width: 34ch; margin: 0; }
.form__field textarea { width: 100%; padding: 14px 16px; background: var(--bg-soft); border: 1px solid var(--line-2); color: var(--ink); font: inherit; border-radius: 10px; resize: vertical; min-height: 120px; transition: border-color 0.2s, background 0.2s; }
.form__field textarea::placeholder { color: #aab0c2; }
.form__field textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---- Hero dashboard mockup (self-animating "video") ---------------------- */
.dash2 { display: grid; grid-template-columns: 150px 1fr; font-size: 0.78rem; color: var(--body); }
.dash2__side { border-right: 1px solid var(--line); background: #fbfbfe; padding: 14px 12px; display: flex; flex-direction: column; gap: 2px; }
.dash2__cat { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 14px 0 5px; }
.dash2__cat:first-child { margin-top: 0; }
.dash2__nav { padding: 7px 10px; border-radius: 8px; font-weight: 500; color: var(--body); white-space: nowrap; }
.dash2__nav.is-on { background: var(--brand-tint); color: var(--brand); font-weight: 600; }
.dash2__body { padding: 16px 18px; min-width: 0; }
.dash2__top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.dash2__h { font-size: 0.98rem; color: var(--ink); font-weight: 700; }
.dash2__chip { font-size: 0.62rem; background: var(--bg-soft); color: var(--muted); padding: 3px 9px; border-radius: 999px; }
.dash2__add { margin-left: auto; font-size: 0.7rem; font-weight: 600; color: #fff; background: var(--brand); padding: 6px 12px; border-radius: 8px; white-space: nowrap; }
.dash2__hr, .dash2__r { display: grid; grid-template-columns: 1.7fr 0.9fr 0.8fr 0.6fr; gap: 8px; align-items: center; padding: 9px 4px; }
.dash2__hr { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); }
.dash2__r { border-bottom: 1px solid var(--line); }
.dash2__r span:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash2__r > span:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.tg { display: inline-block; font-size: 0.6rem; font-weight: 600; padding: 3px 8px; border-radius: 999px; font-style: normal; }
.tg--p { background: var(--brand-tint); color: var(--brand); }
.tg--m { background: #e6f0ff; color: #2563eb; }
@media (max-width: 640px) { .dash2 { grid-template-columns: 1fr; } .dash2__side { display: none; } }

/* looping populate animation (rows fill in, hold, reset) */
@media (prefers-reduced-motion: no-preference) {
  .dash2__r { opacity: 0; animation: rowCycle 9.5s var(--ease) infinite; animation-delay: calc(var(--d, 1) * 0.5s); }
  .dash2__add { animation: addPulse 9.5s ease-in-out infinite; }
  .chat__typing.show i { animation: typingDot 1.1s ease-in-out infinite; }
  .chat__typing.show i:nth-child(2) { animation-delay: 0.14s; }
  .chat__typing.show i:nth-child(3) { animation-delay: 0.28s; }
}
@keyframes rowCycle { 0%,1% { opacity: 0; transform: translateY(8px); } 6% { opacity: 1; transform: translateY(0); } 90% { opacity: 1; } 96%,100% { opacity: 0; transform: translateY(8px); } }
@keyframes addPulse { 0%,88%,100% { box-shadow: 0 0 0 0 rgba(0,0,146,0); } 3% { box-shadow: 0 0 0 5px rgba(0,0,146,0.16); } }
@keyframes typingDot { 0%,60%,100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* chat bubbles + typing indicator (JS-driven: typing shows in the next message's spot) */
.js .mock--chat .bubble { opacity: 0; transform: translateY(8px) scale(0.97); transition: opacity 0.3s var(--ease), transform 0.45s var(--spring); }
.js .mock--chat .bubble.show { opacity: 1; transform: none; }
.chat__typing { display: none; align-self: flex-start; gap: 4px; padding: 11px 14px; background: #fff; border-radius: 14px 14px 14px 4px; box-shadow: 0 1px 2px rgba(10,12,40,0.06); opacity: 0; transition: opacity 0.22s var(--ease); }
.chat__typing.show { display: inline-flex; opacity: 1; }
.chat__typing i { width: 6px; height: 6px; border-radius: 50%; background: #b6bbcf; }

/* scale-graph axis labels */
.rg-lbl { font-family: "Satoshi", sans-serif; font-size: 16px; font-weight: 400; fill: var(--brand); }
.rg-lbl--muted { fill: var(--muted); }

/* ---- AI analytics cards (BI results slide) ------------------------------- */
.ai-cards { display: flex; flex-direction: column; gap: 16px; width: min(440px, 94%); }
.ai-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; box-shadow: 0 16px 38px -22px rgba(10, 12, 40, 0.3); text-align: left; opacity: 0; transform: translateY(16px); }
.ai-card__tag { display: inline-block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); background: var(--brand-tint); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.ai-card__tag--warn { color: #b45309; background: #fdecd2; }
.ai-card__h { font-size: clamp(1.05rem, 1.5vw, 1.32rem); font-weight: 700; color: var(--ink); margin-bottom: 5px; line-height: 1.25; }
.ai-card__s { color: var(--muted); font-size: 0.95rem; line-height: 1.45; }
.results.in-view .rgraph[data-active] .ai-card { animation: aiIn 0.55s var(--spring) forwards; animation-delay: calc(var(--d) * 0.18s); }
@keyframes aiIn { to { opacity: 1; transform: none; } }

/* area-chart data pills fade in as the line draws past each point */
.rg-pt { opacity: 0; }
.rg-pt__t { font-family: "Satoshi", sans-serif; font-size: 16px; font-weight: 600; fill: var(--ink); }
.results.in-view .rgraph[data-active] .rg-pt { animation: rgPt 0.35s var(--ease) forwards; animation-delay: calc(0.34s + var(--pt) * 0.24s); }
@keyframes rgPt { to { opacity: 1; } }

/* scale: the flat "Team" line draws too */
.rdraw2 { stroke-dasharray: 3000; stroke-dashoffset: 3000; }
.results.in-view .rgraph[data-active] .rdraw2 { animation: rdraw2 0.9s var(--ease) 0.1s forwards; }
@keyframes rdraw2 { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .ai-card { opacity: 1; transform: none; }
  .rg-pt { opacity: 1; }
  .rdraw2 { stroke-dashoffset: 0; }
}

/* thinner, scale-consistent strokes on the results graphs */
.rgraph svg path[stroke], .rgraph svg circle[stroke] { vector-effect: non-scaling-stroke; stroke-width: 2.4px; }

/* ---- toast notifications + disabled submit ------------------------------- */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(18px); background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; line-height: 1.4; box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.45); opacity: 0; transition: opacity 0.3s var(--ease), transform 0.35s var(--ease); z-index: 2000; max-width: min(92vw, 460px); text-align: center; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--ok { background: #12714a; }
.toast--err { background: #b42318; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:disabled:hover { transform: none; background: var(--brand); }
