/* ============================================================
   WaterBear Software — styles.css
   Palette: cyan → sky → deep blue, on white. Spare, confident.
   Type: Space Grotesk (display) · Inter (body) · IBM Plex Mono (labels)
   ============================================================ */

:root {
  --paper:   #ffffff;
  --ink:     #0c2733;
  --muted:   #5c7484;
  --deep:    #0a5c9e;
  --sky:     #2ba4e0;
  --cyan:    #16c1e6;
  --mist:    #edf7fc;
  --mist-2:  #f5fafd;
  --line:    #dde8ef;
  --line-2:  #eef4f8;

  --grad: linear-gradient(120deg, #0a5c9e 0%, #2ba4e0 55%, #16c1e6 100%);

  --shadow-sm: 0 1px 2px rgba(12,39,51,.06), 0 4px 14px rgba(12,39,51,.05);
  --shadow-md: 0 18px 46px -22px rgba(11,53,88,.42), 0 6px 18px -12px rgba(11,53,88,.28);

  --maxw: 1160px;
  --pad: clamp(20px, 5vw, 48px);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.nowrap { white-space: nowrap; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 18px;
}

.btn {
  --btn-pad-y: 12px;
  --btn-pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn--lg { --btn-pad-y: 15px; --btn-pad-x: 30px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(10,92,158,.75);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(10,92,158,.7); }
.btn--ghost {
  background: #fff;
  color: var(--deep);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(43,164,224,.55); outline-offset: 3px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.nav__brand img { height: 34px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  position: relative; padding: 4px 0; transition: color .18s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--cyan); transition: width .22s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(52px, 8vw, 104px) 0 clamp(48px, 7vw, 92px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title { margin-bottom: 26px; }
.hero__lead {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 29px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--muted);
  margin-bottom: .42em;
}
.hero__lead strong { color: var(--ink); font-weight: 600; }
.hero__payoff {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: var(--ink);
}
.hero__peak {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero__note { font-size: 14px; color: var(--muted); max-width: 40ch; }

/* trajectory viz */
.hero__viz { justify-self: end; width: 100%; }
.traj {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-md);
  width: 100%;
}
.traj__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.traj__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.traj__badge {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--deep); background: var(--mist); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
}
.traj__plot { position: relative; }
.traj__svg { width: 100%; height: clamp(200px, 26vw, 260px); display: block; overflow: visible; }

.traj__goal { stroke: #c6d6e0; stroke-width: 1.5; stroke-dasharray: 5 6; }
.traj__area { opacity: 0; transition: opacity .6s ease .7s; }
.traj__line {
  stroke-dasharray: 900; stroke-dashoffset: 900;
}
.traj__dot { fill: var(--cyan); stroke: #fff; stroke-width: 3; opacity: 0; transform-box: fill-box; transform-origin: center; }

.is-animated .traj__line { animation: draw 1.5s cubic-bezier(.65,.02,.35,1) .25s forwards; }
.is-animated .traj__area { opacity: 1; }
.is-animated .traj__dot { animation: pop .5s ease 1.55s forwards, pulse 2.6s ease-in-out 2.1s infinite; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.2); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(22,193,230,.0)); }
  50% { filter: drop-shadow(0 0 7px rgba(22,193,230,.6)); }
}

.traj__goaltag {
  position: absolute; left: 4px; top: 58%;
  display: flex; flex-direction: column; line-height: 1.05;
  padding-left: 2px;
}
.traj__goalnum { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--muted); }
.traj__goalcap { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #9fb2be; margin-top: 2px; }

.traj__peaktag {
  position: absolute; right: 0; top: 2px; text-align: right;
  display: flex; flex-direction: column; line-height: 1.02;
}
.traj__peaknum { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.03em; color: var(--deep); }
.traj__peakcap { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); margin-top: 3px; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--tint { background: var(--mist-2); border-block: 1px solid var(--line-2); }
.section__head { max-width: 62ch; margin-bottom: clamp(40px, 5vw, 60px); }
.section__title { font-size: clamp(27px, 3.6vw, 42px); line-height: 1.1; }
.section__lede { margin-top: 18px; font-size: clamp(16px, 1.5vw, 18.5px); color: var(--muted); max-width: 58ch; }

/* ---------- pillars ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.pillar {
  border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px 26px;
  background: #fff; transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar__no { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--cyan); }
.pillar__title { font-size: 20px; margin: 14px 0 10px; }
.pillar p { font-size: 15px; color: var(--muted); }

/* ============================================================
   DIFFERENTIATOR BEAT
   ============================================================ */
.beat { background: var(--ink); color: #fff; padding: clamp(64px, 8vw, 104px) 0; position: relative; overflow: hidden; }
.beat::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 120% at 85% 15%, rgba(22,193,230,.22), transparent 60%),
    radial-gradient(50% 110% at 10% 90%, rgba(10,92,158,.4), transparent 55%);
  pointer-events: none;
}
.beat__inner { position: relative; max-width: 46rem; text-align: left; }
.beat__eyebrow { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin: 0 0 22px; }
.beat__line {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px); line-height: 1.08; letter-spacing: -0.03em;
  max-width: 100%;
}
.beat__line em { font-style: italic; color: #9fd8ef; }
.beat__line strong {
  font-weight: 700; color: #fff; position: relative; white-space: nowrap;
}
.beat__line strong::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: .5em;
  background: linear-gradient(90deg, var(--cyan), var(--sky)); opacity: .38; border-radius: 3px; z-index: -1;
}
.beat__sub { margin-top: 26px; font-size: clamp(16px, 1.6vw, 19px); color: #a9c2d1; max-width: 46ch; }

/* ============================================================
   STEPS (speed)
   ============================================================ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: none; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line); }
.step__no {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: #fff; background: var(--grad);
  width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 8px 18px -10px rgba(10,92,158,.8);
}
.step__title { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; max-width: 34ch; }

/* ============================================================
   FEATURE SHOWCASE
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 68px); align-items: center;
  padding: clamp(30px, 4vw, 52px) 0;
}
.feature + .feature { border-top: 1px solid var(--line-2); }
.feature--flip .feature__text { order: 2; }
.feature__kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; }
.feature__title { font-size: clamp(23px, 2.8vw, 32px); line-height: 1.12; margin-bottom: 14px; }
.feature__body { color: var(--muted); font-size: 16.5px; max-width: 46ch; }
.feature__body strong { color: var(--ink); font-weight: 600; }
.feature__body em { color: var(--deep); font-style: italic; }

.shot {
  border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}
.feature__shot:hover .shot { transform: translateY(-4px); }
.shot__dots { display: block; height: 34px; background: #f3f8fb; border-bottom: 1px solid var(--line-2); position: relative; }
.shot__dots::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff9f8a;
  box-shadow: 18px 0 0 #ffd27f, 36px 0 0 #8fd6a8;
}
.shot img { width: 100%; height: auto; display: block; }

/* additional modules */
.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: clamp(36px, 4vw, 56px); }
.module {
  border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; background: #fff;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.module:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.module--wide { grid-column: 1 / -1; background: linear-gradient(120deg, var(--mist) 0%, #fff 70%); border-color: var(--line); }
.module__title { font-size: 21px; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.module__tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cyan); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
}
.module p { color: var(--muted); font-size: 15.5px; max-width: 60ch; }
.module--wide strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   PROOF (white-label)
   ============================================================ */
.proof { max-width: 62ch; }
.proof__title { font-size: clamp(27px, 3.6vw, 42px); line-height: 1.1; margin: 16px 0 20px; }
.proof__body { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin-bottom: 30px; }
.proof__body strong { color: var(--ink); font-weight: 600; }
.proof__body em { color: var(--deep); font-style: italic; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { padding: clamp(66px, 9vw, 120px) 0; background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 80% 0%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
.cta__inner { position: relative; max-width: 620px; margin-inline: auto; text-align: center; }
.cta__title { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; }
.cta__sub { margin: 16px auto 34px; font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.9); max-width: 46ch; }

.cta__form { background: #fff; border-radius: 20px; padding: clamp(22px, 3vw, 34px); box-shadow: 0 30px 60px -28px rgba(4,30,54,.6); text-align: left; }
.cta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field__opt { text-transform: none; letter-spacing: 0; color: #9fb2be; }
.field input {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--mist-2);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.field input::placeholder { color: #9fb2be; }
.field input:focus { outline: none; border-color: var(--sky); background: #fff; box-shadow: 0 0 0 4px rgba(43,164,224,.14); }
.cta__form .btn { margin-top: 4px; }
.cta__fineprint { text-align: center; margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #cfe0ea; padding: clamp(44px, 6vw, 72px) 0 40px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer__tardigrade { max-width: 34ch; font-size: 14.5px; color: #93aec0; line-height: 1.55; }
.footer__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; text-align: right; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: flex-end; }
.footer__links a { font-size: 14.5px; color: #cfe0ea; transition: color .18s ease; }
.footer__links a:hover { color: #fff; }
.footer__copy { font-size: 13px; color: #7793a6; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__viz { justify-self: stretch; max-width: 560px; }
  .hero__sub { max-width: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature--flip .feature__text { order: 0; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__inner { height: 64px; }
  .nav__brand img { height: 30px; }
  .pillars { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
  .cta__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__meta { align-items: flex-start; text-align: left; }
  .footer__links { justify-content: flex-start; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .traj__line { stroke-dashoffset: 0; }
  .traj__area, .traj__dot { opacity: 1; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* active nav state */
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { width: 100%; }

/* white button (on gradient bands) */
.btn--white { background: #fff; color: var(--deep); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(4,30,54,.5); color: var(--sky); }

/* CTA band variant (no form) */
.cta--band .cta__inner { max-width: 680px; }

/* "explore more" link */
.section__more { margin-top: clamp(32px, 4vw, 52px); }
.section__more a {
  font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--deep);
  display: inline-flex; align-items: center; gap: .4em; transition: gap .2s ease, color .2s ease;
}
.section__more a:hover { color: var(--sky); gap: .75em; }

/* ---------- interior page sub-hero ---------- */
.subhero {
  padding: clamp(58px, 8vw, 100px) 0 clamp(38px, 5vw, 60px);
  background: linear-gradient(180deg, var(--mist) 0%, #fff 100%);
  border-bottom: 1px solid var(--line-2);
}
.subhero__inner { max-width: 60ch; }
.subhero h1 { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.05; letter-spacing: -0.03em; margin: 14px 0 20px; }
.subhero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subhero__sub { font-size: clamp(17px, 1.8vw, 20px); color: var(--muted); max-width: 54ch; margin-bottom: 30px; }

/* ---------- capability lists (platform) ---------- */
.caps { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.caps li { position: relative; padding-left: 26px; color: var(--muted); font-size: 15.5px; }
.caps li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }
.caps strong { color: var(--ink); font-weight: 600; }

/* ---------- spotlight beats (full-width, light) ---------- */
.spotlight {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: center;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(125deg, var(--mist) 0%, #fff 62%);
  padding: clamp(30px, 4vw, 52px);
}
.spotlight + .spotlight { margin-top: clamp(24px, 3vw, 40px); }
.spotlight__kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; }
.spotlight__title { font-size: clamp(23px, 2.8vw, 32px); line-height: 1.12; margin-bottom: 14px; }
.spotlight__body { color: var(--muted); font-size: 16.5px; max-width: 48ch; }
.spotlight__body strong { color: var(--ink); font-weight: 600; }
.spotlight__body em { color: var(--deep); font-style: italic; }

/* inner panel used on spotlight right side */
.panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-md); }
.panel__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.panel__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.panel__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.panel__list li::before {
  content: ""; flex: 0 0 auto; margin-top: 3px; width: 8px; height: 13px;
  border: solid var(--cyan); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
/* language chips (translator) */
.langs { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.lang { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--deep); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; }
.lang--arrow { color: var(--sky); background: none; border: none; padding: 0 2px; }
.langs__voice { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); }

/* ---------- how-it-works timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; max-width: 62ch; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 10px; bottom: 30px; width: 2px; background: var(--line); }
.tl { position: relative; padding: 0 0 clamp(30px, 3.5vw, 44px) 66px; }
.tl:last-child { padding-bottom: 0; }
.tl__marker {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; text-align: center; line-height: 1.05;
  box-shadow: 0 8px 18px -10px rgba(10,92,158,.8);
}
.tl__day { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); }
.tl__title { font-size: 21px; margin: 5px 0 9px; }
.tl p { color: var(--muted); font-size: 15.5px; max-width: 52ch; }

/* ---------- demo page ---------- */
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.demo .cta__form { box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.value-eyebrow { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); margin-bottom: 16px; }
.value-title { font-size: clamp(24px, 3vw, 34px); line-height: 1.1; margin-bottom: 12px; }
.value-intro { color: var(--muted); font-size: 17px; max-width: 46ch; }
.value-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 20px; }
.value-list li { position: relative; padding-left: 34px; }
.value-list li::before {
  content: ""; position: absolute; left: 3px; top: 4px; width: 8px; height: 14px;
  border: solid var(--cyan); border-width: 0 2.6px 2.6px 0; transform: rotate(45deg);
}
.value-list h3 { font-size: 17px; margin: 0 0 4px; font-family: var(--font-display); font-weight: 600; }
.value-list p { color: var(--muted); font-size: 15px; }
.reassure { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.reassure span {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--deep); background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
}

/* responsive for additions */
@media (max-width: 960px) {
  .spotlight { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
}
