/**
 * Vyoma Systems — landing stylesheet
 * Self-contained: no Bootstrap / AOS dependency.
 * Palette sampled from assets/img/logo_full.png.
 */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* brand — sampled from the logo */
  --navy-900: #040A30;
  --navy-800: #06153F;
  --navy-700: #072B5E;
  --navy-600: #0A3A76;
  --blue-600: #015FAD;   /* logo pentagon */
  --blue-500: #0061F2;   /* interactive, from the existing site */
  --blue-400: #2F87D0;
  --blue-300: #4FA3E3;   /* highlight on dark */
  --blue-100: #C9DFF3;
  --blue-050: #EAF2FB;

  --copper:   #C77D3A;   /* used sparingly */
  --green:    #16A34A;   /* status only */

  --paper:    #FFFFFF;
  --paper-2:  #F5F8FC;
  --paper-3:  #EAF0F8;

  --line-1: rgba(4,10,48,0.09);
  --line-2: rgba(4,10,48,0.15);
  --line-3: rgba(4,10,48,0.26);

  --t1: #0B1533;
  --t2: #3B4665;
  --t3: #5D6883;
  --t4: #93A0B8;

  --display: 'Raleway', sans-serif;
  --body: 'Open Sans', sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

  --max-w: 1200px;
  --gutter: 56px;
  --nav-h: 82px;
  --r: 14px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--t1);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-500); text-decoration: none; }

h1, h2, h3, h4, h5, h6, .display { font-family: var(--display); font-weight: 700; line-height: 1.15; }

::selection { background: rgba(1,95,173,0.16); }

:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; }

section[id], .anchor-alias { scroll-margin-top: calc(var(--nav-h) + 12px); }
.anchor-alias { display: block; height: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── SECTION FURNITURE ──────────────────────────────────── */
.sec { padding: 96px 0; }
.sec-alt { background: var(--paper-2); border-top: 1px solid var(--line-1); border-bottom: 1px solid var(--line-1); }
.sec-alt + .sec-alt { border-top: 0; }   /* two tinted sections read as one band, not a seam */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-600);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--blue-600); border-radius: 2px; }

.sec-h {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 3.3vw, 44px); line-height: 1.12; letter-spacing: -0.022em;
  color: var(--t1); margin-bottom: 16px; max-width: 900px;   /* keeps two-clause headings on two lines */
  text-wrap: balance;
}
.sec-h .hl { color: var(--blue-600); }
.sec-sub { font-size: 16px; line-height: 1.72; color: var(--t2); max-width: 58ch; }
.sec-intro { margin-bottom: 52px; }
.sec-intro.center { text-align: center; }
.sec-intro.center .eyebrow::before { display: none; }
.sec-intro.center .sec-sub, .sec-intro.center .sec-h { margin-left: auto; margin-right: auto; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 6px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  min-height: 46px; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-solid { background: var(--blue-600); color: #fff; }
.btn-solid:hover { background: var(--blue-500); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { transform: translateY(-1px); background: var(--blue-050); }
.btn-outline-d { border-color: rgba(255,255,255,0.34); color: #fff; background: transparent; }
.btn-outline-d:hover { border-color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.08); }
.btn-outline { border-color: var(--line-3); color: var(--t1); background: transparent; }
.btn-outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-sm { font-size: 14px; padding: 10px 20px; min-height: 40px; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line-1);
  transition: box-shadow 0.25s ease;
}
.nav.scrolled { box-shadow: 0 8px 30px rgba(4,10,48,0.08); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 32px; width: auto; }   /* horizontal lockup — sits on the bar's line, like the links */
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--display); font-size: 14.5px; font-weight: 600; color: var(--t2);
  position: relative; padding: 6px 0; transition: color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--blue-600); transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--blue-600); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-links .btn { display: none; }   /* duplicate CTA — only surfaces inside the mobile sheet */
.nav-links .btn-solid { color: #fff; }   /* beat `.nav-links a`, which would otherwise grey the label */
.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-2); border-radius: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--navy-900); border-radius: 2px;
  position: relative; transition: background 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy-900);
  border-radius: 2px; transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 76px) 0 118px;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-canvas canvas { width: 100%; height: 100%; display: block; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    /* pool of extra darkness under the copy, so the field can stay legible elsewhere */
    radial-gradient(74% 82% at 24% 52%, rgba(4,10,48,0.5) 0%, rgba(4,10,48,0) 72%),
    linear-gradient(102deg, rgba(4,10,48,0.88) 0%, rgba(4,10,48,0.83) 40%, rgba(4,10,48,0.64) 70%, rgba(4,10,48,0.76) 100%),
    radial-gradient(120% 90% at 8% 20%, rgba(1,95,173,0.2) 0%, rgba(4,10,48,0) 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 52px; align-items: center;
}
.hero-copy { min-width: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 15px 6px 10px; border-radius: 4px;
  font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--blue-100);
  letter-spacing: 0.11em; text-transform: uppercase; margin-bottom: 26px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-300); box-shadow: 0 0 8px var(--blue-300); animation: pulse-dot 2.4s ease infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 3.9vw, 52px); line-height: 1.05; letter-spacing: -0.028em;
  color: #fff; margin-bottom: 10px;
}
.hero-h1 .hl { color: var(--blue-300); }
.hero-with {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: clamp(17px, 1.7vw, 22px); letter-spacing: -0.01em; color: var(--blue-100);
  margin-bottom: 22px;
}
.hero-lede { font-size: 18px; line-height: 1.62; color: #C9DFF3; max-width: 46ch; margin-bottom: 14px; }
.hero-lede b { color: #fff; font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 30px 0 26px; }

.hero-incubated { font-size: 13px; line-height: 1.6; color: #8298BE; }
.hero-incubated a { color: var(--blue-100); border-bottom: 1px solid rgba(201,223,243,0.35); }
.hero-incubated a:hover { border-color: var(--blue-100); }

/* product shot */
.hero-media { position: relative; min-width: 0; }
.hero-media-glow {
  position: absolute; inset: -14% -10% -18% -8%; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 45%, rgba(1,95,173,0.55) 0%, rgba(4,10,48,0) 70%);
  filter: blur(12px);
}
.hero-media-frame {
  position: relative; z-index: 1; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16); background: rgba(9,20,52,0.9);
  box-shadow: 0 34px 80px rgba(2,6,25,0.62);
}
.hero-media-bar {
  display: flex; align-items: center; gap: 7px; padding: 9px 14px;
  background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.09);
}
.hero-media-title {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-media-frame img { width: 100%; height: auto; display: block; }
.hero-chip {
  position: absolute; z-index: 2; left: -18px; bottom: -18px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(6,21,63,0.94); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px; padding: 9px 14px; backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: #C9DFF3;
  box-shadow: 0 14px 34px rgba(2,6,25,0.5);
}
.hero-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: #4FA870; box-shadow: 0 0 8px rgba(79,168,112,0.8); animation: pulse-dot 2s ease infinite; }

/* stage rail — straddles the hero / next section boundary */
.rail-holder { position: relative; z-index: 5; margin-top: -68px; }
.rail {
  background: #fff; border: 1px solid var(--line-1); border-radius: var(--r);
  box-shadow: 0 22px 60px rgba(4,10,48,0.16);
  padding: 22px 12px; display: flex; align-items: stretch;
}
.rail-stage {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 8px 10px; text-align: center; position: relative;
}
.rail-ico {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-050); border: 1px solid rgba(1,95,173,0.16);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.rail-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--blue-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.35s ease; }
.rail-stage.lit .rail-ico { background: var(--blue-600); border-color: var(--blue-600); transform: translateY(-2px); }
.rail-stage.lit .rail-ico svg { stroke: #fff; }
.rail-label { font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--t2); line-height: 1.35; letter-spacing: 0.005em; }
.rail-arrow { display: flex; align-items: center; padding-top: 22px; flex-shrink: 0; }
.rail-arrow svg { width: 15px; height: 15px; fill: none; stroke: var(--t4); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ── PROOF ──────────────────────────────────────────────── */
.proof { padding-top: 74px; }
/* rotating customer carousel — one at a time */
.tcar {
  position: relative; max-width: 820px; margin: 0 auto 46px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px;
}
.tcar-track { display: grid; }                 /* all slides share one cell → height = tallest */
.tslide {
  grid-area: 1 / 1; text-align: center; padding: 34px 24px 30px;
  background: #fff; border: 1px solid var(--line-1); border-radius: var(--r);
  opacity: 0; visibility: hidden; transition: opacity 0.5s ease;
}
.tslide.is-active { opacity: 1; visibility: visible; }
.tslide-logo {
  height: 62px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.tslide-logo img { max-height: 62px; max-width: 220px; width: auto; height: auto; object-fit: contain; }
.tslide-nda {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--t2);
  border: 1px dashed var(--line-3); border-radius: 10px; padding: 12px 18px;
}
.tslide-nda svg { width: 20px; height: 20px; color: var(--blue-600); }
.tslide-text {
  font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1.5;
  color: var(--t1); max-width: 46ch; margin: 0 auto 16px; letter-spacing: -0.008em;
}
.tslide-meta { display: flex; align-items: center; justify-content: center; gap: 8px 16px; flex-wrap: wrap; }
.tslide-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t3); background: var(--paper-3); border: 1px solid var(--line-1);
  padding: 4px 10px; border-radius: 4px;
}
.tslide-meta a { font-family: var(--mono); font-size: 11px; color: var(--blue-600); letter-spacing: 0.02em; }
.tslide-meta a:hover { text-decoration: underline; }

.tcar-arrow {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line-2); color: var(--t3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.tcar-arrow:hover { border-color: var(--blue-600); color: var(--blue-600); background: var(--blue-050); }
.tcar-arrow svg { width: 17px; height: 17px; }
.tcar-dots { grid-column: 1 / -1; display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.tcar-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 0; background: var(--line-3); transition: background 0.25s ease, width 0.25s ease;
}
.tcar-dot.is-active { background: var(--blue-600); width: 22px; border-radius: 4px; }

.quote-card {
  max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line-1);
  border-left: 3px solid var(--blue-600); border-radius: 0 var(--r) var(--r) 0;
  padding: 38px 44px;
}
.quote-text { font-size: 17px; line-height: 1.8; color: var(--t2); margin-bottom: 26px; }
.quote-by { display: flex; align-items: center; gap: 14px; }
.quote-av {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line-2);
}
.quote-name { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--t1); }
.quote-role { font-size: 13px; color: var(--t3); }

/* ── THE JOURNEY: design → shipped, compressed by dragging ──
   --p (0..1) drives every interpolation: stage spacing, which
   label reads, and how far "shipped" sits from "design".        */
.jour { margin-bottom: 30px; position: relative; }

/* cross-fade any pair of alternative labels */
.swap { display: grid; }
.swap > span { grid-area: 1 / 1; }
.sw-off { opacity: calc(1 - var(--p) * 1.9); }
.sw-on  { opacity: calc(var(--p) * 1.9 - 0.9); }

/* the arch-modeling feedback loop — only real with UpTickPro */
.jour-loop {
  position: relative; height: 68px; width: calc(240px - 68px * var(--p));
  opacity: calc(var(--p) * 1.8 - 0.8); pointer-events: none;
}
.jour-loop-arc {
  position: absolute; left: 40px; right: 0; bottom: 0; height: 18px;
  border: 2px solid rgba(1,95,173,0.45); border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.jour-loop-arc::before {     /* arrowhead pointing down into chip design */
  content: ''; position: absolute; left: -6px; bottom: -1px;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 7px solid var(--blue-600);
}
.jour-loop-tag {
  position: absolute; left: 40px; top: 2px;
  font-family: var(--mono); font-size: 10px; color: var(--blue-600);
  background: var(--blue-050); border: 1px solid rgba(1,95,173,0.22);
  padding: 3px 9px; border-radius: 4px; white-space: nowrap;
}
.jour-loop-note {
  position: absolute; left: 40px; top: 26px;
  font-size: 11.5px; color: var(--t3); white-space: nowrap;
}

.jour-rail { display: flex; align-items: flex-start; padding: 26px 0 4px; min-width: 0; }

.jour-end { flex: 0 0 auto; width: 80px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.jour-end-ico {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); background: #fff; color: var(--t3);
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.jour-end-ico svg { width: 26px; height: 26px; }
.jour-end-label { font-family: var(--display); font-size: 12px; font-weight: 700; line-height: 1.3; color: var(--t2); width: 100px; margin: 0 -10px; }
.jour-end-sub { font-family: var(--mono); font-size: 9.5px; color: var(--t4); margin-top: -6px; }

/* the verdict at the end: doubts, or evidence */
.jour-verdict { display: grid; width: 130px; margin: 4px -25px 0; }
.jour-verdict > span { grid-area: 1 / 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.jour-verdict b {
  font-family: var(--mono); font-size: 9.5px; font-weight: 500; padding: 3px 8px; border-radius: 4px;
  white-space: nowrap; border: 1px solid;
}
.jour-doubt { opacity: calc(1 - var(--p) * 1.9); }
.jour-doubt b { color: var(--copper); background: rgba(199,125,58,0.08); border-color: rgba(199,125,58,0.3); }
.jour-sure { opacity: calc(var(--p) * 1.9 - 0.9); }
.jour-sure b { color: var(--green); background: rgba(22,163,74,0.07); border-color: rgba(22,163,74,0.25); }

.jour-node { flex: 0 0 auto; width: 56px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; position: relative; }
.jour-dot {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line-2);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.jour-dot svg { width: 21px; height: 21px; fill: none; stroke: var(--t3); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.4s ease; }
/* the stage that simply does not exist without UpTickPro */
.jour-node.missing .jour-dot { border-style: dashed; opacity: calc(0.45 + 0.55 * var(--p)); }
.jour-label {
  font-family: var(--display); font-size: 11px; font-weight: 700; line-height: 1.3; color: var(--t3);
  width: 96px; margin: 0 -20px; transition: color 0.4s ease;
}
.jour-issue {
  position: absolute; top: 104px; left: 50%; transform: translateX(-50%); width: 116px;
  font-family: var(--mono); font-size: 9px; line-height: 1.5; color: var(--t4);
  opacity: calc(1 - var(--p) * 1.9); pointer-events: none;
}

/* the connector — its length is the whole point */
.jour-seg {
  flex: 0 1 auto; width: calc(132px - 68px * var(--p));
  min-width: 0; height: 52px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.jour-seg::before {           /* the gap you live with today */
  content: ''; position: absolute; left: -2px; right: -2px; top: 25px; height: 2px;
  background-image: linear-gradient(90deg, var(--line-3) 0 6px, transparent 6px 12px);
  background-size: 12px 2px; opacity: calc(1 - var(--p));
}
.jour-seg::after {            /* the connected flow */
  content: ''; position: absolute; left: -2px; right: -2px; top: 25px; height: 2px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600)); opacity: var(--p);
}
.jour-feed {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9.5px; white-space: nowrap;
  padding: 3px 8px; border-radius: 4px;
  color: var(--blue-600); background: var(--blue-050); border: 1px solid rgba(1,95,173,0.2);
  opacity: calc(var(--p) * 1.9 - 0.9); pointer-events: none;
}

/* the distance the flow gives back */
.jour-ghost {
  flex: 1 1 0; min-width: 0; height: 52px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.jour-ghost::before {
  content: ''; position: absolute; left: 0; right: 0; top: 25px; height: 2px;
  background-image: linear-gradient(90deg, var(--line-2) 0 5px, transparent 5px 11px);
  background-size: 11px 2px; opacity: var(--p);
}
.jour-ghost span {
  font-family: var(--mono); font-size: 9.5px; color: var(--t4); background: var(--paper-2);
  padding: 3px 8px; white-space: nowrap; position: relative;
  opacity: calc(var(--p) * 1.7 - 0.7);
}

/* lit state as the flow connects */
.jour[data-on="1"] .jour-dot { border-color: rgba(1,95,173,0.4); border-style: solid; box-shadow: 0 4px 16px rgba(1,95,173,0.14); }
.jour[data-on="1"] .jour-dot svg { stroke: var(--blue-600); }
.jour[data-on="1"] .jour-label { color: var(--t1); }
.jour[data-on="1"] .jour-end.finish .jour-end-ico { border-color: var(--blue-600); background: var(--blue-600); color: #fff; }

/* the explicit speed read-out */
.jour-time { display: flex; align-items: center; gap: 14px; margin-top: 74px; }
.jour-time-cap {
  font-family: var(--display); font-size: 12px; font-weight: 700; color: var(--t2);
  white-space: nowrap; flex-shrink: 0;
}
.jour-time-track {
  flex: 1; height: 26px; border-radius: 6px; position: relative; overflow: hidden;
  background-image: repeating-linear-gradient(135deg, rgba(4,10,48,0.05) 0 6px, transparent 6px 12px);
  border: 1px dashed var(--line-2);
  display: flex; align-items: center;
}
.jour-time-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: calc(100% - 45% * var(--p));
  border-radius: 5px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transition: width 0.15s linear;
}
.jour-time-cut {
  position: absolute; right: 12px; font-family: var(--mono); font-size: 10px; color: var(--t3);
  opacity: calc(var(--p) * 1.8 - 0.8);
}

/* the control */
.jour-ctrl { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.jour-ctrl-l { font-family: var(--display); font-size: 13px; font-weight: 700; white-space: nowrap; transition: color 0.3s ease; }
.jour-ctrl-l.off { color: var(--t4); }
.jour-ctrl-l.on { color: var(--blue-600); }
.jour-range {
  flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; margin: 0;
  background: linear-gradient(90deg, var(--blue-600) calc(var(--p) * 100%), var(--line-2) calc(var(--p) * 100%));
  cursor: ew-resize;
}
.jour-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue-600); box-shadow: 0 3px 12px rgba(4,10,48,0.22); cursor: ew-resize;
}
.jour-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue-600); box-shadow: 0 3px 12px rgba(4,10,48,0.22); cursor: ew-resize;
}
.jour-range:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 4px; }
.jour-hint {
  text-align: center; margin-top: 12px;
  font-family: var(--mono); font-size: 10.5px; color: var(--t4);
  opacity: calc(1 - var(--p) * 1.4);
}
.jour-note { text-align: center; font-size: 13px; color: var(--t3); max-width: 74ch; margin: 0 auto 34px; }

/* ── WHY IT WORKS ───────────────────────────────────────── */
.why3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 22px; }
.why3-card { background: var(--paper-2); border: 1px solid var(--line-1); border-radius: var(--r); padding: 30px 26px; }
.why3-ico {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-050); border: 1px solid rgba(1,95,173,0.16); color: var(--blue-600);
}
.why3-ico svg { width: 21px; height: 21px; }
.why3-t { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--t1); margin-bottom: 9px; line-height: 1.35; }
.why3-b { font-size: 14px; line-height: 1.7; color: var(--t3); }

/* ── HONEST BAR ─────────────────────────────────────────── */
.honest { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hcol { border-radius: var(--r); padding: 34px 32px; }
.hcol.a { background: #fff; border: 1px solid rgba(1,95,173,0.22); }
.hcol.b { background: var(--paper-3); border: 1px solid var(--line-1); }
.hcol-t { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--t1); margin-bottom: 7px; }
.hcol-s { font-size: 13.5px; color: var(--t3); margin-bottom: 24px; line-height: 1.6; }
.hlist { display: flex; flex-direction: column; gap: 13px; }
.hitem { display: flex; gap: 12px; align-items: flex-start; }
.hdot { width: 21px; height: 21px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.hdot svg { width: 11px; height: 11px; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.hcol.a .hdot { background: rgba(22,163,74,0.13); }
.hcol.a .hdot svg { stroke: var(--green); }
.hcol.b .hdot { background: rgba(93,104,131,0.14); }
.hcol.b .hdot svg { stroke: var(--t3); }
.hitem span { font-size: 14px; color: var(--t2); line-height: 1.58; }
.pull {
  margin-top: 34px; padding: 24px 28px; background: #fff; border: 1px solid var(--line-1);
  border-left: 3px solid var(--copper); border-radius: 0 10px 10px 0;
}
.pull p { font-size: 15px; line-height: 1.78; color: var(--t2); font-style: italic; }
.pull cite { display: block; margin-top: 12px; font-family: var(--mono); font-size: 11.5px; font-style: normal; color: var(--t3); letter-spacing: 0.04em; }

/* ── PLANS ──────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  background: #fff; border: 1px solid var(--line-1); border-radius: var(--r); padding: 32px 28px;
  display: flex; flex-direction: column; height: 100%; transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover { border-color: var(--line-3); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(4,10,48,0.09); }
.plan.featured { border-color: var(--blue-600); box-shadow: 0 18px 50px rgba(1,95,173,0.14); position: relative; }
.plan-flag {
  position: absolute; top: -11px; left: 28px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--blue-600); color: #fff; padding: 4px 12px; border-radius: 4px;
}
.plan-ico { height: 42px; margin-bottom: 18px; }
.plan-ico img { height: 100%; width: auto; }
.plan-name { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; }
.plan-for { font-size: 14px; color: var(--t3); margin-top: 5px; margin-bottom: 22px; line-height: 1.55; }
.plan-hr { height: 1px; background: var(--line-1); margin: 0 0 18px; }
.plan-lab { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--t4); margin-bottom: 12px; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--t2); line-height: 1.55; }
.plan-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; fill: none; stroke: var(--blue-600); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.plan-list.add li svg { stroke: var(--t4); }
.plan .btn { margin-top: auto; width: 100%; }

/* ── RECENT POSTS (LinkedIn) ────────────────────────────── */
/* the heading sits left, the follow button right — on one baseline */
.news-intro {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.news-intro .sec-h { margin-bottom: 0; }
.news-follow { flex-shrink: 0; }
.news-follow svg { width: 15px; height: 15px; fill: currentColor; }

/* LinkedIn's embed is drawn at a fixed 504px — two of them fit the wrap exactly */
/* 2 x 504 + 24 gap + the shells' 1px borders — so each embed lands at 1:1
   and is never resampled by a fractional scale */
.news-grid { overflow: hidden; max-width: 1036px; margin: 0 auto; }
.news-track {
  display: flex; gap: 24px; align-items: flex-start;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform;
}
/* the iframe is cross-origin, so it can be neither measured nor reflowed:
   it renders at its design width and is scaled into the column it lands in */
.lipost {
  position: relative; flex: 0 0 auto; overflow: hidden; height: var(--fh, 360px);
  background: #fff; border: 1px solid var(--line-1); border-radius: var(--r);
}
.lipost { transition: border-color 0.2s ease; }
.lipost:hover { border-color: var(--blue-100); }
.lipost iframe {
  position: absolute; top: 0; left: 0; width: 504px; border: 0; display: block;
  z-index: 1; transform: scale(var(--fs, 1)); transform-origin: 0 0;
}
/* every card is cut to the same height — this fades the cut so a longer post
   reads as a teaser. Over a short post it is white on white, and invisible. */
.lipost::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 56px; z-index: 2;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff 78%); pointer-events: none;
}
/* covers the whole card: the embed is cross-origin, so its own links cannot be
   reached from here, and the ones near the bottom sit under the fade */
.lipost-open {
  position: absolute; inset: 0; z-index: 3; display: flex;
  align-items: flex-end; justify-content: flex-end; padding: 12px 16px;
  text-decoration: none; border-radius: var(--r);
}
/* the post underneath may be an image, so the label carries its own ground */
.lipost-open span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 700; color: var(--blue-600); letter-spacing: 0.01em;
  background: #fff; padding: 6px 10px; border-radius: 8px;
  box-shadow: 0 1px 4px rgba(4, 10, 48, 0.12);
}
.lipost-open svg {
  width: 12px; height: 12px; fill: none; stroke: currentColor;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.lipost-open:hover span { text-decoration: underline; }
.lipost-open:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }

.news-nav {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px;
}
.news-nav[hidden] { display: none; }
.news-arrow {
  width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line-1); border-radius: 50%;
  color: var(--blue-700); cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease;
}
.news-arrow:hover { border-color: var(--blue-600); color: var(--blue-600); }
.news-arrow svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.news-dots { display: flex; align-items: center; gap: 8px; }
.news-dot {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line-1); cursor: pointer; transition: background 0.2s ease, width 0.2s ease;
}
.news-dot.on { width: 22px; border-radius: 4px; background: var(--blue-600); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line-1); }
.faq details { border-bottom: 1px solid var(--line-1); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-size: 16.5px; font-weight: 700; color: var(--t1); line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--blue-600); border-bottom: 2px solid var(--blue-600);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--blue-600); }
.faq-a { padding: 0 44px 24px 0; font-size: 15px; line-height: 1.75; color: var(--t2); }

/* ── CTA + OSS ──────────────────────────────────────────── */
.cta {
  background: linear-gradient(140deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 18px; padding: 58px 56px 46px; text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0; opacity: 0.45; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta > * { position: relative; z-index: 1; }
.cta-h { font-family: var(--display); font-size: clamp(26px, 3.1vw, 40px); font-weight: 800; letter-spacing: -0.026em; color: #fff; line-height: 1.12; margin-bottom: 16px; text-wrap: balance; }
.cta-s { font-size: 16.5px; line-height: 1.7; color: #B9CBE4; max-width: 56ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.oss-line { height: 1px; background: rgba(255,255,255,0.14); max-width: 620px; margin: 0 auto 26px; }
.oss-t { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 14px; }
.oss-b { font-size: 14px; line-height: 1.95; color: #B9CBE4; max-width: 740px; margin: 0 auto; }
.oss-b a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.28); }
.oss-b a:hover { border-color: #fff; }
.oss-s { font-size: 13.5px; color: #8399BC; margin-top: 14px; font-style: italic; }

/* ── GET STARTED / FORM ─────────────────────────────────── */
.start-grid {
  display: grid; grid-template-columns: 320px minmax(0, 660px);
  justify-content: space-between; gap: 40px; align-items: start;
}
.start-aside .eyebrow { margin-bottom: 14px; }
.info-block { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-ico {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--blue-050); border: 1px solid rgba(1,95,173,0.16);
  display: flex; align-items: center; justify-content: center;
}
.info-ico svg { width: 17px; height: 17px; fill: none; stroke: var(--blue-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-k { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--t4); margin-bottom: 3px; }
.info-v { font-size: 14.5px; color: var(--t2); line-height: 1.6; }
.info-v a { color: var(--t2); }
.info-v a:hover { color: var(--blue-600); }
/* the embedded form is short — the shell hugs it instead of leaving a grey void */
.form-shell { background: #fff; border: 1px solid var(--line-1); border-radius: var(--r); overflow: hidden; }
.form-shell iframe { width: 100%; height: 620px; border: 0; display: block; }
/* narrow shells: the embed has its own min-width, so render it at 560 and scale to fit */
.form-shell.fit { position: relative; height: var(--fh); }
.form-shell.fit iframe {
  position: absolute; top: 0; left: 0; width: 560px; height: 620px;
  transform: scale(var(--fs)); transform-origin: 0 0;
}

/* ── LEGAL PAGES (privacy / terms / usage) ──────────────── */
.legal-head {
  background: var(--paper-2); border-bottom: 1px solid var(--line-1);
  padding: calc(var(--nav-h) + 58px) 0 48px;
}
.crumb {
  display: flex; align-items: center; gap: 9px; margin-bottom: 18px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--t4);
}
.crumb a { color: var(--blue-600); }
.crumb a:hover { text-decoration: underline; }
.crumb span[aria-hidden] { color: var(--line-3); }
.legal-title {
  font-family: var(--display); font-size: clamp(30px, 4.4vw, 50px); font-weight: 800;
  letter-spacing: -0.03em; color: var(--navy-900); line-height: 1.06;
}

.legal-sec { padding-top: 58px; }
.legal { max-width: 74ch; }
.legal > *:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal p { font-size: 15.5px; line-height: 1.8; color: var(--t2); margin: 0 0 18px; }
.legal h2 {
  font-family: var(--display); font-size: 23px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy-900); line-height: 1.25;
  margin: 46px 0 16px; padding-top: 28px; border-top: 1px solid var(--line-1);
}
.legal h3 { font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--t1); margin: 30px 0 10px; }
.legal h4 { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--t1); margin: 24px 0 8px; }
.legal h5 { font-family: var(--display); font-size: 13.5px; font-weight: 700; color: var(--t3); margin: 22px 0 6px; }
.legal ul, .legal ol { list-style: none; margin: 0 0 20px; padding: 0; }
.legal li {
  position: relative; padding-left: 22px; margin-bottom: 11px;
  font-size: 15.5px; line-height: 1.8; color: var(--t2);
}
.legal li::before {
  content: ''; position: absolute; left: 2px; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-300);
}
.legal li p { margin: 0 0 8px; }
.legal li > p:last-child { margin-bottom: 0; }
.legal strong { color: var(--t1); font-weight: 700; }
.legal a { color: var(--blue-600); border-bottom: 1px solid rgba(1,95,173,0.28); }
.legal a:hover { border-bottom-color: var(--blue-600); }

.legal-foot {
  max-width: 74ch; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line-1);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.legal-sib { display: flex; gap: 20px; font-size: 14px; }
.legal-sib a { color: var(--t3); }
.legal-sib a:hover { color: var(--blue-600); }

/* ── FOOTER ─────────────────────────────────────────────── */
.foot { background: var(--paper-2); border-top: 1px solid var(--line-1); padding: 54px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 42px; }
.foot-logo img { height: 42px; width: auto; margin-bottom: 16px; }
.foot-desc { font-size: 13.5px; line-height: 1.72; color: var(--t3); max-width: 300px; }
.foot-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-600); background: var(--blue-050); border: 1px solid rgba(1,95,173,0.2);
  padding: 5px 12px; border-radius: 50px;
}
.foot-h { font-family: var(--display); font-size: 13.5px; font-weight: 700; color: var(--t1); margin-bottom: 16px; }
.foot-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-list a, .foot-list li { font-size: 13.5px; color: var(--t3); line-height: 1.6; }
.foot-list a:hover { color: var(--blue-600); }
.foot-social { display: flex; gap: 10px; margin-top: 16px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s ease, background 0.2s ease;
}
.foot-social a:hover { border-color: var(--blue-600); background: var(--blue-050); }
.foot-social svg { width: 16px; height: 16px; fill: var(--t3); }
.foot-social a:hover svg { fill: var(--blue-600); }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--line-1); font-size: 12.5px; color: var(--t4);
}
.foot-bottom a { color: var(--t4); }
.foot-bottom a:hover { color: var(--blue-600); }
.foot-legal { display: flex; gap: 22px; }

/* ── VIDEO MODAL ────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 1200; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(4,10,48,0.86); backdrop-filter: blur(6px);
}
.modal.open { display: flex; }
.modal-box { width: min(960px, 100%); position: relative; }
.modal-frame { position: relative; padding-top: 56.25%; background: #000; border-radius: 12px; overflow: hidden; }
.modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal-close {
  position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal-close svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }

/* ── BACK TO TOP ────────────────────────────────────────── */
.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 800;
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--blue-500); }
.to-top svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ══ TABLET ═════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --gutter: 36px; }
  .sec { padding: 80px 0; }
  .aeth { grid-template-columns: auto 1fr; row-gap: 22px; }
  .aeth-proof { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .aeth-stat-l { margin-top: 0; }
  .aeth-stat-l br { display: none; }
  .aeth-nda { margin-top: 0; }
  .start-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 620px; }
  .hero-chip { left: 16px; bottom: -16px; }
  .hero-veil { background: linear-gradient(160deg, rgba(4,10,48,0.92) 0%, rgba(4,10,48,0.86) 55%, rgba(4,10,48,0.9) 100%); }
}

/* ══ MOBILE NAV + STACKED LAYOUTS ═══════════════════════ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line-1);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 18px;
    box-shadow: 0 18px 40px rgba(4,10,48,0.12);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links li { padding: 0 var(--gutter); }
  .nav-links a:not(.btn) { display: block; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--line-1); }
  .nav-links a::after { display: none; }
  .nav-links li:last-child { padding-top: 18px; }
  .nav-links .btn { display: flex; width: 100%; font-size: 15px; }

  .hero { padding: calc(var(--nav-h) + 60px) 0 108px; }
  .rail-holder { margin-top: -56px; }
  .rail { padding: 6px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .rail::-webkit-scrollbar { height: 0; }
  .rail-stage { flex: 0 0 40%; scroll-snap-align: center; min-width: 132px; padding: 16px 8px; }
  .rail-arrow { display: none; }

  .honest, .why3 { grid-template-columns: 1fr; }

  /* the rail turns vertical — the same compression, read top to bottom */
  .jour-loop { width: auto; height: auto; margin-bottom: 14px; padding-left: 4px; }
  .jour-loop-arc { display: none; }
  .jour-loop-tag, .jour-loop-note { position: static; display: block; white-space: normal; }
  .jour-loop-tag { display: inline-block; margin-bottom: 6px; }
  .jour-rail { flex-direction: column; align-items: stretch; padding-left: 4px; }
  .jour-end, .jour-node { flex-direction: row; width: auto; justify-content: flex-start; gap: 16px; text-align: left; }
  .jour-end-ico, .jour-dot { flex-shrink: 0; }
  .jour-label, .jour-end-label { width: auto; margin: 0; font-size: 13.5px; }
  .jour-end { flex-wrap: wrap; }
  .jour-end-sub { margin: 0; }
  .jour-verdict { width: auto; margin: 0; flex: 1 1 100%; padding-left: 72px; }
  .jour-verdict > span { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .jour-issue {
    position: static; transform: none; width: auto; text-align: left;
    flex: 1 1 100%; padding-left: 72px; margin-top: -4px;
  }
  .jour-node { flex-wrap: wrap; }
  .jour-seg {
    width: auto; height: calc(78px - 44px * var(--p));
    justify-content: flex-start; padding-left: 26px;
  }
  .jour-seg::before, .jour-seg::after {
    left: 27px; right: auto; top: 0; bottom: 0; width: 2px; height: auto;
  }
  .jour-seg::before { background-image: linear-gradient(180deg, var(--line-3) 0 6px, transparent 6px 12px); background-size: 2px 12px; }
  .jour-seg::after { background: linear-gradient(180deg, var(--blue-400), var(--blue-600)); }
  .jour-feed { position: static; transform: none; margin-left: 20px; }
  .jour-ghost { height: auto; padding: 18px 0 4px 44px; justify-content: flex-start; overflow: visible; }
  .jour-ghost::before { display: none; }
  .jour-time { margin-top: 26px; flex-wrap: wrap; gap: 8px 12px; }
  .jour-time-track { flex: 1 1 100%; }
  .jour-ctrl { flex-wrap: wrap; gap: 10px 14px; justify-content: space-between; }
  .jour-range { flex: 1 1 100%; order: 3; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  /* one card at a time below 760px — the carousel sets the widths itself */
  .quote-card { padding: 30px 28px; }

  /* comparison becomes tabs — no drag fighting the scroll */
}

/* ══ PHONE ══════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --gutter: 20px; --nav-h: 68px; }
  .nav-logo img { height: 27px; }
  .hero-lede { font-size: 16.5px; }
  .hero-incubated { font-size: 12.5px; }
  .hero-media-bar { padding: 7px 11px; }
  .hero-media-title { font-size: 9.5px; }
  /* on a phone the shot is small — don't cover a quarter of it with the chip */
  .hero-chip { position: static; margin-top: 14px; font-size: 10px; padding: 8px 12px; gap: 7px; }
  body { font-size: 15.5px; }
  .sec { padding: 60px 0; }
  .proof { padding-top: 56px; }
  .news-intro { align-items: flex-start; gap: 20px; }

  .legal-head { padding: calc(var(--nav-h) + 36px) 0 32px; }
  .legal-sec { padding-top: 40px; }
  .legal p, .legal li { font-size: 15px; line-height: 1.75; }
  .legal h2 { font-size: 20px; margin-top: 36px; padding-top: 22px; }
  .legal h3 { font-size: 16px; }
  .legal-foot { flex-direction: column; align-items: flex-start; gap: 16px; }

  .hero { padding: calc(var(--nav-h) + 44px) 0 92px; }
  .hero-badge { font-size: 9.5px; letter-spacing: 0.08em; padding: 6px 12px 6px 9px; }
  .hero-h1 { font-size: clamp(30px, 8.4vw, 40px); }
  .hero-sub { font-size: 15.5px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-cred { font-size: 10.5px; }

  .rail-holder { margin-top: -46px; }
  .rail-stage { flex: 0 0 46%; min-width: 124px; }

  .sec-h { font-size: clamp(24px, 6.6vw, 32px); }
  /* arrows would crowd the slide — swipe and dots carry it */
  .tcar { grid-template-columns: 1fr; }
  .tcar-arrow { display: none; }
  .tslide { padding: 26px 18px 24px; }
  .tslide-logo { height: 52px; margin-bottom: 16px; }
  .tslide-logo img { max-height: 52px; max-width: 170px; }
  .tslide-nda { font-size: 14px; padding: 10px 14px; gap: 8px; }
  .tslide-text { font-size: 16px; }

  .aeth { grid-template-columns: 1fr; padding: 28px 24px; gap: 18px; }
  .aeth-title { font-size: 17px; }
  .aeth-stat { font-size: 28px; }

  .hcol { padding: 26px 22px; }
  .pull { padding: 20px 22px; }
  .plan { padding: 26px 22px; }
  .faq summary { font-size: 15.5px; padding-right: 36px; }

  .cta { padding: 40px 24px 34px; border-radius: 14px; }
  .cta-actions .btn { flex: 1 1 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .quote-text { font-size: 15.5px; }
}

/* ── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
