/* AtBit — homepage styles
   Consolidated from the Claude Design handoff bundle (home.html). */

:root {
  --green: #49BE5D;
  --green-2: #6FD982;
  --teal: #075767;
  --teal-2: #0A7689;
  --teal-mid: #45818D;
  --ink: #0A0E0D;
  --ink-2: #0F1614;
  --ink-3: #1A2422;
  --paper: #F4F1E8;
  --paper-2: #E8E4D6;
  --bone: #FAF8F2;
  --muted: #8C9591;
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--ink); }
body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.mono { font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace; }

/* ───────── Layout helpers ───────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ───────── Top nav ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px var(--gutter);
  z-index: 100;
  color: var(--ink);
  background: color-mix(in oklab, var(--bone) 80%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; }
.brand-mark { width: 30px; height: 30px; flex: 0 0 30px; }

/* SVG logo glyph (matches home.jsx LogoMark colors) */
.logo-svg .frame { stroke: var(--green); fill: none; stroke-width: 9; }
.logo-svg .bar   { fill: var(--teal); }
.logo-svg .tri   { fill: var(--green); }
.logo-svg .chip  { fill: var(--teal); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; opacity: 0.75; transition: opacity .25s var(--ease); }
.nav-links a:hover, .nav-links a.active { opacity: 1; }

.nav-cta {
  font-size: 13px; padding: 11px 18px;
  border: 1px solid var(--ink); color: var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.nav-cta:hover { background: var(--green); color: var(--ink); border-color: var(--green); }

@media (max-width: 760px) { .nav-links a:not(.always) { display: none; } }

/* ───────── HERO (light panel) ───────── */
.hero-light {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, color-mix(in oklab, var(--green) 6%, transparent) 0, transparent 40%),
    radial-gradient(circle at 88% 82%, color-mix(in oklab, var(--teal) 6%, transparent) 0, transparent 50%),
    var(--bone);
  color: var(--ink);
  padding: clamp(112px, 14vh, 160px) var(--gutter) clamp(64px, 10vh, 112px);
  overflow: hidden;
}
.hero-light::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, color-mix(in oklab, var(--ink) 8%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.5;
}
.hero-light-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: center;
  position: relative; z-index: 2;
}
.hero-light h1 {
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.92; letter-spacing: -0.045em;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink-2);
}
.hero-light h1 .at-char {
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.04em;
  vertical-align: -0.02em;
}
.hero-light h1 .at-char .at-green { color: var(--green); }
.hero-light h1 .at-char .at-teal  { color: var(--teal); }

.hero-light .tagline {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 700; color: var(--green-2);
  margin: 0 0 28px; max-width: 18ch; text-wrap: balance;
}
.hero-light .tagline .deep { color: var(--teal); }
.hero-light .lede {
  font-size: 17px; line-height: 1.55; max-width: 42ch;
  color: color-mix(in oklab, var(--ink) 75%, transparent);
  margin: 0 0 36px;
}
.hero-light .cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 999px;
  background: var(--teal); color: var(--paper);
  font-weight: 500; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.hero-light .cta:hover { background: var(--ink); transform: translateY(-2px); }
.hero-light .cta .arrow { transition: transform .25s var(--ease); }
.hero-light .cta:hover .arrow { transform: translateX(6px); }

/* Hero illustration container — hosts the animated SVG hero (dist/hero.js) */
.mountain-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: grid; place-items: center;
}
.mountain-stage svg { width: 100%; height: 100%; display: block; overflow: visible; }

@media (max-width: 900px) {
  .hero-light-grid { grid-template-columns: 1fr; }
  .mountain-stage { max-width: 540px; margin: 0 auto; }
}

/* ───────── Section base ───────── */
.section { padding: clamp(96px, 14vw, 180px) 0; position: relative; color: var(--ink); }
.section.paper  { background: var(--paper); }
.section.paper2 { background: var(--paper-2); }

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  display: inline-block; margin-bottom: 28px;
  color: var(--green);
}

.h-display {
  font-size: clamp(52px, 7.4vw, 112px);
  line-height: 0.95; letter-spacing: -0.038em;
  font-weight: 700; margin: 12px 0 0;
  text-wrap: balance;
}
.h-display .green { color: var(--green); }
.h-display .teal  { color: var(--teal); }

/* ───────── HOME — services grid ───────── */
.home-services .h-display { max-width: 18ch; }

.home-svc-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-svc-card {
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.home-svc-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--green) 50%, transparent);
  box-shadow: 0 24px 48px -24px color-mix(in oklab, var(--teal) 30%, transparent);
}
.home-svc-num {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.18em; font-weight: 600;
  color: var(--green); margin-bottom: 20px;
  padding: 6px 12px;
  background: color-mix(in oklab, var(--green) 12%, transparent);
  border-radius: 999px;
  align-self: flex-start;
}
.home-svc-card h3 {
  font-size: 24px; line-height: 1.2; letter-spacing: -0.018em;
  margin: 0 0 16px; color: var(--ink); font-weight: 600;
  text-wrap: balance;
}
.home-svc-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 16px;
  text-wrap: pretty;
}
.home-svc-card .home-svc-tail {
  font-size: 14.5px; line-height: 1.55;
  color: var(--teal); font-weight: 500;
  padding-top: 16px; margin-top: auto;
  border-top: 1px dashed color-mix(in oklab, var(--ink) 14%, transparent);
}
.home-svc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid color-mix(in oklab, var(--teal) 30%, transparent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.home-svc-card:hover .home-svc-cta { color: var(--green); border-color: var(--green); gap: 12px; }
.home-svc-bullets {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: grid; gap: 14px;
}
.home-svc-bullets li {
  font-size: 14.5px; line-height: 1.55;
  padding-left: 16px; position: relative;
  color: var(--ink-2);
}
.home-svc-bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
}
.home-svc-bullets strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .home-svc-grid { grid-template-columns: 1fr; } }

/* ───────── HOME — audience grid ───────── */
.home-aud-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-aud-card {
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 18px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.home-aud-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}
.home-aud-card .eyb {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); display: block; margin-bottom: 24px;
}
.home-aud-card h3 {
  font-size: 26px; line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 16px; color: var(--ink); font-weight: 600;
  text-wrap: balance;
}
.home-aud-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2); margin: 0;
  text-wrap: pretty;
}
@media (max-width: 900px) { .home-aud-grid { grid-template-columns: 1fr; } }

/* ───────── Light CTA ───────── */
.cta-light {
  padding: clamp(96px, 14vw, 168px) 0;
  background:
    radial-gradient(50% 50% at 80% 50%, color-mix(in oklab, var(--green) 14%, transparent), transparent 70%),
    radial-gradient(40% 40% at 10% 50%, color-mix(in oklab, var(--teal) 14%, transparent), transparent 70%),
    var(--paper-2);
  position: relative;
}
.cta-light-inner { max-width: 1100px; }
.cta-light h2 {
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.9; letter-spacing: -0.04em;
  font-weight: 700; margin: 12px 0 28px;
  color: var(--ink); text-wrap: balance;
}
.cta-light p { font-size: 18px; max-width: 56ch; color: var(--ink-2); margin: 0 0 40px; line-height: 1.55; }
.cta-light-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.cta-btn.primary { background: var(--ink); color: var(--paper); }
.cta-btn.primary:hover { background: var(--green); color: var(--ink); transform: translateY(-2px); }
.cta-btn.ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.cta-btn.ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* ───────── Footer ───────── */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 56px var(--gutter) 28px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 12%, transparent);
}
.foot .brand { color: var(--paper); }
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2fr 1fr;
  gap: 40px; align-items: start;
}
.foot small { font-size: 12.5px; color: color-mix(in oklab, var(--paper) 55%, transparent); }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot-cols h5 {
  font-size: 11px; font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 50%, transparent);
  margin: 0 0 16px; font-weight: 500;
}
.foot-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-cols a { font-size: 14px; opacity: 0.85; }
.foot-cols a:hover { color: var(--green); opacity: 1; }
.foot-tag {
  margin-top: 16px; max-width: 32ch;
  font-size: 14px; opacity: 0.7; line-height: 1.55;
}
.foot-bottom {
  max-width: var(--max); margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--paper) 12%, transparent);
  display: flex; justify-content: space-between; align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 50%, transparent);
}
@media (max-width: 760px) {
  .foot-inner { grid-template-columns: 1fr; }
  .foot-cols  { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ───────── Reveal animations ───────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.char-split {
  display: inline-block; opacity: 0; transform: translateY(60%);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.char-split.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .char-split { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES + ABOUT page styles
   (ported from the design's styles-light.css, only what's needed)
   ════════════════════════════════════════════════════════════════ */

/* ───────── Light hero variants ───────── */
.hero-light-services,
.hero-light-about {
  padding: 168px 0 96px;
  min-height: 0;
  background:
    radial-gradient(80% 60% at 80% 0%, color-mix(in oklab, var(--green) 10%, transparent), transparent 60%),
    radial-gradient(60% 60% at 0% 30%, color-mix(in oklab, var(--teal) 14%, transparent), transparent 60%),
    var(--bone);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}
.hero-light-services::before,
.hero-light-about::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, color-mix(in oklab, var(--ink) 8%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.45;
}
.hero-light-services .wrap,
.hero-light-about .wrap { position: relative; z-index: 2; }

.services-h1, .about-h1 {
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.95; letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 28px;
  color: var(--ink);
  text-wrap: balance;
  max-width: 22ch;
  word-break: break-word;
  overflow-wrap: break-word;
}
.services-lede, .about-lede {
  font-size: 20px; line-height: 1.5;
  color: color-mix(in oklab, var(--ink) 78%, transparent);
  max-width: 56ch; margin: 0 0 40px;
  text-wrap: pretty;
}
.about-lede strong { color: var(--ink); font-weight: 600; }

.services-jump {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}
.services-jump a {
  color: var(--teal);
  border-bottom: 1px solid color-mix(in oklab, var(--teal) 30%, transparent);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.services-jump a:hover { color: var(--green); border-color: var(--green); }

/* ───────── Service blocks (alternating layout) ───────── */
.svc-block {
  padding: clamp(96px, 14vw, 168px) 0;
  background: var(--paper);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.svc-block:nth-of-type(even) { background: var(--paper-2); }
.svc-block-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.svc-block.flip .svc-block-grid { grid-template-columns: 1.1fr 0.9fr; }
.svc-block.flip .svc-copy { order: 2; }
.svc-block.flip .svc-anim { order: 1; }
.svc-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--green);
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: color-mix(in oklab, var(--green) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--green) 30%, transparent);
  border-radius: 999px;
  line-height: 1;
}
.svc-head {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.svc-head .eyebrow { margin: 0; display: inline-flex; align-items: center; line-height: 1; }
.svc-h {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1; letter-spacing: -0.03em;
  font-weight: 700; margin: 0 0 24px;
  color: var(--ink); text-wrap: balance;
}
.svc-lede {
  font-size: 18px; line-height: 1.55;
  color: color-mix(in oklab, var(--ink) 75%, transparent);
  margin: 0 0 32px; max-width: 52ch; text-wrap: pretty;
}
.svc-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.svc-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; line-height: 1.55;
  color: var(--ink-2);
}
.svc-bullets .check {
  width: 24px; height: 24px; flex: 0 0 24px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--green) 18%, transparent);
  color: var(--teal);
  display: inline-grid; place-items: center;
  margin-top: 1px;
}
.svc-bullets .check svg { width: 14px; height: 14px; }

.svc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-size: 14px; font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), gap .25s var(--ease);
}
.svc-cta:hover { background: var(--green); color: var(--ink); transform: translateY(-2px); gap: 14px; }
@media (max-width: 900px) {
  .svc-block-grid, .svc-block.flip .svc-block-grid { grid-template-columns: 1fr; }
  .svc-block.flip .svc-copy { order: 1; }
  .svc-block.flip .svc-anim { order: 2; }
}

/* ───────── Explainer SVG container (services) ───────── */
.explainer {
  background: linear-gradient(180deg, var(--bone), color-mix(in oklab, var(--paper) 80%, white));
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 1px 0 color-mix(in oklab, white 60%, transparent) inset,
    0 30px 60px -30px color-mix(in oklab, var(--teal) 30%, transparent),
    0 8px 16px -8px color-mix(in oklab, var(--ink) 12%, transparent);
}
.explainer svg { width: 100%; height: auto; display: block; }
.explainer-cap {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px dashed color-mix(in oklab, var(--ink) 16%, transparent);
  font-size: 14px; line-height: 1.55;
  color: var(--ink-2);
}
.explainer-cap strong { color: var(--teal); font-weight: 600; }

/* === Explainer 1: idea → production === */
.expl-idea .card { fill: white; stroke: color-mix(in oklab, var(--ink) 14%, transparent); stroke-width: 1.5; }
.expl-idea .card-idea { fill: color-mix(in oklab, var(--paper) 90%, white); }
.expl-idea .card-prod { fill: white; }
.expl-idea .card-corner { fill: color-mix(in oklab, var(--green) 20%, transparent); }
.expl-idea .card-label { fill: var(--ink-2); font-size: 13px; font-family: "JetBrains Mono", monospace; }
.expl-idea .scribble { fill: none; stroke: color-mix(in oklab, var(--ink) 50%, transparent); stroke-width: 2; stroke-linecap: round; opacity: 0; animation: scribble-in 0.6s var(--ease) forwards; }
.expl-idea .scribble:nth-of-type(2) { animation-delay: 0.1s; }
.expl-idea .scribble:nth-of-type(3) { animation-delay: 0.2s; }
.expl-idea .scribble:nth-of-type(4) { animation-delay: 0.3s; }
.expl-idea .scribble:nth-of-type(5) { animation-delay: 0.4s; }
@keyframes scribble-in { to { opacity: 1; } }

.expl-idea .lane { fill: color-mix(in oklab, var(--teal) 6%, transparent); stroke: color-mix(in oklab, var(--teal) 30%, transparent); }
.expl-idea .lane-track { stroke: color-mix(in oklab, var(--teal) 30%, transparent); stroke-width: 2; stroke-dasharray: 4 4; }
.expl-idea .stage circle { fill: white; stroke: var(--teal); stroke-width: 2; }
.expl-idea .stage text { fill: var(--teal); font-family: "JetBrains Mono", monospace; font-size: 14px; font-weight: 600; }
.expl-idea .stage-label { fill: var(--ink-2); font-size: 10px; font-family: "JetBrains Mono", monospace; }
.expl-idea .packet { fill: var(--green); filter: drop-shadow(0 0 6px color-mix(in oklab, var(--green) 70%, transparent)); animation: packet-run 4s var(--ease) infinite; }
@keyframes packet-run {
  0%   { transform: translateX(220px); opacity: 0; }
  10%  { opacity: 1; }
  25%  { transform: translateX(245px); }
  50%  { transform: translateX(300px); }
  75%  { transform: translateX(355px); }
  90%  { transform: translateX(390px); opacity: 1; }
  100% { transform: translateX(410px); opacity: 0; }
}
.expl-idea .prod-row { fill: color-mix(in oklab, var(--teal) 18%, transparent); transform-origin: left center; transform: scaleX(0); animation: row-grow 0.6s var(--ease) forwards; }
.expl-idea .prod-row.r1 { animation-delay: 1.0s; }
.expl-idea .prod-row.r2 { animation-delay: 1.15s; }
.expl-idea .prod-row.r3 { animation-delay: 1.3s; }
@keyframes row-grow { to { transform: scaleX(1); } }
.expl-idea .dot-ok { fill: var(--green); opacity: 0; animation: dot-pop 0.4s var(--ease) forwards; }
.expl-idea .dot-ok.d1 { animation-delay: 1.6s; }
.expl-idea .dot-ok.d2 { animation-delay: 1.75s; }
.expl-idea .dot-ok.d3 { animation-delay: 1.9s; }
@keyframes dot-pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.expl-idea .health { fill: var(--ink-2); font-size: 12px; font-family: "JetBrains Mono", monospace; }
.expl-idea .uptime { stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 200; stroke-dashoffset: 200; animation: line-draw 1.4s var(--ease) 2.0s forwards; }
@keyframes line-draw { to { stroke-dashoffset: 0; } }
.expl-idea .beam { stroke-dasharray: 230; stroke-dashoffset: 230; animation: beam-draw 1.6s var(--ease) 0.4s forwards; }
@keyframes beam-draw { to { stroke-dashoffset: 0; } }

/* === Explainer 2: AI platform === */
.expl-platform .conn {
  stroke: color-mix(in oklab, var(--teal) 30%, transparent);
  stroke-width: 1.5;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: line-draw 1.2s var(--ease) forwards;
}
.expl-platform .pulse { fill: var(--green); filter: drop-shadow(0 0 5px color-mix(in oklab, var(--green) 80%, transparent)); offset-rotate: 0deg; }
.expl-platform .pulse-0 { offset-path: path("M 300 180 L 128 82");  animation: pulse-travel 2.4s var(--ease) infinite; }
.expl-platform .pulse-1 { offset-path: path("M 300 180 L 128 302"); animation: pulse-travel 2.4s var(--ease) 0.4s infinite; }
.expl-platform .pulse-2 { offset-path: path("M 300 180 L 508 82");  animation: pulse-travel 2.4s var(--ease) 0.8s infinite; }
.expl-platform .pulse-3 { offset-path: path("M 300 180 L 508 302"); animation: pulse-travel 2.4s var(--ease) 1.2s infinite; }
@keyframes pulse-travel {
  0%   { offset-distance: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.expl-platform .hub-glow { fill: color-mix(in oklab, var(--green) 12%, transparent); animation: hub-pulse 3s ease-in-out infinite; transform-origin: 300px 180px; }
@keyframes hub-pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.expl-platform .hub-ring { fill: none; stroke: color-mix(in oklab, var(--green) 50%, transparent); stroke-width: 1.5; stroke-dasharray: 4 4; animation: spin-slow 18s linear infinite; transform-origin: 300px 180px; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.expl-platform .hub-core { fill: var(--teal); }
.expl-platform .hub-label { fill: white; font-size: 22px; font-weight: 700; font-family: "Inter", sans-serif; letter-spacing: -0.02em; }
.expl-platform .hub-sub { fill: color-mix(in oklab, white 75%, transparent); font-size: 11px; font-family: "JetBrains Mono", monospace; letter-spacing: 0.12em; text-transform: uppercase; }
.expl-platform .tool { opacity: 0; animation: tool-in 0.5s var(--ease) forwards; }
@keyframes tool-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.expl-platform .tool-bg { fill: white; stroke: color-mix(in oklab, var(--ink) 14%, transparent); stroke-width: 1.5; }
.expl-platform .tool-icon path { stroke: var(--teal); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.expl-platform .tool-label { fill: var(--ink-2); font-size: 11px; font-family: "JetBrains Mono", monospace; letter-spacing: 0.06em; text-transform: uppercase; }
.expl-platform .bar-label, .expl-platform .bar-pct { fill: var(--ink-2); font-size: 12px; font-family: "JetBrains Mono", monospace; letter-spacing: 0.06em; }
.expl-platform .bar-pct { fill: var(--green); font-weight: 600; }
.expl-platform .bar-track { fill: color-mix(in oklab, var(--ink) 8%, transparent); }
.expl-platform .bar-fill { fill: var(--green); width: 0; animation: bar-grow 2s var(--ease) 1s forwards; }
@keyframes bar-grow { to { width: 124px; } }

/* === Explainer 3: use-case === */
.expl-usecase .opps-title { fill: var(--ink); font-size: 13px; font-family: "JetBrains Mono", monospace; letter-spacing: 0.14em; text-transform: uppercase; }
.expl-usecase .opp { opacity: 0; animation: opp-in 0.5s var(--ease) forwards; }
@keyframes opp-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
.expl-usecase .opp-bg { fill: white; stroke: color-mix(in oklab, var(--ink) 12%, transparent); stroke-width: 1; }
.expl-usecase .opp-label { fill: var(--ink-2); font-size: 12px; font-family: "Inter", sans-serif; }
.expl-usecase .score-bar { fill: var(--teal); width: 0; animation: score-grow 0.8s var(--ease) forwards; }
@keyframes score-grow { to { width: calc(var(--score, 0) * 0.8px); } }
.expl-usecase .score-num { fill: var(--teal); font-size: 11px; font-family: "JetBrains Mono", monospace; font-weight: 600; opacity: 0; animation: scribble-in 0.4s var(--ease) forwards; }
.expl-usecase .mag {
  fill: none; stroke: var(--green); stroke-width: 2.5;
  filter: drop-shadow(0 4px 10px color-mix(in oklab, var(--green) 50%, transparent));
  animation: mag-scan 5s ease-in-out infinite;
}
.expl-usecase .mag-lens { fill: color-mix(in oklab, var(--green) 6%, transparent); }
.expl-usecase .mag-handle { stroke-linecap: round; }
@keyframes mag-scan {
  0%   { transform: translate(160px, 70px); }
  20%  { transform: translate(160px, 110px); }
  40%  { transform: translate(160px, 150px); }
  60%  { transform: translate(160px, 190px); }
  80%  { transform: translate(160px, 230px); }
  100% { transform: translate(160px, 70px); }
}
.expl-usecase .pilot-bg { fill: white; stroke: color-mix(in oklab, var(--teal) 30%, transparent); stroke-width: 1.5; }
.expl-usecase .pilot-title { fill: var(--ink); font-size: 16px; font-weight: 600; }
.expl-usecase .pilot-sub { fill: var(--teal); font-size: 12px; font-family: "JetBrains Mono", monospace; }
.expl-usecase .pilot-divider { stroke: color-mix(in oklab, var(--ink) 12%, transparent); stroke-width: 1; }
.expl-usecase .metric-label { fill: var(--ink-2); font-size: 11px; font-family: "JetBrains Mono", monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.expl-usecase .metric-value { fill: var(--green); font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
.expl-usecase .metric-line { stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 220; stroke-dashoffset: 220; animation: line-draw 2s var(--ease) 1.5s forwards; }
.expl-usecase .metric-dot { fill: var(--green); opacity: 0; animation: dot-pop 0.4s var(--ease) 3.4s forwards; }
.expl-usecase .check-bg { fill: var(--green); }
.expl-usecase .check-mark { stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 22; stroke-dashoffset: 22; animation: line-draw 0.5s var(--ease) 3.6s forwards; }
.expl-usecase .check { transform-origin: 540px 100px; transform: scale(0); animation: check-pop 0.4s var(--ease) 3.4s forwards; }
@keyframes check-pop { to { transform: scale(1); } }

/* ───────── Process grid (services + home) ───────── */
.home-process-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.home-process-grid::before {
  content: ""; position: absolute;
  top: 32px; left: 5%; right: 5%; height: 2px;
  background: repeating-linear-gradient(90deg, color-mix(in oklab, var(--teal) 35%, transparent) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.home-process-card {
  background: var(--bone);
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative; z-index: 1;
}
.home-process-num {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  background: var(--ink); color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; font-weight: 600;
  border-radius: 50%;
  margin-bottom: 20px;
}
.home-process-card h3 {
  font-size: 22px; line-height: 1.15; letter-spacing: -0.018em;
  margin: 0 0 12px; color: var(--ink); font-weight: 600;
}
.home-process-card p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0;
}
@media (max-width: 900px) {
  .home-process-grid { grid-template-columns: repeat(2, 1fr); }
  .home-process-grid::before { display: none; }
}
@media (max-width: 560px) {
  .home-process-grid { grid-template-columns: 1fr; }
}

/* ───────── FAQ grid ───────── */
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 56px;
}
.faq-card {
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 14px;
  padding: 32px;
}
.faq-card h3 {
  font-size: 18px; font-weight: 600; line-height: 1.3;
  margin: 0 0 12px; color: var(--ink); letter-spacing: -0.01em;
}
.faq-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2); margin: 0;
}
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   ABOUT page
   ════════════════════════════════════════════════════════════════ */

.about-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 96px;
}
.about-stat {
  padding: 32px;
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 14px;
}
.about-stat .num {
  display: block;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 0.9;
  color: var(--teal);
}
.about-stat .num small {
  font-size: 0.34em; font-weight: 500; opacity: 0.7;
  margin-left: 6px; letter-spacing: 0; color: var(--ink-2);
}
.about-stat .lbl {
  display: block; margin-top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 760px) { .about-stat-row { grid-template-columns: 1fr; } }

.body-large {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 56ch;
  text-wrap: pretty;
  color: color-mix(in oklab, currentColor 80%, transparent);
}

.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about-story-grid .story-headline {
  display: flex; flex-direction: column; gap: 18px;
  align-items: flex-start;
}
.about-story-grid .story-h {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  display: flex; flex-direction: column; gap: 4px;
}
.about-story-grid .story-h .line { display: block; }
.about-story-grid .story-h .teal-line {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  padding-bottom: 0.18em;
}
.about-story-grid .story-h .brush-stroke {
  position: absolute;
  left: -2%; right: -2%;
  bottom: -0.04em;
  width: 104%;
  height: 0.32em;
  color: var(--green);
  opacity: 0.85;
  pointer-events: none;
  overflow: visible;
}
.about-story-grid .story-h .brush-stroke path {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  filter: drop-shadow(0 1px 0 color-mix(in oklab, var(--green) 30%, transparent));
}
.about-story-grid .story-h .teal-line.reveal {
  /* The .reveal class is only used to trigger IntersectionObserver here;
     the visual animation is the brush-stroke draw, not a fade-up. */
  opacity: 1;
  transform: none;
  transition: none;
}
.about-story-grid .story-h .teal-line.in .brush-stroke path {
  animation: brush-draw 1.1s var(--ease) 0.9s forwards;
}
@keyframes brush-draw { to { stroke-dashoffset: 0; } }
.about-story-grid .story-text strong { color: var(--teal); font-weight: 600; }
@media (max-width: 760px) {
  .about-story-grid { grid-template-columns: 1fr; align-items: start; }
  .about-story-grid .story-h .brush-stroke { height: 0.28em; }
}

.principles-light {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 64px;
}
.principle-light {
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 14px;
  padding: 36px;
  position: relative;
}
.principle-light .num {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--green);
  padding: 6px 12px;
  background: color-mix(in oklab, var(--green) 12%, transparent);
  border-radius: 999px;
  margin-bottom: 20px;
}
.principle-light h3 {
  font-size: 28px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 14px; color: var(--ink); font-weight: 600;
}
.principle-light p {
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink-2); margin: 0;
}
@media (max-width: 760px) { .principles-light { grid-template-columns: 1fr; } }

.h-display .green-deep { color: var(--green); }

/* ════════════════════════════════════════════════════════════════
   /start/ — picker + service intake forms
   ════════════════════════════════════════════════════════════════ */

.start-hero {
  padding: 156px 0 64px;
  background:
    radial-gradient(80% 60% at 80% 0%, color-mix(in oklab, var(--green) 10%, transparent), transparent 60%),
    radial-gradient(60% 60% at 0% 30%, color-mix(in oklab, var(--teal) 14%, transparent), transparent 60%),
    var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.start-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, color-mix(in oklab, var(--ink) 8%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; opacity: 0.4;
}
.start-hero .wrap { position: relative; z-index: 2; }

.start-crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.start-crumb a {
  border-bottom: 1px solid color-mix(in oklab, var(--teal) 30%, transparent);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.start-crumb a:hover { color: var(--green); border-color: var(--green); }
.start-crumb .sep { opacity: 0.5; }

.start-h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1; letter-spacing: -0.03em;
  font-weight: 700; margin: 0 0 20px;
  color: var(--ink); text-wrap: balance;
  max-width: 22ch;
}
.start-h1 .green { color: var(--green); }
.start-h1 .teal  { color: var(--teal); }
.start-lede {
  font-size: 18px; line-height: 1.55;
  color: color-mix(in oklab, var(--ink) 78%, transparent);
  max-width: 56ch; margin: 0;
  text-wrap: pretty;
}

/* ── Picker grid (start/index.html) ── */
.start-picker {
  background: var(--paper);
  padding: clamp(64px, 10vw, 120px) 0;
}
.start-picker-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.start-card {
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.start-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--green) 50%, transparent);
  box-shadow: 0 24px 48px -24px color-mix(in oklab, var(--teal) 30%, transparent);
}
.start-card .num {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.18em; font-weight: 600;
  color: var(--green);
  padding: 6px 12px;
  background: color-mix(in oklab, var(--green) 12%, transparent);
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 20px;
}
.start-card h3 {
  font-size: 22px; line-height: 1.2; letter-spacing: -0.018em;
  margin: 0 0 12px; color: var(--ink); font-weight: 600;
  text-wrap: balance;
}
.start-card p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 24px;
  flex: 1;
}
.start-card .pick {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--teal);
  align-self: flex-start;
  border-bottom: 1px solid color-mix(in oklab, var(--teal) 30%, transparent);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.start-card:hover .pick { color: var(--green); border-color: var(--green); gap: 14px; }
@media (max-width: 900px) { .start-picker-grid { grid-template-columns: 1fr; } }

/* ── Form section (each /start/<service>.html) ── */
.start-form-section {
  background: var(--paper-2);
  padding: clamp(48px, 8vw, 96px) 0 clamp(96px, 14vw, 160px);
}
.start-form-shell {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 24px 60px -32px color-mix(in oklab, var(--teal) 30%, transparent);
}
.start-form-shell .form-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); font-weight: 600;
}
.start-form-shell h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15; letter-spacing: -0.02em; font-weight: 700;
  margin: 8px 0 8px;
}
.start-form-shell .form-intro {
  font-size: 15.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0 0 28px;
  text-wrap: pretty;
}

.form-grid {
  display: grid; gap: 18px;
}
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 500;
}
.form-row label .req { color: var(--green); margin-left: 2px; }
.form-row .hint {
  font-size: 12.5px; color: color-mix(in oklab, var(--ink) 55%, transparent);
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="url"],
.form-row textarea,
.form-row select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
  padding: 12px 14px;
  border: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  background: var(--bone);
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form-row textarea { min-height: 96px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--green) 18%, transparent);
}
.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #B23A3A;
  box-shadow: 0 0 0 3px rgba(178, 58, 58, 0.18);
}
.form-row .err {
  display: none;
  font-size: 12.5px; color: #B23A3A;
}
.form-row[data-error="true"] .err { display: block; }

/* Radio / checkbox groups */
.choice-group {
  display: grid; gap: 8px;
}
.choice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  border: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
  background: var(--bone);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  font-size: 14.5px;
  color: var(--ink-2);
}
.choice input { accent-color: var(--green); margin-top: 3px; }
.choice:hover { border-color: color-mix(in oklab, var(--green) 50%, transparent); background: white; }
.choice:has(input:checked) {
  border-color: var(--green);
  background: color-mix(in oklab, var(--green) 8%, white);
  color: var(--ink);
}
.choice-group.row { grid-auto-flow: column; grid-auto-columns: 1fr; gap: 8px; }
@media (max-width: 600px) { .choice-group.row { grid-auto-flow: row; grid-auto-columns: auto; } }

/* Submit */
.form-actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px dashed color-mix(in oklab, var(--ink) 14%, transparent);
}
.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-size: 14.5px; font-weight: 600;
  border: none; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.form-submit:hover:not(:disabled) {
  background: var(--green); color: var(--ink);
  transform: translateY(-2px);
}
.form-submit:disabled { opacity: 0.5; cursor: progress; }
.form-actions .privacy {
  font-size: 12.5px; color: var(--ink-2);
  max-width: 32ch;
}

/* Status banners */
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  display: none;
}
.form-status.show { display: block; }
.form-status.error {
  background: rgba(178, 58, 58, 0.08);
  border: 1px solid rgba(178, 58, 58, 0.4);
  color: #8B2A2A;
}

/* Success replacement state */
.form-success {
  display: none;
  text-align: center;
  padding: clamp(24px, 5vw, 48px) 0;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px;
  display: inline-grid; place-items: center;
  background: color-mix(in oklab, var(--green) 18%, transparent);
  border-radius: 50%;
  margin-bottom: 24px;
}
.form-success .check svg { width: 32px; height: 32px; color: var(--teal); }
.form-success h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 12px; color: var(--ink);
}
.form-success p {
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink-2); margin: 0 auto 24px;
  max-width: 50ch;
}
.form-success .next {
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}

/* Honeypot — hidden from users + assistive tech, visible to bots */
.form-pot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* Turnstile widget container */
.cf-turnstile { min-height: 65px; display: block; margin: 4px 0 0; }

