/* ============================================================
   Site Local v2 — Technical / engineered
   Warm-dark base, bold sans, motion-forward
   ============================================================ */

:root {
  /* warm dark base — NOT pure black. Bolden-cool but darker. */
  --bg:        #0d0e10;
  --bg-1:      #131418;
  --bg-2:      #181a1f;
  --bg-3:      #1f2228;
  --line:      #23262d;
  --line-2:    #2e323a;
  --ink:       #f4f3ee;
  --ink-2:     #b9b8b2;
  --ink-3:     #7d7c77;
  --ink-4:     #4a4a47;

  /* signature accent — warm, technical green-ish lime that reads "engineered" */
  --accent:    #C5F84C;
  --accent-ink:#0d0e10;
  --accent-2:  #FF6A3D;       /* warm secondary */

  --font-display: 'Geist', 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body:    'Geist', 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-mono:    'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  --pad-section: 96px;
  --pad-x:       40px;
  --gap:         24px;
  --max:         1360px;
  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        24px;
}

[data-density="comfortable"] { --pad-section: 130px; --gap: 32px; }
[data-density="compact"]     { --pad-section: 64px;  --gap: 16px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ======== Layout ======== */
.shell { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.section {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px;
  background: var(--accent); border-radius: 2px;
}

/* ======== Type — bold sans throughout ======== */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display .acc { color: var(--accent); }
.display .muted { color: var(--ink-3); }

.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.h1 .acc { color: var(--accent); }
.h1 .muted { color: var(--ink-3); }

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h2 .acc { color: var(--accent); }
.h2 .muted { color: var(--ink-3); }

.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}

p { margin: 0; color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }

/* ======== Buttons ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all 220ms cubic-bezier(.2,.6,.2,1);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.btn .arrow { width: 14px; height: 14px; transition: transform 240ms cubic-bezier(.2,.6,.2,1); }
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -10px color-mix(in oklab, var(--accent) 60%, transparent);
}
.btn--ghost {
  background: var(--bg-2);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--bg-3); border-color: var(--ink-3); }

.btn--subtle {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--line-2);
  padding: 10px 16px;
}

.btn--subtle:hover {
  color: var(--ink);
  background: var(--bg-2);
}

/* ======== Header ======== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--ink); }
.brand__mark {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  background: var(--accent);
  color: var(--accent-ink);
  letter-spacing: -0.04em;
}
.brand__name { font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.brand__tag {
  color: var(--ink-3); font-size: 11px;
  padding-left: 12px; border-left: 1px solid var(--line-2); margin-left: 4px; white-space: nowrap;
}
@media (max-width: 1080px) { .brand__tag { display: none; } }

.nav { display: flex; align-items: center; gap: 2px; background: var(--bg-2); border: 1px solid var(--line); padding: 4px; border-radius: 999px; }
.nav__link {
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: -0.005em;
  color: var(--ink-2); transition: all 180ms;
}
.nav__link:hover { color: var(--ink); }
.nav__link--active { background: var(--bg-3); color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__avail {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-2);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg-1);
}
.header__avail .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent); }
  70%  { box-shadow: 0 0 0 8px transparent; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .header__avail { display: none; }
}

/* ======== Hero ======== */
.hero {
  padding-top: 80px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; margin-bottom: 56px;
}
.hero__title { margin: 0; padding: 0; }
.hero__sub {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start;
  margin-top: 56px;
}
.hero__sub p { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 52ch; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 64px;
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
}
.hero__meta-item:last-child { border-right: none; }
.hero__meta-item:not(:first-child) { padding-left: 24px; }
.hero__meta-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.hero__meta-value { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--ink); }

@media (max-width: 900px) {
  .hero__sub { grid-template-columns: 1fr; gap: 32px; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__meta-item { border-bottom: 1px solid var(--line); }
}

/* ======== Hero motion piece — terminal+grid+rotating tag ======== */
.motion-stage {
  position: relative;
  margin-top: 64px;
  height: 460px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}
.motion-stage::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent 75%);
  opacity: 0.55;
}
.motion-stage::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(800px 320px at 80% 30%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 60%),
    radial-gradient(500px 240px at 15% 80%, color-mix(in oklab, var(--accent-2) 10%, transparent), transparent 60%);
}

.ms-marquee {
  position: absolute; left: 0; right: 0; bottom: 28px;
  display: flex; gap: 48px;
  animation: ms-scroll 28s linear infinite;
  white-space: nowrap;
  z-index: 1;
}
.ms-marquee__chunk {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: center; gap: 48px;
}
.ms-marquee__chunk em { font-style: normal; color: var(--accent); }
.ms-marquee__chunk .star {
  width: 36px; height: 36px;
  background: var(--accent);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  flex-shrink: 0;
  animation: spin 6s linear infinite;
}
@keyframes ms-scroll { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ======== Marquee ticker ======== */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  animation: ms-scroll 24s linear infinite;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 20px 32px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.marquee__item em { font-style: normal; color: var(--ink); }
.marquee__dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-3);
  flex-shrink: 0;
}

.ms-terminal {
  position: absolute; top: 28px; left: 28px;
  z-index: 2;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  min-width: 360px;
  backdrop-filter: blur(6px);
}
.ms-terminal__bar { display: flex; gap: 6px; margin-bottom: 12px; }
.ms-terminal__bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line-2);
}
.ms-terminal__line { display: flex; gap: 10px; color: var(--ink-2); }
.ms-terminal__line .p { color: var(--accent); }
.ms-terminal__line .c { color: var(--ink-3); }
.ms-terminal__cursor { background: var(--accent); display: inline-block; width: 7px; height: 14px; vertical-align: -2px; margin-left: 4px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.ms-tag {
  position: absolute; top: 28px; right: 28px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink); padding: 8px 14px;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border: 1px solid var(--line-2); border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ms-tag .live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.ms-orbit {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  border: 1px solid var(--line-2); border-radius: 50%;
  z-index: 1;
  animation: spin 26s linear infinite;
}
.ms-orbit::before, .ms-orbit::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border-radius: 50%; background: var(--accent);
}
.ms-orbit::before { top: -6px; left: 50%; transform: translateX(-50%); }
.ms-orbit::after  { bottom: -6px; left: 50%; transform: translateX(-50%); background: var(--accent-2); }
.ms-orbit-2 {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border: 1px solid var(--line-2); border-radius: 50%;
  z-index: 1;
  animation: spin 38s linear infinite reverse;
  opacity: 0.6;
}
.ms-orbit-2::before {
  content: ""; position: absolute; top: -5px; right: 18%;
  width: 10px; height: 10px; border-radius: 50%; background: var(--ink);
}

@media (max-width: 720px) {
  .motion-stage { height: 380px; }
  .ms-terminal { min-width: 0; right: 28px; font-size: 11px; }
  .ms-orbit { width: 160px; height: 160px; }
  .ms-orbit-2 { width: 260px; height: 260px; }
}

/* ======== Logo cloud / marquee ======== */
.logo-row {
  display: flex; overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-row__track {
  display: flex; gap: 80px;
  align-items: center;
  flex-shrink: 0;
  animation: ms-scroll 36s linear infinite;
  padding: 28px 40px;
}
.logo-row__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-row__item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-3);
}

/* ======== Section headers ======== */
.section-header {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: end; margin-bottom: 72px;
}
.section-header__left { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 900px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; }
}

/* ======== Bento grid (services / value props) ======== */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento__cell {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 240ms, transform 240ms;
}
.bento__cell:hover { border-color: var(--line-2); transform: translateY(-2px); }
.bento__cell--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.bento__cell--accent .kicker { color: color-mix(in oklab, var(--accent-ink) 60%, transparent); }
.bento__cell--dark { background: var(--bg-2); }

.bento__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.bento__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 12px;
}
.bento__body { font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.bento__cell--accent .bento__body { color: color-mix(in oklab, var(--accent-ink) 75%, transparent); }

.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .span-3, .span-2, .span-4, .span-6 { grid-column: span 1; }
}

/* ======== Process — vertical with progress bar ======== */
.process { display: flex; flex-direction: column; }
.process__step {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.6fr;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding-left 280ms cubic-bezier(.2,.6,.2,1);
  position: relative;
}
.process__step:last-child { border-bottom: 1px solid var(--line); }
.process__step::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 320ms cubic-bezier(.2,.6,.2,1);
}
.process__step:hover { padding-left: 24px; }
.process__step:hover::before { transform: scaleX(1); }

.process__num {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.05em;
  padding-top: 10px;
}
.process__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600; letter-spacing: -0.022em;
  line-height: 1.1; margin: 0;
}
.process__tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 4px 10px;
  background: var(--bg-1);
}
.process__body { color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 56ch; padding-top: 6px; }

@media (max-width: 800px) {
  .process__step { grid-template-columns: 1fr; gap: 16px; }
}

/* ======== Stat band ======== */
.statband {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-1);
  overflow: hidden;
}
.statband__cell {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.statband__cell:last-child { border-right: none; }
.statband__num {
  font-family: var(--font-display); font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  color: var(--accent);
}
.statband__num em { font-style: normal; color: var(--ink-3); font-size: 0.55em; vertical-align: super; margin-left: 2px;}
.statband__label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.05em; text-transform: uppercase; }
.statband__body { font-size: 14px; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }

@media (max-width: 900px) {
  .statband { grid-template-columns: repeat(2, 1fr); }
  .statband__cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .statband__cell:nth-child(2n) { border-right: none; }
  .statband__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ======== FAQ ======== */
.faq__item {
  border-bottom: 1px solid var(--line); padding: 28px 0; cursor: pointer;
}
.faq__head { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq__q { font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0; }
.faq__icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: all 240ms;
  flex-shrink: 0;
}
.faq__icon span { width: 12px; height: 1.5px; background: var(--ink-2); position: relative; display: block; }
.faq__icon span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 1.5px; height: 12px; background: var(--ink-2); transform: translate(-50%, -50%); transition: transform 240ms; }
.faq__item--open .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__item--open .faq__icon span,
.faq__item--open .faq__icon span::after { background: var(--accent-ink); }
.faq__item--open .faq__icon span::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  margin-top: 16px; color: var(--ink-2);
  font-size: 15px; line-height: 1.6; max-width: 70ch; display: none;
}
.faq__item--open .faq__a { display: block; animation: pageIn 280ms ease; }

/* ======== Footer ======== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 96px 0 32px;
  background:
    radial-gradient(1100px 360px at 50% -50%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.footer__cta {
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; align-items: end;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--line);
}
.footer__cta h2 { max-width: 16ch; }
.footer__cta p { color: var(--ink-2); margin-top: 18px; max-width: 38ch; }
.footer__bottom {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px; padding-top: 48px;
}
.footer__col h4 {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-3); margin: 0 0 16px; font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__col a { color: var(--ink-2); font-size: 14px; transition: color 180ms; }
.footer__col a:hover { color: var(--accent); }
.footer__legal {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-3); font-family: var(--font-mono); font-size: 11px;
}
@media (max-width: 800px) {
  .footer__cta { grid-template-columns: 1fr; }
  .footer__bottom { grid-template-columns: 1fr 1fr; }
}

/* gigantic word at the very bottom */
.footer__giant {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-2);
  margin: 64px 0 0;
  text-align: center;
  user-select: none;
}

/* ======== Sticky CTA pill ======== */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 12px 30px -10px color-mix(in oklab, var(--accent) 50%, transparent);
  transition: all 220ms;
  cursor: pointer;
}
.sticky-cta:hover { transform: translateY(-2px); }
.sticky-cta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-ink); opacity: 0.55; }
@media (max-width: 700px) { .sticky-cta { display: none; } }

/* ======== Forms ======== */
.form-shell {
  position: relative;
}

.form-shell fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-3); display: flex; justify-content: space-between;
}
.field__label .opt { color: var(--ink-4); text-transform: none; }
.field input,
.field textarea,
.field select {
  width: 100%; padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--ink); font-family: var(--font-display); font-size: 16px;
  outline: none; border-radius: var(--r-sm);
  transition: border-color 220ms, background 220ms;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); background: var(--bg-2); }
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }

.field__input--invalid,
.field__input--invalid:focus {
  border-color: #e36a6a !important;
  box-shadow: 0 0 0 1px color-mix(in oklab, #e36a6a 75%, transparent) inset;
}

.chips--invalid {
  border: 1px solid #e36a6a;
  border-radius: var(--r-sm);
  padding: 10px;
}

.field__error {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #e36a6a;
  visibility: hidden;
}

.field__error--show {
  visibility: visible;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 9px 16px; font-size: 13px; font-weight: 500;
  color: var(--ink-2); font-family: var(--font-display);
  background: var(--bg-1); cursor: pointer; transition: all 180ms;
}
.chip:hover { color: var(--ink); border-color: var(--ink-3); }
.chip--active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.chip:disabled,
.field input:disabled,
.field textarea:disabled,
.field select:disabled,
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--bg) 76%, transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: var(--r-md);
  z-index: 3;
}

.form-overlay__content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.form-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid color-mix(in oklab, var(--ink-3) 60%, transparent);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ======== Page transitions ======== */
.page { animation: pageIn 380ms cubic-bezier(.2,.6,.2,1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======== Service rows ======== */
.svc-row {
  display: grid; grid-template-columns: 0.5fr 1.4fr 1fr auto;
  gap: 32px; padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start; cursor: pointer;
  transition: padding-left 280ms cubic-bezier(.2,.6,.2,1), background 220ms;
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row:hover { padding-left: 24px; background: var(--bg-1); }
.svc-row__name { font-family: var(--font-display); font-size: 38px; font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.svc-row__desc { color: var(--ink-2); font-size: 14px; line-height: 1.55; max-width: 50ch; }
.svc-row__deliv { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.svc-row__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all 280ms;
}
.svc-row:hover .svc-row__arrow { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: rotate(-45deg); }

@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
}

/* ======== Founder portrait card ======== */
.portrait {
  aspect-ratio: 4/5;
  background:
    radial-gradient(120% 80% at 30% 20%, var(--bg-3), var(--bg-1) 70%);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.portrait__noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--line-2) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.4;
  mix-blend-mode: screen;
}
