@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Fallback";
  src: local("Arial");
  size-adjust: 97%;
  ascent-override: 94%;
  descent-override: 24%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  size-adjust: 101%;
  ascent-override: 93%;
  descent-override: 24%;
  line-gap-override: 0%;
}

:root {
  --bg: #000000;
  --surface: #101418;
  --text: #F5F7FA;
  --muted: #A7B0BA;
  --brand: #0077BE;
  --accent: #39B8FF;
  --harvard: #B5203A;
  --brand-pressed: #0066A3;
  --border: #343E48;
  --control: #647585;
  --danger: #FF8A8A;
  --success: #6AD5AE;
  --accent-soft: rgba(57, 184, 255, .18);
  --display: "Archivo", "Archivo Fallback", "Arial Narrow", Arial, sans-serif;
  --sans: "Inter", "Inter Fallback", Arial, sans-serif;
  --mono: "JetBrains Mono", Consolas, monospace;
  --content: 1200px;
  --reading: 65ch;
  --radius-sm: 6px;
  --radius-md: 8px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-28: 112px;
  --ease-premium: cubic-bezier(.25,1,.5,1);
  --gutter: 48px;
  --header-h: 80px;
}

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

html {
  background: #000000;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

html.lenis,
html.lenis body { scroll-behavior: auto !important; }

html.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: #000000;
  color: var(--text);
  font: 400 18px/1.6 var(--sans);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

/* Blue starfield behind every page. assets/js/stars.js builds the points; the
   twinkle is CSS so an idle page costs nothing. Content sits above it. */
.starfield { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; contain: layout paint; }
.star { position: absolute; left: var(--x); top: var(--y); width: var(--s); height: var(--s); border-radius: 50%; background: var(--c); opacity: var(--o0); animation: star-twinkle var(--dur) ease-in-out var(--delay) infinite; }
.star--glow { box-shadow: 0 0 7px var(--c), 0 0 14px var(--c); }
@keyframes star-twinkle { 0%, 100% { opacity: var(--o0); } 50% { opacity: var(--o1); } }
main, .site-footer { position: relative; z-index: 1; }
html.motion-off .star, html.reveal-safe .star { animation: none; opacity: var(--o1); transform: none !important; }
@media (prefers-reduced-motion: reduce) { .star { animation: none; opacity: var(--o1); transform: none !important; } }
@media print { .starfield { display: none !important; } }

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
p { max-width: var(--reading); margin: 0 0 1.1em; color: var(--muted); }
strong { color: var(--text); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-180%);
  transition: transform .35s var(--ease-premium);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--border);
  background: #000000;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
  color: var(--brand);
  font: 600 17px/1 var(--sans);
  text-decoration: none;
  letter-spacing: -.02em;
  transition: color .35s var(--ease-premium);
}

.wordmark::before { content: none; }

.wordmark:hover { color: var(--accent); }

.site-nav { justify-self: center; }
.site-nav ul { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); margin: 0; padding: 0; list-style: none; }
.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .35s var(--ease-premium);
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-premium);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: color .3s var(--ease-premium);
  font: 500 14px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.availability__dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent-soft);
  animation: availability-pulse 2.2s infinite;
}
@keyframes availability-pulse { 55% { box-shadow: 0 0 0 8px var(--accent-soft); } 100% { box-shadow: 0 0 0 12px transparent; } }
.availability:hover, .availability:focus-visible { color: var(--text); outline: none; }
.availability:hover .availability__dot { background: var(--text); }

/* ---- "Available now" contact popup ---- */
.contact-gate { position: fixed; inset: 0; z-index: 390; display: grid; place-items: center; padding: 1.2rem; background: rgba(0,0,0,.56); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; transition: opacity .35s var(--ease-premium); }
.contact-gate[hidden] { display: none !important; }
.contact-gate.on { opacity: 1; }
.contact-gate__panel { position: relative; width: 100%; max-width: 640px; text-align: center; color: var(--text); text-shadow: 0 2px 18px rgba(0,0,0,.85); }
.contact-gate__k { display: flex; justify-content: center; align-items: center; gap: 12px; margin: 0 0 1.1rem; color: var(--muted); font: 500 12px/1.4 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.contact-gate__k::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.contact-gate__panel h2 { margin: 0 0 1.6rem; font: 600 clamp(1.7rem, 1.1rem + 2.6vw, 2.8rem)/1.08 var(--sans); letter-spacing: -.02em; }
.contact-gate__panel h2 em { font-style: normal; color: var(--accent); }
/* Focus words: the things a visitor should notice. Blue, upright, a touch heavier so they never read as links. */
.kw, .prose .kw { font-style: normal; color: var(--accent); font-weight: 600; }
.contact-gate__choices { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-gate__card { display: block; padding: 1.4rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(16,20,24,.86); color: var(--text); text-decoration: none; text-shadow: none; transition: border-color .25s var(--ease-premium), transform .25s var(--ease-premium), box-shadow .25s var(--ease-premium); }
.contact-gate__card:hover, .contact-gate__card:focus-visible { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 18px 44px -20px rgba(57,184,255,.6); outline: none; }
.contact-gate__card .tag { display: block; margin: 0 0 .7rem; color: var(--accent); font: 500 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.contact-gate__card b { display: block; margin: 0 0 .4rem; font: 600 clamp(1.05rem, .9rem + .6vw, 1.35rem)/1.2 var(--sans); overflow-wrap: anywhere; }
.contact-gate__card span:last-child { display: block; color: var(--muted); font: 400 14px/1.5 var(--sans); }
.contact-gate__fine { margin: 1.3rem 0 0; color: var(--muted); font: 400 13px/1.5 var(--sans); }
.contact-gate__link { padding: 0; border: 0; background: none; color: var(--accent); font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.contact-gate__close { position: absolute; top: -8px; right: 0; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; background: #000; color: var(--text); font: 400 20px/1 var(--sans); cursor: pointer; transition: border-color .25s var(--ease-premium); }
.contact-gate__close:hover { border-color: var(--accent); }
@media (max-width: 620px) { .contact-gate__choices { grid-template-columns: 1fr; } }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--control);
  border-radius: var(--radius-sm);
  background: #000;
  color: var(--text);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }

.btn {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid var(--control);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: 600 16px/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: color .4s var(--ease-premium), background-color .4s var(--ease-premium), border-color .4s var(--ease-premium), transform .4s var(--ease-premium);
}
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -90%;
  width: 42%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  transition: left .55s var(--ease-premium);
}
.btn:hover::after { left: 135%; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { border-color: var(--brand); background: var(--brand); color: #fff; }
.btn--primary:hover { border-color: var(--accent); background: var(--accent); color: #000; }
.btn--primary:active { border-color: var(--brand-pressed); background: var(--brand-pressed); color: #fff; transform: none; }
.btn--ghost { background: #000; }
.btn--ghost:hover { border-color: var(--accent); }
.btn--small { min-height: 44px; padding: 0 16px; font-size: 14px; }
.link-arrow { display: inline-flex; align-items: center; gap: 9px; color: var(--text); text-decoration: none; }
.link-arrow::after { content: "↗"; color: var(--accent); transition: transform .35s var(--ease-premium); }
.link-arrow:hover::after { transform: translate(3px,-3px); }

.shell { width: min(100%, var(--content)); margin-inline: auto; padding-inline: var(--gutter); }
.section {
  position: relative;
  min-height: 60vh;
  padding-block: var(--space-28);
  border-top: 1px solid var(--border);
}
.section--compact { min-height: auto; padding-block: clamp(64px, 8vw, 112px); }
.section__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .45fr); gap: clamp(32px, 7vw, 120px); align-items: end; margin-bottom: clamp(48px, 7vw, 104px); }
.section__index, .eyebrow, .mono-label {
  color: var(--muted);
  font: 500 14px/1.35 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--muted); }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
h1, h2, h3 { margin: 0; color: var(--text); font-family: var(--sans); }
h1 { font-size: 56px; line-height: 1.05; letter-spacing: -.03em; }
h2 { font-size: 40px; line-height: 1.15; letter-spacing: -.03em; font-weight: 600; }
h3 { font-size: 24px; line-height: 1.25; letter-spacing: -.02em; font-weight: 600; }
.lede { max-width: 680px; color: var(--muted); font-size: clamp(19px, 2vw, 25px); line-height: 1.48; }
.max-copy { max-width: 760px; }

[data-reveal] { opacity: 0; transform: translateY(34px); }
.reveal-safe [data-reveal],
html.motion-off [data-reveal],
html.no-js [data-reveal] { opacity: 1; transform: none; }

.rule-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.rule-list li { display: grid; grid-template-columns: 42px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.rule-list__num { color: var(--accent); font: 500 14px/1.5 var(--sans); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; min-height: 36px; align-items: center; padding: 8px 12px; border: 1px solid var(--border); color: var(--muted); font: 400 14px/1 var(--sans); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform .3s var(--ease-premium), border-color .3s var(--ease-premium);
}
.card:hover { transform: translateY(-2px); }
.card::before { content: ""; position: absolute; top: -1px; left: 0; width: min(110px, 30%); height: 1px; background: var(--accent); }

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(72px, 9vw, 130px) var(--gutter) 46px;
  border-top: 1px solid var(--border);
  background: #000;
}
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .7fr .7fr; gap: 44px; width: min(100%, var(--content)); margin: 0 auto 130px; }
.footer-title { max-width: 720px; font: 650 clamp(38px, 6vw, 82px)/.96 var(--sans); letter-spacing: -.045em; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 10px; }
.footer-links a, .copy-email { color: var(--muted); font-size: 15px; transition: color .35s var(--ease-premium); }
.footer-links a:hover, .copy-email:hover { color: var(--text); }
.copy-email { padding: 0; border: 0; background: none; text-decoration: underline; cursor: pointer; }
.footer-meta { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 14px 28px; width: min(100%, var(--content)); margin: auto auto 0; color: var(--muted); font: 400 14px/1.5 var(--sans); text-transform: uppercase; letter-spacing: .08em; }
.footer-watermark { position: absolute; left: -1vw; bottom: -4vw; color: transparent; font: 800 clamp(100px, 18vw, 300px)/.8 var(--sans); font-stretch: 125%; letter-spacing: -.07em; white-space: nowrap; -webkit-text-stroke: 1px rgba(245,247,250,.09); user-select: none; }

.motion-toggle {
  position: relative;
  min-height: 36px;
  margin-left: auto;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #000;
  color: var(--muted);
  font: 500 14px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: border-color .35s var(--ease-premium), color .35s var(--ease-premium);
}
.motion-toggle:hover { border-color: var(--accent); color: var(--text); }

.hover-image-preview { position: fixed; z-index: 110; top: 0; left: 0; width: 230px; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--border); background: var(--surface); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-premium); }
.hover-image-preview.is-visible { opacity: 1; }
.hover-image-preview img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .45s; animation-timing-function: var(--ease-premium); }


/* ---- logo wall: home rows (marquee per vertical) + work grid ---- */
.logos-home { overflow: hidden; }
.logo-wall { display: grid; }
.logo-wall--rows { border-top: 1px solid var(--border); }
.logo-row { display: grid; grid-template-columns: 220px minmax(0, 1fr); align-items: center; gap: 28px; min-height: 96px; border-bottom: 1px solid var(--border); }
.logo-row__label { display: flex; align-items: baseline; gap: 12px; margin: 0; color: var(--muted); font: 500 13px/1.5 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.logo-row__count { color: var(--control); font: 400 12px/1 var(--mono); letter-spacing: 0; }
.logo-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.logo-marquee__track { display: flex; width: max-content; animation: logo-scroll calc(var(--n, 8) * 4.4s) linear infinite; }
.logo-marquee--reverse .logo-marquee__track { animation-direction: reverse; }
.logo-marquee:hover .logo-marquee__track, .logo-marquee:focus-within .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__item, .logo-static .logo-marquee__item { display: grid; place-items: center; flex: none; height: 96px; padding: 0 30px; }
.logo-static { display: flex; flex-wrap: wrap; align-items: center; margin-left: -32px; }
.logo-wall img { display: block; width: auto; max-width: 190px; height: 48px; object-fit: contain; opacity: .74; transition: opacity .35s var(--ease-premium), transform .35s var(--ease-premium); }
.logo-wall img[src$=".svg"] { filter: brightness(0) invert(1); }
.logo-marquee__item:hover img, .logo-item:hover img { opacity: 1; transform: translateY(-2px); }
.logo-group { padding: 26px 0 8px; border-top: 1px solid var(--border); }
.logo-group__label { margin: 0 0 22px; color: var(--muted); font: 500 13px/1.5 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.logo-group__items { display: flex; flex-wrap: wrap; gap: 28px 44px; align-items: center; margin-bottom: 20px; }
.logo-item { display: grid; place-items: center; height: 56px; }
.logo-empty { min-height: 120px; padding: 20px; border: 1px dashed var(--muted); color: var(--muted); font: 400 14px/1.5 var(--sans); }
@keyframes logo-scroll { to { transform: translate3d(-50%, 0, 0); } }
html.motion-off .logo-marquee__track, html.reveal-safe .logo-marquee__track { animation: none; }
@media (max-width: 980px) {
  .logo-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0 6px; }
  .logo-row__label { padding-left: 0; }
  .logo-static { margin-left: -20px; }
  .logo-marquee__item, .logo-static .logo-marquee__item { height: 84px; padding: 0 20px; }
  .logo-wall img { height: 40px; max-width: 150px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
  .logo-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}

@media (pointer:fine) and (hover:hover) {
  html.has-cursor, html.has-cursor body, html.has-cursor a, html.has-cursor button { cursor: none; }
  html.has-cursor input, html.has-cursor textarea, html.has-cursor select { cursor: text; }
  .cursor-dot, .cursor-ring { position: fixed; z-index: 999; top: 0; left: 0; pointer-events: none; opacity: 0; will-change: transform; }
  .cursor-dot { width: 6px; height: 6px; margin: -3px; border-radius: 50%; background: var(--text); }
  .cursor-ring { width: 34px; height: 34px; margin: -17px; border: 1px solid var(--accent); border-radius: 50%; transition: width .35s var(--ease-premium), height .35s var(--ease-premium), margin .35s var(--ease-premium), background-color .35s var(--ease-premium), opacity .35s var(--ease-premium); }
  .cursor-ring.is-active { width: 56px; height: 56px; margin: -28px; background: var(--accent-soft); }
}

@media (max-width: 1060px) {
  :root { --header-h: 72px; --gutter: 32px; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-nav { position: fixed; inset: var(--header-h) 0 auto; padding: 32px var(--gutter) 42px; border-bottom: 1px solid var(--border); background: #000; transform: translateY(-130%); visibility: hidden; transition: transform .22s var(--ease-premium), visibility .22s; }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav ul { align-items: flex-start; flex-direction: column; }
  .site-nav a { font-size: 22px; }
  .nav-toggle { display: block; justify-self: end; }
  .header-actions .btn { display: none; }
  .header-actions { justify-self: end; }
  .section__head { grid-template-columns: 1fr; }
  .section { padding-block: var(--space-20); }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; --gutter: 20px; }
  body::before { display: none; }
  .site-header { gap: 12px; }
  .availability { display: none; }
  .footer-grid { grid-template-columns: 1fr; margin-bottom: 96px; }
  .footer-meta { flex-direction: column; }
  .site-footer { min-height: 580px; }
  .section { min-height: auto; }
  .section { padding-block: var(--space-16); }
  .wordmark { min-width: 0; font-size: 16px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

label { display: block; margin-bottom: var(--space-2); color: var(--text); font-weight: 600; }
input, textarea, select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--control);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  transition: border-color .15s ease, background-color .15s ease;
}
textarea { min-height: 140px; resize: vertical; }
input:focus-visible, textarea:focus-visible, select:focus-visible { border-color: var(--accent); outline: 2px solid var(--accent); outline-offset: 0; }
.field-error { color: var(--danger); }
.field-success { color: var(--success); }

/* Lead forms (markup: build/forms.mjs · handler: assets/js/forms.js · endpoint: POST /api/lead) */
.lead-panel { padding: clamp(22px, 3vw, 32px); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.prose > .lead-panel { margin: 42px 0; }
.lead-form { display: grid; gap: 18px; margin: 0; }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.lead-form__grid .field--full { grid-column: 1 / -1; }
.field { display: grid; gap: 6px; margin: 0; }
.field label { margin: 0; font-size: 15px; }
.field textarea { min-height: 112px; }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field__hint { margin: 0; color: var(--muted); font: 400 13px/1.5 var(--sans); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.lead-form__actions .btn { margin: 0; }
.lead-form__status { margin: 0; color: var(--muted); font: 400 15px/1.5 var(--sans); }
.lead-form__status:empty { display: none; }
.lead-form__status:focus { outline: none; }
.lead-form__status.field-error { color: var(--danger); }
.lead-form__status.field-success { color: var(--success); }
.lead-form[aria-busy="true"] button[type="submit"] { opacity: .65; cursor: progress; }
.lead-form.is-sent .field, .lead-form.is-sent .lead-form__grid, .lead-form.is-sent .lead-form__actions, .lead-form.is-sent .hp { display: none; }
.lead-form.is-sent .lead-form__status { color: var(--text); font: 500 clamp(17px, 1.1rem + .4vw, 20px)/1.5 var(--sans); }
.lead-form.is-sent .lead-form__status::before { content: ""; display: block; width: 28px; height: 2px; margin-bottom: 14px; background: var(--accent); }
.contact-gate__card--button { width: 100%; font: inherit; text-align: center; cursor: pointer; }
@media (max-width: 720px) {
  .lead-form__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .availability__dot { box-shadow: none; }
  .btn::after { display: none; }
}

@media print {
  body { color: #000; background: #fff; }
  .site-header, .site-footer, .motion-toggle, body::before { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
