/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-tint: #f6f6f3;
  --ink: #121212;
  --ink-2: #3a3a38;
  --muted: #6d6d69;
  --line: #e6e6e1;
  --line-2: #d6d6d0;
  --lime: #c6f135;
  --lime-2: #e6fa9e;
  --lime-ink: #5b7a00;
  --dark: #0d0d0c;
  --dark-2: #161615;
  --dark-line: rgba(255,255,255,.09);
  --dark-muted: rgba(255,255,255,.58);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Young Serif", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1160px;
  --shadow: 0 1px 2px rgba(20,20,20,.04), 0 12px 32px -16px rgba(20,20,20,.16);
  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--dark); color: var(--ink);
  font: 16px/1.6 var(--font); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.1; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5.1vw, 4.1rem); letter-spacing: -0.02em; line-height: 1.04; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 400; letter-spacing: -0.01em; }
ul, ol { padding: 0; margin: 0; list-style: none; }
svg { display: block; }
.mono { font-family: var(--mono); font-size: .74rem; letter-spacing: 0; color: var(--muted); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px;
  font-family: var(--mono); font-size: .74rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px var(--lime-2); flex: none; }
.dot--pulse { animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(198,241,53,.7); } 70% { box-shadow: 0 0 0 9px rgba(198,241,53,0); } 100% { box-shadow: 0 0 0 0 rgba(198,241,53,0); } }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 58ch; line-height: 1.65; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; pointer-events: none; }
.progress span { display: block; height: 100%; width: 100%; background: var(--lime); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  font: 500 .95rem/1 var(--font); cursor: pointer; white-space: nowrap; will-change: transform;
  transition: background .2s, border-color .2s, color .2s, box-shadow .25s, transform .3s var(--ease);
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #000; box-shadow: 0 0 0 5px rgba(198,241,53,.35); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { padding: 9px 16px; font-size: .875rem; }
.btn--lg { padding: 15px 24px; font-size: 1rem; }
.btn--block { width: 100%; padding: 15px 20px; }
.btn:disabled { opacity: .6; cursor: default; }
.btn .arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; padding: 12px 0; transition: padding .3s var(--ease);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 60px;
  padding: 0 10px 0 18px; border-radius: 999px;
  background: rgba(255,255,255,.72); border: 1px solid rgba(20,20,20,.06);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 8px 30px -18px rgba(0,0,0,.25);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav--dark .nav__inner { background: rgba(22,22,21,.72); border-color: var(--dark-line); color: #fff; }
.nav--dark .nav__links { color: var(--dark-muted); }
.nav--dark .nav__links a:hover { color: #fff; }
.nav--dark .btn--primary { background: var(--lime); color: var(--ink); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font); font-weight: 600; font-size: 1rem; letter-spacing: -0.015em; }
.brand__mark { flex: none; border-radius: 7px; }
.brand--sm { font-size: .95rem; }
.nav__links { display: flex; gap: 28px; font-size: .9rem; color: var(--ink-2); }
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px; background: currentColor; transition: right .3s var(--ease); }
.nav__links a:hover::after { right: 0; }

/* ---------- Hero (dark) ---------- */
.hero {
  position: sticky; top: 0; z-index: 0; margin-top: -84px; padding: 148px 0 0; min-height: 100vh; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--dark); color: #fff;
}
main > :not(.hero) { position: relative; z-index: 1; }
.hero__copy, .globe canvas { will-change: transform; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(900px 600px at 30% 30%, #000 10%, transparent 75%);
          mask-image: radial-gradient(900px 600px at 30% 30%, #000 10%, transparent 75%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(520px circle at var(--mx, 30%) var(--my, 40%), rgba(198,241,53,.16), transparent 60%);
  transition: background-position .2s;
}
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; will-change: transform; transform: translateZ(0); }
.blob--a { width: 560px; height: 560px; left: -160px; top: -120px; background: rgba(198,241,53,.22); animation: drift 18s ease-in-out infinite alternate; }
.blob--b { width: 480px; height: 480px; right: 6%; bottom: -160px; background: rgba(120,160,255,.14); animation: drift 22s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(80px, 60px) scale(1.15); } }
.sweep { position: absolute; top: -10%; left: -10%; width: 50vw; height: 120%; pointer-events: none; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(198,241,53,.11), transparent 70%);
  filter: blur(40px); will-change: transform; animation: sweep 28s ease-in-out infinite alternate; }
@keyframes sweep { from { transform: translateX(-10vw); } to { transform: translateX(45vw); } }
.grain { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }
@keyframes grain { 0% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); } 40% { transform: translate(2%,-4%); } 60% { transform: translate(-4%,-1%); } 80% { transform: translate(3%,3%); } 100% { transform: translate(0,0); } }
.contact .grain { position: absolute; }

.hero__grid { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: center; width: 100%; min-height: 640px; padding-bottom: 40px; }
.hero__copy { position: relative; z-index: 1; max-width: 620px; }
.hero .eyebrow { color: var(--lime); }
.hero .lead { color: var(--dark-muted); max-width: 58ch; }
.hero__copy h1 { margin-bottom: 26px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 20px; }
.hero .btn--primary { background: var(--lime); color: var(--ink); }
.hero .btn--primary:hover { background: #d7fa4f; box-shadow: 0 0 0 6px rgba(198,241,53,.18); }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.hero .btn--ghost:hover { border-color: #fff; }
.hero__note { font-size: .875rem; color: var(--dark-muted); }

/* Split-word headline */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform .9s var(--ease), opacity .6s; transition-delay: var(--d, 0s); }
.split.in .w > span { transform: none; opacity: 1; }
.hero__copy > :not(h1) { opacity: 0; transform: translateY(14px); animation: rise .9s var(--ease) forwards; }
.hero__copy > .eyebrow { animation-delay: .1s; }
.hero__copy > .lead { animation-delay: .7s; }
.hero__copy > .hero__cta { animation-delay: .85s; }
.hero__copy > .hero__note { animation-delay: 1s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Globe: full-bleed horizon rising out of the bottom of the hero */
/* Desktop: a huge globe anchored top-right, escaping the top and right edges of the viewport; the copy sits over its left side */
.hero__visual { position: absolute; inset: 0; z-index: 0; overflow: visible; pointer-events: none; }
.globe { position: absolute; right: calc(50% - 50vw - 6vw); top: calc(-18vw + 25px); bottom: -25px; width: auto; height: auto; aspect-ratio: 1; opacity: 0; animation: rise 1.8s var(--ease) .3s forwards; }
.globe canvas { width: 100%; height: 100%; contain: layout paint size; mix-blend-mode: screen; transform: translateY(var(--py, 0)) scale(var(--ps, 1)); transform-origin: 50% 50%; } /* WebGL paints black outside the sphere; screen makes it transparent */
.hero__visual::after { content: ""; position: absolute; left: calc(50% - 50vw); right: calc(50% - 50vw); top: -40vw; bottom: 0; pointer-events: none;
  background:
    linear-gradient(90deg, var(--dark) 30%, rgba(13,13,12,.6) 50%, transparent 70%),
    linear-gradient(to bottom, transparent 92%, var(--dark) 100%); }

/* Logo cards: two rows drifting in opposite directions */
.logos-band { background: var(--dark); }
.logos { position: relative; padding: 36px 0 44px; overflow: hidden; }
.logos__label { margin: 0 0 24px; text-align: center; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--dark-muted); }
.logos__row { display: flex; width: max-content; margin-bottom: 12px; animation: marquee 70s linear infinite; will-change: transform; }
.logos__row--reverse { animation-direction: reverse; margin-left: -120px; }
.logos:hover .logos__row { animation-play-state: paused; }
.logos__list { display: flex; gap: 16px; padding-right: 16px; }
.logos__list li {
  display: grid; place-items: center; width: auto; padding: 0 22px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.06);
  transition: background .3s, border-color .3s;
}
.logos__list li:hover { background: rgba(255,255,255,.08); border-color: rgba(198,241,53,.35); }
.logos__list span { font-weight: 600; font-size: .9rem; letter-spacing: -0.01em; color: rgba(255,255,255,.88); white-space: nowrap; }
.logos::before, .logos::after { content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 1; pointer-events: none; }
.logos::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.logos::after { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { border-bottom: 1px solid var(--line); background: var(--bg); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 28px 34px 0; border-right: 1px solid var(--line); }
.stat:not(:first-child) { padding-left: 28px; }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.stat > span { font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* ---------- Statement (scroll fill) ---------- */
.statement { padding: 112px 0; background: var(--bg); }
.statement p { margin: 0 auto; max-width: 980px; font-family: var(--display); font-size: clamp(1.5rem, 3.1vw, 2.5rem); line-height: 1.25; letter-spacing: -0.015em; font-weight: 400; text-align: center; text-wrap: balance; }
.statement .w { color: var(--ink); opacity: .16; transition: opacity .25s linear; }
.statement .w.on { opacity: 1; }
.statement .w.on.hl { color: var(--lime-ink); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; background: var(--bg); }
.section--tint { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section__head .lead { margin: 18px auto 0; }
.section__head--left { text-align: left; margin: 0; }
.section__head--left .lead { margin-left: 0; }

/* Services cards with spotlight */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .4s var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .35s;
  background: radial-gradient(360px circle at var(--x, 50%) var(--y, 50%), rgba(198,241,53,.22), transparent 45%);
}
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-3px); }
.card:hover::after { opacity: 1; }
.card__icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--lime-2); border: 1px solid transparent;
  display: grid; place-items: center; margin-bottom: 22px;
}
.card__icon svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.card__top .card__icon { margin-bottom: 0; }
.scene { width: 180px; height: 72px; color: var(--lime-ink); }
.scene rect, .scene circle { fill: var(--line-2); }
.scene--org .scene__links path { stroke: var(--line-2); stroke-dasharray: 80; stroke-dashoffset: 80; }
.scene--org .scene__nodes circle { transform-origin: center; transform-box: fill-box; transform: scale(0); }
.scene--org .scene__nodes circle:first-child { fill: var(--ink); }
.in .scene--org .scene__links path { animation: draw80 .9s var(--ease) forwards; }
.in .scene--org .scene__nodes circle { animation: pop .5s var(--ease) forwards; }
.in .scene--org .scene__links path:nth-child(2), .in .scene--org .scene__nodes circle:nth-child(3) { animation-delay: .15s; }
.in .scene--org .scene__links path:nth-child(3), .in .scene--org .scene__nodes circle:nth-child(4) { animation-delay: .3s; }
.in .scene--org .scene__links path:nth-child(4), .in .scene--org .scene__nodes circle:nth-child(5) { animation-delay: .45s; }
.in .scene--org .scene__nodes circle:nth-child(2) { animation-delay: .05s; }
.in .scene--org .scene__nodes circle:nth-child(n+2) { fill: var(--lime); }
@keyframes draw80 { to { stroke-dashoffset: 0; } }
@keyframes pop { to { transform: scale(1); } }
.scene--list .scene__ticks path { stroke: var(--lime-ink); stroke-dasharray: 20; stroke-dashoffset: 20; }
.scene--list .scene__strikes path { stroke: var(--ink); opacity: .5; transform: scaleX(0); transform-origin: left; }
.in .scene--list .scene__ticks path { animation: draw20 .5s var(--ease) .9s forwards; }
.in .scene--list .scene__ticks path:nth-child(2) { animation-delay: 1.4s; }
.in .scene--list .scene__strikes path { animation: strike .5s var(--ease) 1.9s forwards; }
.in .scene--list .scene__strikes path:nth-child(2) { animation-delay: 2.2s; }
.in .scene--list .scene__rows rect:nth-child(2), .in .scene--list .scene__rows rect:nth-child(4) { fill: var(--lime-2); transition: fill .4s 1s; }
@keyframes draw20 { to { stroke-dashoffset: 0; } }
@keyframes strike { to { transform: scaleX(1); } }
.scene--code .scene__lines rect { transform: scaleX(0); transform-origin: left; }
.scene--code .scene__lines rect:nth-child(2) { fill: var(--lime-2); }
.in .scene--code .scene__lines rect { animation: typeline .7s var(--ease) forwards; }
.in .scene--code .scene__lines rect:nth-child(2) { animation-delay: .5s; }
.in .scene--code .scene__lines rect:nth-child(3) { animation-delay: 1s; }
.in .scene--code .scene__lines rect:nth-child(4) { animation-delay: 1.5s; }
.scene--code .scene__cursor { fill: var(--ink); animation: blink 1s steps(2) infinite; }
@keyframes typeline { to { transform: scaleX(1); } }
@keyframes blink { 50% { opacity: 0; } }
.scene--scan .scene__doc { fill: #fff; stroke: var(--line-2); }
.scene--scan .scene__beam { fill: var(--lime); opacity: 0; }
.scene--scan .scene__badge circle { fill: var(--lime); transform: scale(0); transform-origin: center; transform-box: fill-box; }
.scene--scan .scene__badge path { stroke: var(--ink); stroke-dasharray: 24; stroke-dashoffset: 24; }
.in .scene--scan .scene__beam { animation: scan 2.2s ease-in-out .3s 1 forwards; }
.in .scene--scan .scene__badge circle { animation: pop .5s var(--ease) 2.4s forwards; }
.in .scene--scan .scene__badge path { animation: draw20 .4s var(--ease) 2.8s forwards; }
.in .scene--scan .scene__doclines rect:nth-child(3) { fill: var(--lime-2); transition: fill .3s 1.6s; }
@keyframes scan { 0% { opacity: .9; transform: translateY(0); } 90% { opacity: .9; transform: translateY(50px); } 100% { opacity: 0; transform: translateY(50px); } }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .95rem; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 20px; }
.tags li { font-size: .74rem; font-weight: 500; padding: 4px 10px; border-radius: 999px; background: var(--bg-tint); border: 1px solid var(--line); color: var(--ink-2); }

/* Who we work with */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.col { position: relative; padding: 36px; border-right: 1px solid var(--line); transition: background .3s; }
.col:hover { background: #fcfcfa; }
.col:last-child { border-right: 0; }
.col__icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--lime-2); display: grid; place-items: center; margin-bottom: 40px;
}
.col__icon svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.col h3 { margin-bottom: 12px; }
.col p { color: var(--muted); font-size: .95rem; margin: 0; }
.col::before { content: ""; position: absolute; left: 36px; right: 36px; top: 0; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: 0 50%; transition: transform .5s var(--ease); }
.col:hover::before { transform: scaleX(1); }

/* Steps with drawing line */
.steps { position: relative; list-style: none; padding: 0; margin: 0 auto; max-width: 780px; }
.steps__line { position: absolute; left: 27px; top: 50px; height: 0; width: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.steps__line span { display: block; width: 100%; height: 100%; background: var(--lime); transform-origin: 50% 0; transform: scaleY(var(--p, 0)); }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding: 30px 0; }
.step__marker { display: flex; justify-content: center; align-items: flex-start; }
.step__marker span {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; position: relative; z-index: 1;
  background: #fff; color: var(--ink); border: 2px solid var(--line-2);
  transition: background .4s, color .4s, border-color .4s, transform .4s var(--ease);
}
.step__marker svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step.on .step__marker span { background: var(--ink); color: var(--lime); border-color: var(--ink); transform: scale(1.06); }
.step h3 { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; font-size: 1.35rem; }
.step__meta { font-weight: 400; }
.step p { color: var(--muted); margin: 0; max-width: 62ch; }

/* FAQ */
.faq__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 0; font-weight: 500; position: relative; font-size: 1.05rem; transition: color .2s; }
.faq summary:hover { color: var(--lime-ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 10px; top: 50%; width: 14px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease);
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq__body { overflow: hidden; }
.faq__body p { color: var(--muted); margin: -4px 0 22px; max-width: 62ch; }

/* ---------- Contact (dark) ---------- */
.contact { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.contact > .grain { z-index: 0; }
.contact > .container { z-index: 1; }
.contact::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 400px at 20% 80%, rgba(198,241,53,.12), transparent 60%); }
.contact .eyebrow { color: var(--lime); }
.contact .lead { color: var(--dark-muted); }
.contact__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__grid h2 { margin-bottom: 18px; }
.contact__list { margin: 26px 0; display: grid; gap: 12px; color: rgba(255,255,255,.85); font-size: .95rem; }
.contact__list li { display: flex; align-items: center; gap: 12px; }
.contact__list .dot { box-shadow: 0 0 0 3px rgba(198,241,53,.2); }
.contact__alt { color: var(--dark-muted); font-size: .95rem; }
.contact__alt a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.form { position: relative; background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: var(--radius); padding: 30px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: .85rem; font-weight: 500; margin-bottom: 7px; }
.field em { font-style: normal; color: var(--dark-muted); font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm);
  font: inherit; font-size: .95rem; color: #fff; background: rgba(255,255,255,.04); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field textarea { resize: vertical; min-height: 124px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime); background: rgba(255,255,255,.06); box-shadow: 0 0 0 4px rgba(198,241,53,.15); }
.field--error input, .field--error textarea { border-color: #ff6b6b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin: 4px 0 16px; min-height: 65px; }
.contact .btn--primary { background: var(--lime); color: var(--ink); }
.contact .btn--primary:hover { background: #d7fa4f; box-shadow: 0 0 0 6px rgba(198,241,53,.18); }
.form__status { margin: 14px 0 0; font-size: .9rem; min-height: 1.4em; }
.form__status--error { color: #ff8a8a; }
.form__status--success { color: var(--lime); font-weight: 500; }
.form__status--info { color: var(--dark-muted); }
.form__fine { margin: 10px 0 0; font-size: .8rem; color: var(--dark-muted); }
.btn__spinner { display: none; width: 14px; height: 14px; border: 2px solid rgba(0,0,0,.25); border-top-color: var(--ink); border-radius: 50%; animation: spin .7s linear infinite; }
.form--busy .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__fields { transition: opacity .4s, transform .5s var(--ease); }
.form__done { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }
.form__done h3 { font-size: 1.4rem; margin: 18px 0 6px; }
.form__done p { color: var(--dark-muted); margin: 0; }
.form--sent .form__fields { opacity: 0; transform: translateY(-8px); pointer-events: none; }
.form--sent .form__done { display: flex; }
.check { width: 64px; height: 64px; fill: none; stroke: var(--lime); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.check circle { stroke-dasharray: 160; stroke-dashoffset: 160; animation: draw 1s var(--ease) forwards; }
.check path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .6s var(--ease) .6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Footer */
.footer { background: var(--dark); color: var(--dark-muted); border-top: 1px solid var(--dark-line); padding: 40px 0; font-size: .875rem; }
.footer .brand { color: #fff; }
.footer__inner { display: grid; gap: 10px; }
.footer p { margin: 0; }
.footer a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__legal { font-size: .8rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease-out, transform .55s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .split .w > span, .hero__copy > :not(h1), .globe { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .blob, .logos__row, .dot--pulse { animation: none !important; }
  .statement .w { opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  h1 { font-size: clamp(2.3rem, 9vw, 3.6rem); }
  .hero { padding-top: 132px; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 0; }
  .hero__copy > .lead { font-size: 1.05rem; }
  /* stacked hero: clocks row, then a cropped globe rising out of the bottom edge */
  .hero__grid { min-height: 0; padding-bottom: 0; }
  .hero__copy { max-width: 860px; margin: 0 auto; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { display: none; }
  .hero { position: relative; min-height: 100vh; min-height: 100svh; }
  .sweep { display: none; }
  .hero__bg::after { content: none; } /* no cursor on touch */
  .logos { padding: 20px 0 48px; }
  .logos__row { animation-duration: 110s; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
  .stat:nth-child(even) { padding-left: 24px !important; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .cols { grid-template-columns: 1fr; }
  .col { border-right: 0; border-bottom: 1px solid var(--line); }
  .col:last-child { border-bottom: 0; }
  .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .section__head--left { margin-bottom: 0; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav { padding: 10px 0; }
  .nav__links { display: none; }
  .nav__inner { height: 52px; padding: 0 6px 0 14px; }
  .brand { font-size: .95rem; }
  .hero { margin-top: -72px; padding-top: 112px; }
  .hero__copy h1 { margin-bottom: 18px; }
  .hero__copy > .lead { font-size: 1rem; }
  .hero__cta { flex-direction: column; gap: 10px; margin: 22px 0 14px; }
  .hero__cta .btn { width: 100%; }
  .hero__note { font-size: .8rem; }
  .logos::before, .logos::after { width: 40px; }
  .logos__label { font-size: .66rem; margin-bottom: 16px; }
  .logos__list li { padding: 0 16px; height: 40px; border-radius: 10px; }
  .logos__list span { font-size: .92rem; }
  .logos__row { margin-bottom: 12px; }
  .stat { padding: 18px 16px 18px 0; }
  .stat:nth-child(even) { padding-left: 16px !important; }
  .stat:nth-child(odd) { padding-right: 16px; }
  .stat b { font-size: 1rem; margin-bottom: 6px; }
  .stat > span { font-size: .8rem; }
  .statement { padding: 72px 0; }
  .statement p { font-size: clamp(1.35rem, 6.2vw, 1.8rem); text-align: left; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 32px; text-align: left; }
  .section__head .lead { margin-left: 0; }
  h2 { font-size: clamp(1.7rem, 7.4vw, 2.3rem); }
  .lead { font-size: 1rem; }
  .cards { grid-template-columns: 1fr; gap: 12px; }
  .scene { width: 140px; height: 56px; }
  .card { padding: 22px; }
  .card__icon { margin-bottom: 16px; }
  .col { padding: 22px; }
  .col::before { left: 22px; right: 22px; }
  .col__icon { margin-bottom: 18px; }
  .steps { max-width: none; }
  .step { grid-template-columns: 40px 1fr; gap: 14px; padding: 22px 0; }
  .step__marker span { width: 36px; height: 36px; }
  .step__marker svg { width: 17px; height: 17px; }
  .steps__line { left: 19px; top: 40px; bottom: 40px; }
  .step h3 { font-size: 1.1rem; }
  .faq summary { font-size: .98rem; padding: 18px 36px 18px 0; }
  .faq__body p { font-size: .95rem; }
  .contact__grid { gap: 32px; }
  .contact__list { font-size: .9rem; }
  .form { padding: 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field textarea { font-size: 16px; } /* stops iOS zooming on focus */
  .footer { padding: 32px 0; }
}
