/* ==========================================================================
   ReachFlare Comp Inc. — "The Reach Deck"
   Ink + frost + reach aqua. Oxanium / Epilogue / Share Tech Mono.
   Surface system: never set background and color independently.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;600&family=Oxanium:wght@700;800&family=Share+Tech+Mono&display=swap');

:root {
  --ink: #000000;
  --slate: #050608;
  --panel: #0A0B0F;
  --card: #0D0F14;
  --frost: #ECEEF2;
  --aqua: #00ADB5;
  --aqua-glow: rgba(0, 173, 181, 0.4);
  --steel: #8A919C;
  --hair: rgba(240, 242, 245, 0.1);
  --hair-aqua: rgba(0, 173, 181, 0.22);
  --idx-navy: #5A7299;
  --idx-navy-soft: rgba(90, 114, 153, 0.72);
  --navy-deep: #2E4568;
  --navy-watermark: rgba(46, 69, 104, 0.62);
  --navy-bright: #7A9FD4;
  --hair-dk: rgba(0, 0, 0, 0.4);
  --pad: clamp(64px, 8vw, 120px);
  --edge: clamp(20px, 5vw, 72px);
  --maxw: 1180px;
  --img-max: 380px;
  --radius: 8px;
  --disp: 'Oxanium', system-ui, sans-serif;
  --body: 'Epilogue', system-ui, sans-serif;
  --mono: 'Share Tech Mono', ui-monospace, monospace;
  --header-h: 72px;
  --rail-w: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 17.5px);
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(0, 173, 181, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(0, 173, 181, 0.04), transparent),
    linear-gradient(180deg, #000 0%, #030405 100%);
  color: var(--frost);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(0, 173, 181, 0.35); color: var(--frost); }
img { max-width: 100%; display: block; background: var(--slate); }
a { color: currentColor; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--disp); font-weight: 800; line-height: 1.04; letter-spacing: -0.015em; margin: 0 0 0.5em; }
h1 { font-size: clamp(48px, 7.4vw, 88px); }
h2 { font-size: clamp(30px, 4.2vw, 54px); font-weight: 700; }
h3 { font-size: clamp(21px, 2.1vw, 27px); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; max-width: 68ch; }
strong { font-weight: 600; }

/* ---- Surfaces (paired bg + text) — full dark theme ---- */
.surface-ink {
  background: var(--ink);
  color: var(--frost);
}
.surface-frost {
  background: var(--panel);
  color: var(--frost);
}
.surface-slate {
  background: var(--slate);
  color: var(--frost);
  border-block: 1px solid var(--hair);
  box-shadow: inset 0 1px 0 rgba(0, 173, 181, 0.06);
}
.surface-aqua {
  background: linear-gradient(135deg, var(--aqua), #00c4cd);
  color: var(--ink);
}

/* ---- Layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--edge); }
section { padding-block: var(--pad); position: relative; }
section.surface-ink + section.surface-slate,
section.surface-slate + section.surface-ink {
  border-top: 1px solid var(--hair-aqua);
}
.eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 18px;
  display: block;
}
.surface-frost .eyebrow { color: var(--aqua); }
.lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; max-width: 60ch; color: inherit; opacity: 0.9; }
.hair { height: 1px; background: var(--hair); border: 0; margin: 0; }
.surface-frost .hair { background: var(--hair-dk); }

.eyebrow-wipe { position: relative; padding-bottom: 16px; }
.eyebrow-wipe::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--hair);
  transform: scaleX(1);
  transform-origin: left;
}
.js .eyebrow-wipe::after { transform: scaleX(0); transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .eyebrow-wipe.is-visible::after { transform: scaleX(1); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-primary {
  background: var(--aqua);
  color: var(--ink);
  border-color: var(--aqua);
  box-shadow: 0 4px 20px rgba(0, 173, 181, 0.25);
}
.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 36px rgba(0, 173, 181, 0.35);
  transform: translateY(-2px);
}
.btn:focus-visible { outline: 2px solid var(--aqua); outline-offset: 3px; }
.btn-ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn-ghost:hover { filter: brightness(1.15); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25); }
.btn-aqua { background: var(--aqua); color: var(--ink); border-color: var(--aqua); }
.btn-aqua:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---- Header / nav ---- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.site-head.is-transparent {
  background: transparent;
  color: var(--frost);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-head.is-transparent .btn-primary { background: rgba(0, 173, 181, 0.92); color: var(--ink); border-color: var(--aqua); }
.site-head.is-sticky {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--frost);
  border-bottom: 1px solid var(--hair-aqua);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
}
.site-head.is-sticky .nav a[aria-current="page"]::after { background: var(--aqua); }
.site-head.is-sticky .btn-primary { background: var(--aqua); color: var(--ink); border-color: var(--aqua); }
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--edge);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--disp); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; opacity: 0.86; position: relative; padding: 4px 0; }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--aqua);
}
.nav .btn { padding: 11px 20px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
}

/* reach rail (inner pages, right side) */
.reach-rail {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--rail-w);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid var(--hair);
  pointer-events: none;
}
.reach-rail .rail-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--steel);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.reach-rail .rail-ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reach-rail .rail-ticks li {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--steel);
  opacity: 0.55;
}
.reach-rail .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); opacity: 0.8; }
@media (max-width: 1100px) { .reach-rail { display: none; } }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: clamp(480px, 76vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) contrast(1.05) brightness(0.78);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.96) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent 55%, rgba(0, 173, 181, 0.1) 100%);
  mix-blend-mode: screen;
}
.hero-top { position: relative; z-index: 3; padding-top: 76px; }
.hero-top .row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-top .row .r { color: var(--aqua); }
.hero-body {
  position: relative;
  z-index: 3;
  padding-block: 2vh 4vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 40px;
  align-items: end;
}
.hero-body h1 { max-width: 15ch; }
.hero-body h1 .aq { color: var(--aqua); }
.hero-sub { max-width: 540px; color: var(--frost); opacity: 0.86; font-size: clamp(17px, 1.4vw, 20px); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-trust {
  position: relative;
  z-index: 3;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  padding-block: 20px;
  border-top: 1px solid var(--hair);
  letter-spacing: 0.06em;
}

/* ---- Reach arc (signature motif) ---- */
.reach-arc {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  border-left: 1px solid var(--hair);
  padding-left: 18px;
  min-height: 320px;
}
.reach-arc .cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.arc-wrap { position: relative; flex: 1; min-height: 180px; display: flex; align-items: center; justify-content: center; }
.arc-svg { width: 120px; height: 120px; }
.arc-track { fill: none; stroke: rgba(240, 242, 245, 0.1); stroke-width: 6; stroke-linecap: round; }
.arc-fill {
  fill: none;
  stroke: url(#arcGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188;
  stroke-dashoffset: 0;
}
.js .arc-fill { stroke-dashoffset: 188; }
.js .reach-arc.is-visible .arc-fill { stroke-dashoffset: 0; transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 0.8, 0.3, 1); }
.arc-labels { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.arc-labels li { list-style: none; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--frost); }
.arc-labels li span { color: var(--aqua); margin-right: 8px; }

@media (max-width: 820px) {
  .hero { min-height: 84vh; }
  .hero-body { grid-template-columns: 1fr; }
  .reach-arc {
    flex-direction: row;
    align-items: center;
    border-left: 0;
    border-top: 1px solid var(--hair);
    padding: 20px 0 0;
    min-height: 0;
  }
  .arc-wrap { min-height: 80px; flex: none; }
}

/* ---- Generic sections ---- */
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .lead { color: var(--steel); }
.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-block: 1px solid var(--hair-aqua);
  padding-block: 40px;
}
.metric {
  padding: 24px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.metric:hover {
  border-color: var(--hair-aqua);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.metric .n {
  font-family: var(--mono);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 46px);
  background: linear-gradient(135deg, var(--aqua), #4dd4db);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.metric .l { color: var(--steel); font-size: 14px; margin-top: 10px; max-width: 26ch; }
@media (max-width: 620px) { .metrics { grid-template-columns: 1fr; gap: 22px; } }

.stage {
  position: relative;
  padding: 52px 26px 34px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 173, 181, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.stage:hover {
  transform: translateY(-4px);
  border-color: var(--hair-aqua);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 24px rgba(0, 173, 181, 0.08);
}
.stage .num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--mono);
  font-size: 72px;
  color: var(--navy-watermark);
  font-weight: 500;
  pointer-events: none;
  line-height: 1;
  text-shadow: 0 0 40px rgba(58, 90, 140, 0.25);
}
.grid.g-4:has(.stage) { padding-top: 12px; }
.stage:hover .num { color: rgba(74, 105, 150, 0.78); }
.stage h3 { margin-top: 6px; }
.stage .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--navy-bright);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.stage:hover .tag { color: #94B8E8; }

.rail { display: grid; gap: 0; border-top: 1px solid var(--hair); }
.rail .item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 34px 24px;
  border-bottom: 1px solid var(--hair);
  position: relative;
  background: transparent;
  transition: background 0.25s ease;
}
.rail .item:hover {
  background: rgba(0, 173, 181, 0.03);
}
.rail .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--aqua);
  transform: scaleY(0.18);
  transform-origin: top;
  transition: transform 0.5s ease;
}
.rail .item:hover::before { transform: scaleY(1); }
.rail .idx {
  font-family: var(--mono);
  font-size: 34px;
  color: var(--idx-navy-soft);
  font-weight: 500;
  padding-left: 14px;
}
.rail .item:hover .idx { color: var(--idx-navy); }
.rail .item p { margin: 0; }
.rail .price { font-family: var(--mono); font-size: 13px; color: var(--steel); white-space: nowrap; }
@media (max-width: 720px) { .rail .item { grid-template-columns: 1fr; gap: 12px; } .rail .idx { padding-left: 14px; } }

.panel {
  position: relative;
  border: 1px solid var(--hair-aqua);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  background: var(--card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.panel:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 173, 181, 0.45);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.6), 0 0 32px rgba(0, 173, 181, 0.1);
}
.panel img { width: 100%; height: auto; max-height: var(--img-max); object-fit: cover; aspect-ratio: 4/3; }
.panel.tall img { aspect-ratio: 3/4; max-height: 420px; }
.panel .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--frost);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), transparent);
}
.figrow { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: stretch; }
@media (max-width: 820px) { .figrow { grid-template-columns: 1fr; } }

.case {
  padding: 28px 24px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.case:hover {
  transform: translateY(-3px);
  border-color: var(--hair-aqua);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 173, 181, 0.06);
}
.case .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--aqua); text-transform: uppercase; }

.faq details { border-bottom: 1px solid var(--hair); padding: 20px 0; transition: background 0.2s ease; }
.faq details:hover {
  background: rgba(0, 173, 181, 0.04);
  padding-inline: 16px;
  margin-inline: -16px;
  border-radius: var(--radius);
  border-bottom-color: var(--hair-aqua);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 19px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--aqua); font-size: 24px; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 16px; }

.form { display: grid; gap: 18px; max-width: 640px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.field input, .field textarea, .field select {
  font-family: var(--body);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--frost);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color-scheme: dark;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: rgba(0, 173, 181, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.18);
}
.surface-frost .field label { color: var(--steel); }
.surface-frost .field input, .surface-frost .field textarea, .surface-frost .field select {
  background: var(--card);
  color: var(--frost);
  border-color: var(--hair);
}
.field textarea { min-height: 150px; resize: vertical; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--steel); line-height: 1.55; }
.consent input { margin-top: 4px; accent-color: var(--aqua); flex: none; }
.consent a { color: var(--frost); text-decoration: underline; text-underline-offset: 3px; }
.consent a:hover { color: var(--aqua); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-block { padding-block: clamp(48px, 7vw, 88px); }
.contact-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 72px); align-items: start; }
.contact-form-col h2, .contact-studio-col h2 { margin-bottom: 24px; }
.contact-form-col .form { max-width: none; }
.contact-studio { font-style: normal; font-size: 16px; line-height: 1.85; color: var(--frost); }
.contact-studio a { color: var(--frost); opacity: 0.92; }
.contact-studio a:hover { color: var(--aqua); opacity: 1; }
.contact-figure { margin: 28px 0 0; border: 1px solid var(--hair-aqua); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.contact-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.contact-figure figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 12px 16px;
  border-top: 1px solid var(--hair);
  background: var(--slate);
}
.contact-note { margin-top: 22px; font-size: 14px; line-height: 1.7; color: var(--steel); max-width: 44ch; }
@media (max-width: 820px) { .contact-split { grid-template-columns: 1fr; gap: 48px; } }

.cta-band {
  text-align: center;
  padding-block: clamp(56px, 9vw, 108px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(0, 173, 181, 0.14), transparent 65%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0.5;
}
.surface-ink.cta-band,
.surface-slate.cta-band,
.surface-aqua.cta-band {
  background: linear-gradient(180deg, #000 0%, var(--slate) 50%, #000 100%);
  color: var(--frost);
  border-block: 1px solid var(--hair-aqua);
}
.surface-aqua.cta-band .btn-ghost { border-color: var(--frost); color: var(--frost); }
.surface-aqua.cta-band .btn-ghost:hover { border-color: var(--aqua); color: var(--aqua); }
.cta-band h2 { max-width: 18ch; margin-inline: auto; position: relative; z-index: 1; }
.cta-band .lead { position: relative; z-index: 1; }
.cta-band .hero-cta { justify-content: center; position: relative; z-index: 1; }

.site-foot {
  border-top: 1px solid var(--hair-aqua);
  background: #000;
  box-shadow: inset 0 1px 0 rgba(0, 173, 181, 0.08);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: 64px; }
.foot-grid h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}
.foot-grid a { display: block; padding: 5px 0; opacity: 0.86; font-size: 15px; }
.foot-grid a:hover { opacity: 1; color: var(--aqua); }
.foot-legal { font-size: 13px; color: var(--steel); line-height: 1.7; }
.foot-bottom {
  border-top: 1px solid var(--hair);
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.foot-disc { font-size: 12.5px; color: var(--steel); max-width: none; padding-bottom: 40px; line-height: 1.7; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 560px;
  margin-inline: auto;
  background: var(--card);
  color: var(--frost);
  border: 1px solid var(--hair-aqua);
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(0, 173, 181, 0.08);
}
.cookie p { font-size: 14px; margin-bottom: 16px; }
.cookie .row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 11px 18px; font-size: 14px; }
.cookie-opts { margin-top: 12px; font-size: 13px; color: var(--steel); }
.cookie[hidden] { display: none; }

.page-hero {
  padding-top: 130px;
  padding-bottom: clamp(40px, 6vw, 72px);
  background: radial-gradient(ellipse 100% 80% at 50% -30%, rgba(0, 173, 181, 0.07), transparent 55%);
}
.page-hero h1 { font-size: clamp(38px, 5.2vw, 66px); }
.page-hero .lead { margin-top: 18px; }

.prose { max-width: 76ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose .updated { font-family: var(--mono); font-size: 13px; color: var(--steel); }

.mt0 { margin-top: 0; }
.center { text-align: center; }
.pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 6px 12px;
  color: var(--aqua);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .arc-fill { stroke-dashoffset: 0; }
  .js .eyebrow-wipe::after { transform: scaleX(1); }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 96px 28px 28px;
    background: var(--card);
    color: var(--frost);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.75);
    border-left: 1px solid var(--hair-aqua);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 18px; padding: 10px 0; opacity: 1; }
  .nav .btn { margin-top: 12px; }
}
