/* ─────────────────────────────────────────────────────────────
   CenterSet — coming soon page
   Palette pulled from logo: warm black, khaki, slate-blue, off-white
   ───────────────────────────────────────────────────────────── */

:root {
  /* Surfaces */
  --bg-0: #23304e;
  --bg-1: #29375a;
  --bg-2: #2f3f68;
  --bg-3: #364873;
  --line: rgba(184, 174, 145, 0.10);
  --line-strong: rgba(184, 174, 145, 0.22);

  /* Brand */
  --khaki: #b8ae91;
  --khaki-bright: #d4c9a9;
  --khaki-dim: #6e6753;
  --slate: #6c7a9c;
  --slate-bright: #d4c9a9;

  /* Extended palette (engineering brief) */
  --navy-1: #23304E;
  --navy-2: #4a5266;
  --ivory: #FFF8EB;
  --tech-blue: #b8ae91;

  /* Text */
  --fg: #FFF8EB;
  --fg-dim: #FFF8EB;
  --fg-muted: #6f6b62;

  /* Accent (driven by tweaks) */
  --accent: var(--khaki);
  --accent-bright: var(--khaki-bright);
  --accent-glow: rgba(184, 174, 145, 0.35);

  /* Type */
  --sans: 'Poppins', system-ui, sans-serif;
  --mono: 'Poppins', system-ui, sans-serif;
}

[data-accent="slate"] {
  --accent: #8c9ab8;
  --accent-bright: #b6c0d6;
  --accent-glow: rgba(140, 154, 184, 0.35);
}
[data-accent="amber"] {
  --accent: #d99a4e;
  --accent-bright: #f0b96b;
  --accent-glow: rgba(217, 154, 78, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-0);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(184, 174, 145, 0.04), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(108, 122, 156, 0.05), transparent 70%),
    var(--bg-0);
}

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

/* ─────────────────────────────────────────────────────────────
   Page shell
   ───────────────────────────────────────────────────────────── */

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Ambient watermark — a giant, very faint target mark behind the hero */
.bg-watermark {
  position: absolute;
  top: -8%;
  right: -18%;
  width: 75vw;
  max-width: 1100px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  filter: brightness(1.4);
}
.bg-watermark img { width: 100%; height: auto; display: block; }

/* Background "scanlines" — very subtle horizontal grid */
.bg-scan {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(255, 255, 255, 0.012) 3px,
      rgba(255, 255, 255, 0.012) 4px
    );
  z-index: 1;
  opacity: 0;
  transition: opacity .6s;
}
.page[data-scan="true"] .bg-scan { opacity: 1; }

/* Vignette */
.bg-vignette {
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}

/* Drifting grain — gives the dark a tactile feel */
.bg-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ─────────────────────────────────────────────────────────────
   Top bar
   ───────────────────────────────────────────────────────────── */

.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 48px;
  background: rgba(35, 48, 78, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 174, 145, 0.18);
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.topbar-left {
  display: flex;
  align-items: center;
  flex: 1;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  justify-self: start;
}
.brand-logo {
  height: 76px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.topbar-right { display: flex; align-items: center; gap: 24px; }
.statuspill {
  display: none; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--fg-dim);
}
.statuspill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px var(--accent-glow); }
  50%      { opacity: .55; box-shadow: 0 0 0 6px transparent; }
}
.topnav { display: flex; gap: 44px; margin-left: auto; }
.topnav a { color: var(--fg-dim); transition: color .2s; font-size: 19px; font-weight: 700; }
.topnav a:hover { color: var(--accent); }
.topnav a.active-nav { color: var(--accent-bright); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 16.0px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-0);
  background: var(--accent);
  padding: 12px 28px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s, box-shadow .25s, transform .25s;
  box-shadow: 0 8px 20px -8px var(--accent-glow), 0 0 0 1px var(--accent) inset;
}
.nav-cta:hover {
  background: var(--accent-bright);
  box-shadow: 0 12px 28px -8px var(--accent-glow), 0 0 0 1px var(--accent-bright) inset;
}
.nav-cta:active { }

/* ── Mobile navigation menu ── */
.mobile-menu-btn {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
.mobile-menu-btn span {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.mobile-menu-btn span:nth-child(1) { top: 14px; }
.mobile-menu-btn span:nth-child(2) { top: 19px; }
.mobile-menu-btn span:nth-child(3) { top: 24px; }
.mobile-menu-btn.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg-0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.mobile-nav-overlay a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
}
.mobile-nav-overlay a.active-nav { color: var(--accent-bright); }
.mobile-nav-overlay .statuspill { margin-top: 12px; }

@media (max-width: 900px) {
  .mobile-menu-btn { display: block; }
}
body.mobile-nav-open { overflow: hidden; }

/* ─────────────────────────────────────────────────────────────
   Hero — v2: centered text composition above the 3D model stage
   ───────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 32px 48px 64px;
  gap: 56px;
}

/* Centered text block above the model */
.hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 24px auto 8px;
  padding: 0 24px;
}
.hero-text .eyebrow { justify-content: center; }
.hero-text .subline {
  margin-top: 28px;
  max-width: 54ch;
  font-size: 19.5px;
  text-align: center;
}

/* Dual CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Stage holds the silhouette + HUD overlay */
.stage {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 56vh, 720px);
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.stage-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}

/* Concentric rings behind the product, breathing */
.rings {
  position: absolute;
  width: min(78vh, 1100px);
  height: min(78vh, 1100px);
  border-radius: 50%;
  pointer-events: none;
}
.rings > span {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  animation: breathe 9s ease-in-out infinite;
}
.rings > span:nth-child(1) { transform: scale(.30); animation-delay: 0s;   border-color: rgba(184,174,145,.22); }
.rings > span:nth-child(2) { transform: scale(.48); animation-delay: -2s;  border-color: rgba(184,174,145,.16); }
.rings > span:nth-child(3) { transform: scale(.68); animation-delay: -4s;  border-color: rgba(184,174,145,.10); }
.rings > span:nth-child(4) { transform: scale(.88); animation-delay: -6s;  border-color: rgba(184,174,145,.06); border-style: dashed; }
.rings > span:nth-child(5) { transform: scale(1.10); animation-delay: -8s; border-color: rgba(184,174,145,.03); }

@keyframes breathe {
  0%, 100% { opacity: .9; }
  50%      { opacity: .35; }
}

/* The pipe — a long horizontal cylinder behind everything */
.pipe {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: clamp(60px, 9vw, 130px);
  transform: translateY(-50%);
  pointer-events: none;
}
.pipe::before, .pipe::after {
  content: "";
  position: absolute;
  inset: 0;
}
.pipe::before {
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(184, 174, 145, 0.04) 8%,
      rgba(255, 255, 255, 0.05) 18%,
      rgba(0,0,0,0.6) 50%,
      rgba(184, 174, 145, 0.03) 82%,
      transparent 100%
    );
  border-top: 1px solid rgba(184, 174, 145, 0.12);
  border-bottom: 1px solid rgba(184, 174, 145, 0.12);
}
.pipe::after {
  background:
    radial-gradient(ellipse 30% 90% at 50% 50%, rgba(0,0,0,0.55), transparent 70%);
}

/* Product silhouette slot — the centraliser sits here */
.product-slot {
  position: relative;
  width: min(46vh, 640px);
  height: min(46vh, 640px);
  display: grid;
  place-items: center;
  z-index: 3;
}

/* Soft glow behind the product so its outline reads */
.product-slot::before {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 174, 145, 0.10) 0%, transparent 60%);
  filter: blur(8px);
}

/* CSS fallback silhouette — appears until user drops the CAD render */
.silhouette {
  position: relative;
  width: 88%;
  height: 62%;
  border-radius: 14% / 50%;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184,174,145,0.06), transparent 70%),
    linear-gradient(180deg, #15151a 0%, #0c0c10 50%, #15151a 100%);
  border: 1px solid rgba(184, 174, 145, 0.16);
  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(184, 174, 145, 0.04),
    0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden;
}
/* Wavy "blades" hint — repeating soft ridges on the silhouette */
.silhouette::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 8%,
      rgba(184, 174, 145, 0.05) 9%,
      transparent 10%
    );
  mix-blend-mode: screen;
}
.silhouette::after {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 12% / 50%;
  border: 1px solid rgba(184, 174, 145, 0.06);
}

.silhouette-caption {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11.0px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* image-slot styles when user drops a render */
image-slot {
  background: transparent !important;
}

/* HUD: corner brackets + measurement readouts */
.hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.hud-corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--accent);
  opacity: .55;
}
.hud-corner.tl { top: 8%; left: 18%; border-right: none; border-bottom: none; }
.hud-corner.tr { top: 8%; right: 18%; border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: 8%; left: 18%; border-right: none; border-top: none; }
.hud-corner.br { bottom: 8%; right: 18%; border-left: none; border-top: none; }

.hud-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hud-label .tick { width: 18px; height: 1px; background: var(--accent); opacity: .6; }
.hud-label .v { width: 1px; height: 14px; background: var(--accent); opacity: .6; }

.hud-label.top    { top: calc(8% - 22px);    left: 50%; transform: translateX(-50%); flex-direction: column; }
.hud-label.left   { top: 50%; left: calc(18% - 30px);   transform: translateY(-50%); }
.hud-label.right  { top: 50%; right: calc(18% - 30px);  transform: translateY(-50%); flex-direction: row-reverse; }
.hud-label.bottom { bottom: calc(8% - 22px); left: 50%; transform: translateX(-50%); flex-direction: column-reverse; }

.hud-label .val { color: var(--accent); }

/* Scanning sweep line that crosses the stage */
.hud-sweep {
  position: absolute;
  top: 0; bottom: 0; left: 18%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: .55;
  animation: sweep 6s cubic-bezier(.45,.05,.55,.95) infinite;
}
@keyframes sweep {
  0%   { left: 18%; opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .7; }
  100% { left: 82%; opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────
   Headline + signup
   ───────────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14.0px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .dash { width: 24px; height: 1px; background: var(--accent); opacity: .7; }

.headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-top: 16px;
  margin-bottom: 20px;
  text-wrap: balance;
}
.headline--sentence {
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.15;
  color: var(--fg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-text .headline.headline--sentence {
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.15;
  color: var(--fg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.headline em {
  font-style: normal;
  font-weight: 300;
  color: var(--accent);
}

/* Typewriter caret used by <TypedHeadline> */
.headline-caret {
  display: inline-block;
  width: 0.07em;
  height: 0.82em;
  background: var(--accent);
  vertical-align: -0.06em;
  margin-left: 0.05em;
  animation: caret-blink 0.9s steps(2, end) infinite;
  box-shadow: 0 0 12px var(--accent-glow);
}
.headline.typed em .headline-caret {
  margin-left: 0.02em;
}
@keyframes caret-blink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .headline-caret { animation: none; opacity: 0; }
}
.headline .strike {
  position: relative;
  display: inline-block;
}
.headline .strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 54%;
  height: 1.5px;
  background: var(--accent);
  opacity: .9;
}

.subline {
  margin-top: 22px;
  max-width: 62ch;
  color: var(--fg-dim);
  font-size: 18.5px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-tagline {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-style: italic;
  font-size: clamp(17px, 1.3vw, 19px);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(184, 174, 145, 0.4);
  background: rgba(184, 174, 145, 0.08);
}
.section-head h1.tagline-heading,
.section-head h2.tagline-heading {
  color: var(--fg);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: end;
  padding-top: 4px;
}
.hero-bottom-left { max-width: 720px; }

/* ─────────────────────────────────────────────────────────────
   Countdown
   ───────────────────────────────────────────────────────────── */

.countdown {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 80px;
}
.countdown-num {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 48px);
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  font-variant-numeric: tabular-nums;
}
.countdown-num::after {
  content: "";
  position: absolute;
  left: 0; right: 30%;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: .6;
}
.countdown-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─────────────────────────────────────────────────────────────
   Access form — replaces the old JotForm block
   ───────────────────────────────────────────────────────────── */

.access {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 28px 28px 26px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(184, 174, 145, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
/* corner ticks */
.access::before, .access::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--accent);
  opacity: .7;
}
.access::before { top: -1px; left: -1px;  border-right: none; border-bottom: none; }
.access::after  { bottom: -1px; right: -1px; border-left: none;  border-top: none; }

.access-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.access-title {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.access-id {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.access-lede {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 14px 0 6px;
}
.access-sub {
  color: var(--fg-dim);
  font-size: 18.0px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.access-sub strong { color: var(--fg); font-weight: 500; }

/* Step 1 — single email row, full-width input */
.access-step1 {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: border-color .2s, background .2s;
}
.access-step1:focus-within {
  border-color: var(--accent);
  background: rgba(184, 174, 145, 0.04);
}
.access-step1 input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 18px;
  font-size: 17.0px;
  color: var(--fg);
}
.access-step1 input::placeholder { color: var(--fg-muted); }
.access-step1 button {
  background: var(--accent);
  color: #0a0a0d;
  padding: 0 22px;
  font-size: 13.0px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--mono);
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 0 3px 3px 0;
  transition: background .2s, transform .15s;
}
.access-step1 button:hover { background: var(--accent-bright); }
.access-step1 button:active { }
.access-step1 button .arrow { transition: transform .2s; }
.access-step1 button:hover .arrow { }

.access-foot {
  margin-top: 14px;
  font-size: 13.0px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.access-foot .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: .7; }
.access-foot .err { color: #e08a7a; }

/* Step 2 — the qualifying fields */
.access-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  animation: revealFields .4s ease-out both;
}
.access-fields .full { grid-column: 1 / -1; }

@keyframes revealFields {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 16.0px;
  color: var(--fg);
  outline: none;
  font-family: var(--sans);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(184, 174, 145, 0.04);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-dim) 50%),
                    linear-gradient(135deg, var(--fg-dim) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 14px) 50%;
  background-size: 4px 4px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.field select option { background: var(--bg-1); color: var(--fg); }

/* Chip group for "I am a..." */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--fg-dim);
  font-size: 14.0px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--line-strong); color: var(--fg); }
.chip.active {
  border-color: var(--accent);
  background: rgba(184, 174, 145, 0.08);
  color: var(--accent-bright);
}

.access-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}
.access-submit button {
  background: var(--accent);
  color: #0a0a0d;
  padding: 14px 24px;
  font-size: 13.0px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--mono);
  border-radius: 3px;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.access-submit button:hover { background: var(--accent-bright); }
.access-submit .back {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.access-submit .back:hover { color: var(--accent); }

/* Success state */
.access-success {
  text-align: left;
  padding: 8px 0 0;
}
.access-success .check-big {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 22px;
  position: relative;
}
.access-success .check-big::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(184,174,145,0.3);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.access-success h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 8px;
}
.access-success p {
  color: var(--fg-dim);
  font-size: 18.0px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.access-success .ref {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.access-success .ref .val { color: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   Capability strip
   ───────────────────────────────────────────────────────────── */

.capabilities {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cap {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cap-num {
  position: absolute;
  top: -12px;
  left: 0;
  font-family: var(--mono);
  font-size: 15.0px;
  letter-spacing: 0.14em;
  color: var(--tech-blue);
  background: var(--bg-0);
  padding-right: 12px;
}
.cap-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin-bottom: 12px;
}
.cap-body {
  font-size: 18.0px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 36ch;
}

/* ─────────────────────────────────────────────────────────────
   Scroll-reveal animations
   Elements with .reveal-left / .reveal-right / .reveal-up slide in
   when the IntersectionObserver in app.jsx adds the .revealed class.
   ───────────────────────────────────────────────────────────── */

.reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-left  { transform: translate3d(-48px, 0, 0); }
.reveal-right { transform: translate3d( 48px, 0, 0); }
.reveal-up    { transform: translate3d(0, 32px, 0); }

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* prefers-reduced-motion: respect user setting, skip the slide */
@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right, .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pipestrip-scan { animation: none; opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────
   Pipe strip — full-width pipe illustration
   ───────────────────────────────────────────────────────────── */

.pipestrip {
  position: relative;
  z-index: 5;
  padding: 0;
  overflow: hidden;
  background: var(--bg-0);
}

/* Looping scanning line — horizontal accent line at the bottom of the image
   with a bright energy pulse that travels left → right continuously. */
.pipestrip-scan {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  z-index: 4;
  background:
    linear-gradient(to right,
      rgba(184, 174, 145, 0.10) 0%,
      rgba(184, 174, 145, 0.10) 40%,
      rgba(244, 240, 232, 0.95) 50%,
      rgba(184, 174, 145, 0.10) 60%,
      rgba(184, 174, 145, 0.10) 100%);
  background-size: 250% 100%;
  background-repeat: no-repeat;
  background-position: -150% 0;
  animation: pipestrip-sweep 6s linear infinite reverse;
  box-shadow: 0 0 14px var(--accent-glow);
}
@keyframes pipestrip-sweep {
  0%   { background-position: -150% 0; }
  100% { background-position: 250% 0; }
}

.pipestrip-bg {
  display: none;
}

.pipestrip-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  /* Source is dark-on-white. Invert so white→black (matches page), pipe→light.
     Then heavily dim so it reads as a barely-visible silhouette, not a bright line. */
  filter: invert(1) brightness(0.22) contrast(0.85) sepia(0.15);
  mix-blend-mode: screen;
  opacity: 0.85;
  /* Fade the long horizontal pipe out at the edges so it appears to run off-screen */
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
          mask-image: linear-gradient(to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
}

/* ─────────────────────────────────────────────────────────────
   LinkedIn follow strip
   ───────────────────────────────────────────────────────────── */

.follow {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  padding: 64px 48px;
  background:
    radial-gradient(ellipse 60% 100% at 30% 50%, rgba(184, 174, 145, 0.04), transparent 70%),
    radial-gradient(ellipse 50% 100% at 90% 50%, rgba(108, 122, 156, 0.05), transparent 70%);
}
.follow-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 56px;
}
.follow-text { max-width: 640px; }
.follow-headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-top: 16px;
  margin-bottom: 20px;
  text-wrap: balance;
}
.follow-headline em {
  font-style: normal;
  font-weight: 300;
  color: var(--accent);
}
.follow-sub {
  margin-top: 14px;
  color: var(--fg-dim);
  font-size: 19.0px;
  line-height: 1.55;
  max-width: 54ch;
}

.follow-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: rgba(184, 174, 145, 0.04);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 14.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s, transform .15s, border-color .2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.follow-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(184, 174, 145, 0.18), transparent 50%);
  opacity: 0;
  transition: opacity .25s;
}
.follow-cta:hover {
  background: rgba(184, 174, 145, 0.08);
  transform: translateY(-1px);
}
.follow-cta:hover::before { opacity: 1; }
.follow-cta svg {
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
}
.follow-cta span { position: relative; }
.follow-cta .follow-arrow {
  color: var(--accent);
  font-size: 16.0px;
  transition: transform .2s;
}
.follow-cta:hover .follow-arrow {
  transform: translate(2px, -2px);
}

/* ─────────────────────────────────────────────────────────────
   Careers strip
   ───────────────────────────────────────────────────────────── */

.careers {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  padding: 56px 48px;
}
.careers-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.careers-text { max-width: 640px; }
.careers-headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-top: 16px;
  margin-bottom: 20px;
}
.careers-sub {
  margin-top: 10px;
  color: var(--fg-dim);
  font-size: 18.5px;
  line-height: 1.55;
  max-width: 56ch;
}
.careers-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 14.5px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transition: border-color .2s, background .2s, transform .15s;
}
.careers-cta:hover {
  border-color: var(--accent);
  background: rgba(184, 174, 145, 0.04);
  transform: translateY(-1px);
}
.careers-cta .careers-arrow {
  color: var(--accent);
  transition: transform .2s;
}
.careers-cta:hover .careers-arrow { }

/* ─────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────── */

.footer {
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding: 28px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 15.0px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-top: 1px solid var(--line);
}
.footer-right { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-tagline { color: var(--accent); font-style: italic; }
.footer-right a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .topbar, .hero, .capabilities, .footer, .follow, .careers { padding-left: 24px; padding-right: 24px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .capabilities { grid-template-columns: 1fr; }
  .follow-inner { grid-template-columns: 1fr; gap: 24px; }
  .careers-inner { grid-template-columns: 1fr; gap: 20px; }
  .topnav { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 14.0px; }
  .hud-corner.tl, .hud-corner.tr, .hud-corner.bl, .hud-corner.br { display: none; }
  .hud-label.left, .hud-label.right { display: none; }
  .access { max-width: 100%; }
  .access-fields { grid-template-columns: 1fr; }
  .bg-watermark { width: 120vw; right: -40%; }
}

@media (max-width: 600px) {
  .countdown-unit { min-width: 60px; }
  .countdown { gap: 12px; }
  .topbar-right .statuspill { display: none; }
}

/* ═════════════════════════════════════════════════════════════
   ░░  V2 ADDITIONS  ░░  (overrides + new component styles)
   ═════════════════════════════════════════════════════════════ */

/* ─── Reveal — content visible by default (opacity:1) so it never disappears
       even if the animation system never plays. When the JS adds .rv-in, a
       CSS keyframe animation plays the blur-up entrance over the top.   ─── */
.rv {
  opacity: 1;
}
.rv.rv-in {
  animation: rvIn var(--rv-duration, 1000ms) cubic-bezier(0.42, 0, 0.58, 1) var(--rv-delay, 0ms) both;
}
@keyframes rvIn {
  from {
    opacity: 0;
    filter: blur(var(--rv-blur, 10px));
    transform: translate3d(var(--rv-x, 0), var(--rv-y, 28px), 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rv, .rv.rv-in {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* ─── Animated dot grid background ─── */
.dotgrid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(184, 174, 145, 0.10) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 75%);
  opacity: 0.7;
  animation: dotdrift 60s linear infinite;
}
@keyframes dotdrift {
  0%   { background-position: 0 0; }
  100% { background-position: 28px 28px; }
}

/* ─── Top-center spotlight beam ─── */
.bg-spotlight {
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1400px;
  height: 75vh;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 65% at 50% 0%,
      var(--accent-glow) 0%,
      rgba(184, 174, 145, 0.04) 35%,
      transparent 70%);
  opacity: 0.7;
  filter: blur(8px);
}
[data-accent="slate"] .bg-spotlight {
  background: radial-gradient(ellipse 60% 65% at 50% 0%,
    rgba(140, 154, 184, 0.18) 0%,
    rgba(140, 154, 184, 0.04) 35%,
    transparent 70%);
}
[data-accent="amber"] .bg-spotlight {
  background: radial-gradient(ellipse 60% 65% at 50% 0%,
    rgba(217, 154, 78, 0.18) 0%,
    rgba(217, 154, 78, 0.04) 35%,
    transparent 70%);
}

/* ─── Headline override — bigger, centered, support .accent class ─── */
.hero-text .headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-top: 20px;
  text-wrap: balance;
}
.hero-text .headline .accent,
.hero-text .headline .accent * {
  color: var(--accent);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px);
  display: inline-block;
  margin-top: 10px;
  line-height: 1.3;
}
.hero-text .eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.32em;
}
.hero-text .eyebrow .dash {
  width: 36px;
}

/* ─── BlurWords spans ─── */
.blur-words {
  display: inline;
}
.blur-word-wrap {
  display: inline;
  white-space: nowrap;
}
.blur-word {
  display: inline-block;
  /* The Reveal component sets opacity/filter/transform via inline style.
     We add a base will-change so the animation is GPU-accelerated. */
}

/* ─── Magnetic CTA buttons ─── */
.magnetic-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14.0px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              background .25s,
              border-color .25s,
              box-shadow .25s;
  white-space: nowrap;
  user-select: none;
}
.magnetic-cta .cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.magnetic-cta .cta-arrow {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  font-size: 18.5px;
  line-height: 1;
}
.magnetic-cta:hover .cta-arrow { }

/* Primary CTA — solid khaki */
.cta-primary {
  background: var(--accent);
  color: var(--bg-0);
  box-shadow: 0 12px 32px -10px var(--accent-glow), 0 0 0 1px var(--accent) inset;
}
.cta-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 18px 48px -10px var(--accent-glow), 0 0 0 1px var(--accent-bright) inset;
}
.cta-primary:active { }

/* Secondary CTA — outlined */
.cta-secondary {
  background: rgba(184, 174, 145, 0.02);
  color: var(--fg);
  border: 1px solid var(--line-strong);
}
.cta-secondary:hover {
  background: rgba(184, 174, 145, 0.06);
  border-color: var(--accent);
  color: var(--accent-bright);
}

/* ─── 3D model stage ─── */
.modelstage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1480px;
  z-index: 5;
}
.modelstage-bg {
  position: absolute;
  inset: -8% -8% 0 -8%;
  pointer-events: none;
  display: grid;
  place-items: center;
}
/* Reuse the original .rings styles but inside the modelstage */
.modelstage-bg .rings {
  position: absolute;
  width: min(80vh, 1100px);
  height: min(80vh, 1100px);
  border-radius: 50%;
}
.ground-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--accent-glow) 0%, transparent 65%);
  filter: blur(40px);
  opacity: 0.5;
}

.modelstage-frame {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: clamp(400px, 58vh, 620px);
  margin: 0 auto;
  /* Subtle vignette mask so the iframe edges fade into the page */
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, black 70%, transparent 100%);
          mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, black 70%, transparent 100%);
}
.modelstage-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease-out 0.2s;
}
.modelstage-iframe.ready { opacity: 1; }

/* Pre-rendered image variant — beautifully lit, with a subtle float */
.modelstage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  animation: modelFloat 9s ease-in-out infinite;
  /* Slight contrast bump so it pops against the page */
  filter: contrast(1.05) brightness(1.05);
}
/* The orbit video fits fully within the frame, matching the PNG
   render variant, so nothing gets cropped regardless of frame shape */
video.modelstage-img {
  object-fit: contain;
  animation: none;
  opacity: 0.75;
}
@keyframes modelFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.012); }
}
@media (prefers-reduced-motion: reduce) {
  .modelstage-img { animation: none; }
}

/* Loading hint while STL parses */
.modelstage-loading {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.0px;
  letter-spacing: 0.22em;
  color: var(--fg-muted);
  pointer-events: none;
  z-index: 6;
}
.modelstage-loading .lo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.3s ease-in-out infinite;
}

/* Caption beneath the model — small monospace metadata strip */
.modelstage-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: -8px;
}
.modelstage-caption .cap-id { color: var(--accent); }
.modelstage-caption .cap-sep { opacity: 0.5; }

/* HUD overrides inside the modelstage frame */
.modelstage-frame .hud { z-index: 6; }
.modelstage-frame .hud-corner.tl { top: 6%; left: 8%; }
.modelstage-frame .hud-corner.tr { top: 6%; right: 8%; }
.modelstage-frame .hud-corner.bl { bottom: 6%; left: 8%; }
.modelstage-frame .hud-corner.br { bottom: 6%; right: 8%; }
.modelstage-frame .hud-label.left  { left: calc(8% - 30px); }
.modelstage-frame .hud-label.right { right: calc(8% - 30px); }
.modelstage-frame .hud-sweep { left: 8%; }
@keyframes sweep-v2 {
  0%   { left: 8%;  opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .6; }
  100% { left: 92%; opacity: 0; }
}
.modelstage-frame .hud-sweep {
  animation: sweep-v2 7s cubic-bezier(.45,.05,.55,.95) infinite;
}

/* ─── Access section wrapper (the form gets its own block below the hero) ─── */
.access-section {
  position: relative;
  z-index: 5;
  padding: 56px 48px 80px;
  display: flex;
  justify-content: center;
}
.access-section .access {
  max-width: 620px;
  width: 100%;
}

/* ─── Access form step transitions ─── */
.access-step-wrap {
  position: relative;
  min-height: 200px;
}
.access-step {
  animation: stepIn .55s cubic-bezier(.2,.75,.2,1) both;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* ─── Capability cards: add hover lift ─── */
.cap {
  transition: transform .35s cubic-bezier(.2,.75,.2,1), border-color .35s;
}
.cap:hover {
  transform: translateY(-3px);
  border-top-color: var(--accent);
}
.cap:hover .cap-title { color: var(--accent-bright); }
.cap-title { transition: color .25s; }

/* ─── Responsive overrides for v2 ─── */
@media (max-width: 900px) {
  .hero { padding: 24px 24px 40px; gap: 36px; }
  .hero-text { margin-top: 8px; }
  .modelstage-frame { height: clamp(280px, 40vh, 400px); }
  .hud-corner.tl, .hud-corner.tr, .hud-corner.bl, .hud-corner.br { display: block; opacity: 0.4; }
  .hud-label.left, .hud-label.right { display: none; }
  .access-section { padding: 32px 24px 56px; }
  .hero-ctas { width: 100%; flex-direction: column; }
  .hero-ctas .magnetic-cta {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 16px 20px;
    white-space: normal;
    text-align: center;
  }
  .hero-ctas .cta-inner { white-space: normal; text-align: center; justify-content: center; }
  .brand-logo { height: 64px; }
}
@media (max-width: 600px) {
  .hero-text .headline { font-size: clamp(36px, 9vw, 56px); }
  .hero-text .headline.headline--sentence { font-size: clamp(28px, 7.5vw, 38px); }
  .modelstage-caption { flex-wrap: wrap; }
  .footer { flex-wrap: wrap; gap: 0.6rem 1.4rem; }
  .footer-right { flex-wrap: wrap; gap: 0.6rem 1.2rem; }
}

/* ─────────────────────────────────────────────
   Cookie consent banner
   ───────────────────────────────────────────── */
#cs-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(35, 48, 78, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  font-family: var(--sans);
  color: var(--fg-dim);
  animation: cs-consent-in 280ms ease-out;
}
@keyframes cs-consent-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cs-consent__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cs-consent__text {
  flex: 1;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}
.cs-consent__text a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cs-consent__text a:hover { color: var(--fg); }
.cs-consent__actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}
.cs-consent__btn {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
  border: 1px solid var(--line-strong);
}
.cs-consent__btn--ghost {
  background: transparent;
  color: var(--fg-dim);
}
.cs-consent__btn--ghost:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
}
.cs-consent__btn--solid {
  background: var(--accent);
  color: #0a0a0d;
  border-color: var(--accent);
}
.cs-consent__btn--solid:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}
@media (max-width: 640px) {
  .cs-consent__inner { flex-direction: column; align-items: stretch; gap: 0.85rem; padding: 0.9rem; }
  .cs-consent__actions { justify-content: flex-end; }
}

/* ═════════════════════════════════════════════════════════════
   ░░  CONTENT EXPANSION  ░░
   Value prop / industry challenges / insights / prototype /
   FAQ / team / timeline — built from the same tokens as above,
   no new colors or fonts introduced.
   ═════════════════════════════════════════════════════════════ */

.content-section {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  padding: 72px 48px;
}
.content-inner { max-width: 1320px; margin: 0 auto; }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head--wide { max-width: 980px; }
.section-head .eyebrow { justify-content: center; }
.section-head h1, .section-head h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-top: 16px;
  margin-bottom: 20px;
  text-wrap: balance;
}
.section-head-sub {
  margin-top: 14px;
  color: var(--fg-dim);
  font-size: 18.5px;
  line-height: 1.6;
}

/* ── Value proposition (reuses .cap card styling from Capabilities) ── */
.value-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.outcomes-table-wrap {
  margin-top: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
}
.outcomes-table { width: 100%; border-collapse: collapse; }
.outcomes-table th {
  background: var(--bg-1);
  font-family: var(--mono);
  font-size: 14.0px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 20px 30px;
  text-align: left;
  border-bottom: 1px solid var(--line-strong);
}
.outcomes-table td {
  font-family: var(--sans);
  padding: 20px 30px;
  font-size: 18.5px;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--line);
}
.outcomes-table tr:last-child td { border-bottom: none; }
.outcomes-table td:first-child { color: var(--fg); font-weight: 500; }
.outcomes-table td.goal, .outcomes-table th:last-child {
  background: rgba(184, 174, 145, 0.06);
}
.outcomes-table td.goal { color: var(--accent-bright); font-weight: 600; }
@media (max-width: 700px) {
  .outcomes-table th, .outcomes-table td { padding: 10px 12px; font-size: 14.0px; }
}

/* ── Extended palette in use ──
   Contact surfaces: ivory (#FFF8EB)
   Technical highlights: tech-blue (#6D82B3), used on card borders,
   icons, tags and numerals rather than full section backgrounds
   Background: #101010 (single, consistent across the site)
   ─────────────────────────────────────────────────────────── */

/* Contact surfaces — ivory */
.subscribe-row input,
.insight-subscribe input,
input[type="email"],
input[type="text"] {
  background: var(--ivory);
  color: #23304E;
  border-color: transparent;
}
.subscribe-row input::placeholder,
.insight-subscribe input::placeholder { color: rgba(35, 48, 78, 0.55); }
.contact-funnel-card { border-color: rgba(255, 248, 235, 0.18); }
.contact-funnel-card .magnetic-cta.cta-secondary {
  background: var(--ivory);
  color: #23304E;
  border-color: var(--ivory);
}
.contact-funnel-card .magnetic-cta.cta-secondary:hover { background: #fffcf5; }

/* Technical highlights — tech-blue */
.challenge-icon { color: var(--tech-blue); border-color: rgba(109, 130, 179, 0.4); }
.milestone-tag { color: var(--accent-bright); }
.insight-tag { color: var(--tech-blue); }
.objective-num { color: var(--tech-blue); }
.tl-row.inprogress .tl-mark { border-color: var(--tech-blue); color: var(--tech-blue); }
.tl-row.inprogress .tl-mark::before { border-color: var(--tech-blue); }
.tl-row.inprogress .tl-status { color: var(--tech-blue); }

/* Extra technical-blue touches on cards, since backgrounds stay uniform */
.objective-card { border-top: 2px solid var(--tech-blue); }
.showcase-card { border-top: 2px solid var(--tech-blue); }
.explore-card:hover { box-shadow: inset 0 2px 0 var(--tech-blue); }
.team-card:hover { border-color: rgba(109, 130, 179, 0.5); }
.insight-card:hover { box-shadow: inset 0 2px 0 var(--tech-blue); }
.contact-funnel-card { border-top: 2px solid var(--tech-blue); }

/* Further blue accents */
.outcomes-table td.goal { color: var(--accent-bright) !important; }
.showcase-video-frame { border-bottom: 2px solid var(--tech-blue); }
.statuspill .dot { background: var(--tech-blue); box-shadow: 0 0 0 3px rgba(109, 130, 179, 0.35); }
.faq-plus { color: var(--tech-blue); }

/* ── Engineering showcase (video grid) ── */
#featured .content-inner { max-width: 1150px; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}
.showcase-card {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-1);
}
.showcase-video-frame { position: relative; aspect-ratio: 16/9; background: var(--bg-0); }
.showcase-video-frame video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.showcase-placeholder {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  background: repeating-linear-gradient(45deg, rgba(184,174,145,0.03) 0 2px, transparent 2px 10px);
}
.showcase-cap { padding: 20px 22px; }
.showcase-tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
}
.showcase-cap h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; color: var(--fg); margin: 10px 0 12px; }
.showcase-cap p { font-size: 17.0px; color: var(--fg-dim); line-height: 1.6; }
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* ── Icon cards (What We Heard) ── */
.icon-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 8px;
}
.icon-card { background: var(--bg-0); padding: 30px 26px; border-top: 2px solid var(--tech-blue); }
.icon-card .icon-circle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(109, 130, 179, 0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--tech-blue); margin-bottom: 18px;
}
.icon-card h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; color: var(--fg); margin-bottom: 12px; }
.icon-card p { font-size: 17.0px; color: var(--fg-dim); line-height: 1.6; }
@media (max-width: 900px) { .icon-cards-grid { grid-template-columns: 1fr; } }

/* ── Quote cards (Industry Voices) ── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.quote-card {
  border: 1px solid rgba(35,48,78,0.15);
  border-radius: 6px;
  padding: 30px 26px;
  background: #FFF8EB;
  position: relative;
}
.quote-mark { font-family: var(--sans); font-size: 42px; color: #23304e; line-height: 1; margin-bottom: 8px; opacity: 0.6; }
.quote-mark-close { font-family: var(--sans); font-size: 42px; color: #23304e; line-height: 1; margin-top: 8px; opacity: 0.6; text-align: right; }
.quote-card p { font-family: var(--sans); font-style: italic; font-size: 19.5px; color: #23304e; line-height: 1.55; }
@media (max-width: 900px) { .quotes-grid { grid-template-columns: 1fr; } }

/* ── Process flow (What This Means for CenterSet) ── */
.process-flow { display: flex; flex-direction: column; align-items: center; max-width: 480px; margin: 8px auto 0; }
.process-step {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 16px 24px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16.5px;
  color: var(--fg);
  background: var(--bg-1);
}
.process-step.final { border-color: var(--tech-blue); color: var(--tech-blue); }
.process-arrow { color: var(--tech-blue); font-size: 20px; margin: 6px 0; line-height: 1; }

/* ── Full-bleed split comparison (breaks out of content-inner) ── */
.split-compare-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 40px;
}
.split-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.split-half {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--khaki);
  border-radius: 8px;
  overflow: hidden;
  max-width: 85%;
  margin: 0 auto;
}
.split-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-half video, .split-half img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 0;
}
.split-half.trad img {
  filter: brightness(0.92) saturate(0.95) contrast(1.03);
}
.split-label {
  position: absolute;
  top: 28px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(35,48,78,0.7);
  backdrop-filter: blur(4px);
}
.split-half.trad .split-label { left: 28px; }
.split-half.cset .split-label { left: 28px; right: auto; color: var(--accent-bright); border-color: rgba(184,174,145,0.4); }
.split-caption {
  padding: 22px 28px 26px;
  background: var(--bg-1);
  flex: 1;
}
.split-half.cset .split-caption { text-align: left; }
.split-caption h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; color: var(--fg); margin-bottom: 12px; }
.split-caption p { font-size: 16.5px; color: var(--fg-dim); line-height: 1.5; max-width: none; }
.split-vs {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-0); border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.1em; color: var(--tech-blue);
}
@media (max-width: 900px) {
  .split-compare { grid-template-columns: 1fr; }
  .split-vs { display: none; }
}

/* ── Bigger, distinctive challenge icons ── */
.challenge-icon-lg {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184, 174, 145, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  background: rgba(184, 174, 145, 0.06);
}

/* ── Gold-highlight callout ── */
.gold-callout {
  border-left: 3px solid var(--accent);
  background: linear-gradient(90deg, rgba(184,174,145,0.08) 0%, rgba(184,174,145,0.01) 100%);
  padding: 20px 28px;
  border-radius: 0 6px 6px 0;
  max-width: 720px;
  margin: 32px 0 0;
}
.gold-callout p { color: var(--fg); font-size: 18.5px; line-height: 1.65; text-align: left; }
.gold-callout strong { color: var(--accent-bright); font-weight: 600; }

/* ── Apple-style full-width reveal sequence ── */
.reveal-sequence { margin-top: 8px; }
.reveal-stage {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.reveal-stage:first-child { border-top: none; }
.reveal-stage-info { padding-right: 12px; }
.reveal-num {
  font-family: var(--mono);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 18px;
}
.reveal-stage-info h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; color: var(--fg); margin-bottom: 12px; }
.reveal-stage-info p { font-size: 18.5px; color: var(--fg-dim); line-height: 1.6; }
.reveal-video-frame {
  position: relative;
  aspect-ratio: 16/8;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
}
.reveal-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .reveal-stage { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .reveal-num { font-size: 44px; }
}

/* ── Subtle blueprint overlay for split/sequence visuals ── */
.wireframe-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.06;
  background-image: linear-gradient(var(--tech-blue) 1px, transparent 1px), linear-gradient(90deg, var(--tech-blue) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Hero: video as full-bleed background behind header + hero ── */
.hero-header-wrap {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
}
.hero.hero-bg-video {
  position: relative;
  min-height: calc(78vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 48px 32px;
}
.hero-bg-video-el {
  position: absolute;
  top: 60px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  object-fit: cover;
  object-position: center 15%;
  z-index: 0;
  opacity: 0.85;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.55) 14%,
    rgba(0,0,0,0.5) 30%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.62) 82%,
    rgba(0,0,0,0.82) 100%
  );
}
.hero-header-wrap .topbar { position: relative; z-index: 2; }
.hero-bg-video .hero-text { position: relative; z-index: 2; }
@media (max-width: 900px) {
  .hero-header-wrap { min-height: 74vh; }
  .hero.hero-bg-video { min-height: calc(74vh - 72px); padding: 24px 24px 40px; }
  .hero-bg-video-el { opacity: 0.32; }
  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(35,48,78,0.75) 0%,
      rgba(35,48,78,0.35) 16%,
      rgba(35,48,78,0.2) 40%,
      rgba(35,48,78,0.2) 60%,
      rgba(35,48,78,0.35) 84%,
      rgba(35,48,78,0.75) 100%
    );
  }
}

/* ── Scroll-reveal for static pages (matches home page's Reveal) ── */
.reveal-el {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1),
              filter .6s cubic-bezier(.2,.7,.2,1),
              transform .6s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, filter, transform;
}
.reveal-el.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-el { transition: none; opacity: 1; filter: none; transform: none; }
}

/* ── Numbered objectives grid ── */
.objectives-animation {
  display: flex;
  justify-content: center;
  margin: 8px 0 36px;
}
.objectives-animation img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 8px;
}
.objective-card { background: var(--bg-0); padding: 30px 22px; text-align: center; }
.objective-num {
  font-family: var(--mono); font-size: 34px; font-weight: 600; color: var(--accent);
  line-height: 1; margin-bottom: 14px;
}
.objective-label { font-family: var(--sans); font-weight: 600; font-size: 20px; color: var(--fg); margin-bottom: 12px; }
.objective-body { font-size: 18.5px; color: var(--fg-dim); line-height: 1.6; }
@media (max-width: 900px) {
  .objectives-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .objectives-grid { grid-template-columns: 1fr; }
}

/* ── Watermark graphic — one per page, bottom-right corner,
   bleeding off the edge of the page ── */
.watermark-single {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 420px;
  height: 363px;
  background-image: url('assets/watermark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .watermark-single { width: 260px; height: 225px; bottom: -40px; right: -40px; opacity: 0.06; }
}
.blueprint-bg {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 15% 20%, transparent 0, transparent 78px, var(--tech-blue) 79px, var(--tech-blue) 80px, transparent 81px),
    radial-gradient(circle at 85% 65%, transparent 0, transparent 118px, var(--accent) 119px, var(--accent) 120px, transparent 121px),
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

/* ── Contact funnel ── */
.contact-funnel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.contact-funnel-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(184, 174, 145, 0.02) 0%, rgba(255,255,255,0.01) 100%);
}
.contact-funnel-card .audience {
  font-family: var(--mono);
  font-size: 12.0px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-bright);
  margin-bottom: 14px;
}
.contact-funnel-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.contact-funnel-card p { color: var(--fg-dim); font-size: 17.0px; line-height: 1.6; margin-bottom: 22px; }
.contact-funnel-card .magnetic-cta {
  white-space: normal;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  margin-top: auto;
}
.contact-funnel-card .magnetic-cta .cta-inner { justify-content: center; text-align: center; }
@media (max-width: 700px) {
  .contact-funnel-grid { grid-template-columns: 1fr; }
}

/* ── Industry challenges ── */
.challenges-list { display: flex; flex-direction: column; margin-top: 8px; }
.challenge-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.challenges-list--centered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-top: 40px;
}
.challenges-list--centered .challenge-row {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 32px 28px;
  border: 1px solid #23304e;
  border-radius: 10px;
  background: #23304e;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
.challenges-list--centered .challenge-row .challenge-title { color: #FFF8EB !important; }
.challenges-list--centered .challenge-row .challenge-body { color: #d7dae1 !important; }
.challenges-list--centered .challenge-icon-anim { background: rgba(255,248,235,0.08); }
.challenges-list--centered .challenge-icon-lg { margin-bottom: 6px; }
.challenges-list--centered .challenge-icon-anim {
  width: 100px; height: 100px;
  background: rgba(184, 174, 145, 0.04);
}

/* Stand-off icon: pipe drifts toward centered, gap indicator pulses */
@keyframes ico-standoff-pipe {
  0%, 15% { cx: 52px; }
  50%, 65% { cx: 60px; }
  100% { cx: 52px; }
}
.ico-standoff-pipe { animation: ico-standoff-pipe 4s ease-in-out infinite; }
@keyframes ico-standoff-gap {
  0%, 15% { opacity: 1; x1: 72px; }
  50%, 65% { opacity: 0.35; x1: 80px; }
  100% { opacity: 1; x1: 72px; }
}
.ico-standoff-gap { animation: ico-standoff-gap 4s ease-in-out infinite; }

/* Drag icon: arrows slide right then reset, staggered */
@keyframes ico-drag-slide {
  0% { transform: translateX(0); opacity: 1; }
  70% { transform: translateX(14px); opacity: 0.4; }
  100% { transform: translateX(0); opacity: 1; }
}
.ico-drag-arrow { animation: ico-drag-slide 1.8s ease-in-out infinite; transform-origin: center; }
.ico-drag-arrow--2 { animation-delay: 0.3s; }

/* Restricted ID icon: ball compresses through the narrow throat */
@keyframes ico-id-ball {
  0%, 10% { cy: 44px; r: 13px; }
  55% { cy: 78px; r: 7px; }
  90%, 100% { cy: 44px; r: 13px; }
}
.ico-id-ball { animation: ico-id-ball 3.2s ease-in-out infinite; }

/* Balance icon: beam tips then settles level */
@keyframes ico-balance-beam {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-7deg); }
  60% { transform: rotate(6deg); }
  85% { transform: rotate(-1deg); }
}
.ico-balance-beam { animation: ico-balance-beam 4.5s ease-in-out infinite; transform-origin: 60px 44px; transform-box: view-box; }

.challenges-list--centered .challenge-body { max-width: 44ch; }
@media (max-width: 700px) {
  .challenges-list--centered { grid-template-columns: 1fr; }
}
.challenges-list .challenge-row:last-child { border-bottom: 1px solid var(--line); }
.challenges-list--centered .challenge-row:last-child { }
.challenge-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.challenge-title { font-family: var(--sans); font-weight: 600; font-size: 20px; color: var(--fg); margin-bottom: 12px; }
.challenge-body { font-size: 18.5px; color: var(--fg-dim); line-height: 1.6; max-width: 62ch; }
.challenges-closing {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  background: rgba(184, 174, 145, 0.04);
  color: var(--fg-dim);
  font-size: 15.5px;
  line-height: 1.6;
}
.challenges-closing strong { color: var(--accent-bright); font-weight: 500; }

/* ── Technical insights ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 8px;
}
.insight-card { background: var(--bg-0); padding: 28px; transition: background .2s; }
.insight-card:hover { background: var(--bg-1); }
.insight-tag {
  font-family: var(--mono);
  font-size: 12.0px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-bright);
}
.insight-card h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19.0px;
  color: var(--fg);
  margin: 12px 0 8px;
  line-height: 1.35;
}
.insight-card p { font-size: 17.0px; color: var(--fg-dim); line-height: 1.55; }
.insight-subscribe {
  margin-top: 28px;
  display: flex;
  max-width: 440px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
}
.insight-subscribe input {
  flex: 1; background: rgba(255,255,255,0.02); border: none; padding: 14px 16px;
  color: var(--fg); font-family: var(--sans); font-size: 15.5px; outline: none;
}
.insight-subscribe input::placeholder { color: var(--fg-muted); }
.insight-subscribe button {
  background: var(--accent); color: #0a0a0d; border: none; padding: 0 20px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: background .2s;
}
.insight-subscribe button:hover { background: var(--accent-bright); }

/* ── Prototype gallery ── */
.prototype-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: min-content;
  gap: 18px;
  margin-top: 8px;
}
.prototype-feature {
  grid-row: span 2;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-1);
  min-height: 320px;
}
.prototype-feature img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prototype-tile {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.prototype-tile .frame {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: repeating-linear-gradient(45deg, rgba(184,174,145,0.03) 0 2px, transparent 2px 10px);
}
.prototype-cap { padding: 12px 14px; }
.prototype-stage {
  font-family: var(--mono);
  font-size: 11.0px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.prototype-cap p { font-size: 16.5px; color: var(--fg-dim); margin-top: 4px; line-height: 1.5; }
.prototype-caption-main {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(35,48,78,0.85), transparent);
  font-family: var(--mono);
  font-size: 12.0px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.prototype-caption-main .cap-id { color: var(--accent); }

/* ── FAQ ── */
.faq-list { margin-top: 8px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18.0px;
  color: var(--fg);
  text-align: left;
}
.faq-q .faq-plus {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 20.5px;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { font-size: 18.5px; color: var(--fg-dim); line-height: 1.6; padding-bottom: 22px; max-width: 68ch; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(184, 174, 145, 0.02) 0%, rgba(255,255,255,0.01) 100%);
}
.team-card::before, .team-card::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--accent);
  opacity: .6;
}
.team-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.team-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(109, 130, 179, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  color: var(--tech-blue);
  font-size: 17.0px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bg-1);
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
  transition: filter .25s;
}
.team-card:hover .team-avatar img { filter: grayscale(0) contrast(1); }
.team-name { font-family: var(--sans); font-weight: 500; font-size: 17.0px; color: var(--fg); }
.team-role {
  font-family: var(--mono);
  font-size: 11.0px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-bright);
  margin: 6px 0 12px;
}
.team-bio { font-size: 18.5px; color: var(--fg-dim); line-height: 1.6; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); transition: color .2s;
}
.team-linkedin:hover { color: var(--accent-bright); }
.team-linkedin svg { width: 13px; height: 13px; }
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Development timeline ── */
.timeline { max-width: 640px; margin: 8px auto 0; }
.tl-row { display: flex; gap: 18px; position: relative; padding-bottom: 28px; }
.tl-row::before {
  content: "";
  position: absolute; left: 11px; top: 26px; bottom: 0;
  width: 1px; background: var(--line-strong);
}
.tl-row:last-child::before { display: none; }
.tl-mark {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 14.0px;
}
.tl-row.done .tl-mark { background: var(--accent); color: #0a0a0d; }
.tl-row.todo .tl-mark { border: 1px solid var(--line-strong); }
.tl-label { font-family: var(--sans); font-weight: 500; font-size: 17.0px; color: var(--fg); }
.tl-row.todo .tl-label { color: var(--fg-dim); }
.tl-status {
  font-family: var(--mono); font-size: 12.0px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted); margin-top: 4px;
}
.tl-summary {
  font-family: var(--sans); font-size: 14.5px; line-height: 1.55;
  color: var(--fg-dim); margin-top: 6px; max-width: 46ch;
}

@media (max-width: 900px) {
  .content-section { padding: 56px 24px; }
  .value-points, .insights-grid, .team-grid { grid-template-columns: 1fr; }
  .prototype-grid { grid-template-columns: 1fr 1fr; }
  .prototype-feature { grid-row: span 1; min-height: 220px; }
  .challenge-row { grid-template-columns: 40px 1fr; }
}
@media (max-width: 600px) {
  .prototype-grid { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════════════
   ░░  MULTI-PAGE ADDITIONS  ░░
   Sub-page hero + teaser links (used on index.html to point at
   about.html / insights.html / challenge.html) + in-progress
   timeline marker.
   ═════════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  z-index: 5;
  padding: 56px 48px 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 14px auto 18px;
  max-width: 900px;
  text-wrap: balance;
}
.page-hero h1.page-hero-h1--wide { max-width: 1200px; text-wrap: wrap; }
.page-hero .page-hero-sub {
  margin: 0 auto;
  max-width: 600px;
  color: var(--fg-dim);
  font-size: 18.5px;
  line-height: 1.55;
}

.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 15.0px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .2s, color .2s;
}
.teaser-link:hover { color: var(--accent-bright); }
.teaser-link .arrow { transition: transform .2s; display: inline-block; }
.teaser-link:hover .arrow { }

.challenge-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.challenge-chip {
  padding: 9px 14px;
  border: 1px solid rgba(109, 130, 179, 0.4);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13.0px;
  letter-spacing: 0.06em;
  color: var(--tech-blue);
}

.tl-row.inprogress .tl-mark {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  position: relative;
}
.tl-row.inprogress .tl-mark::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed var(--accent);
  opacity: .5;
  animation: spin 10s linear infinite;
}
.tl-row.inprogress .tl-label { color: var(--fg); }
.tl-row.inprogress .tl-status { color: var(--accent-bright); }

.subpage-section { text-align: center; }
.subpage-section .content-inner { max-width: 880px; }
.subpage-section p { color: var(--fg-dim); font-size: 18.5px; line-height: 1.6; margin-top: 14px; }
.subpage-section p:first-of-type { margin-top: 8px; }

.explore-section { padding-top: 64px; padding-bottom: 64px; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.explore-grid > *:last-child:nth-child(odd) { grid-column: 1 / -1; }
.explore-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-0);
  padding: 30px 28px;
  transition: background .2s;
}
.explore-card:hover { background: var(--bg-1); }
.explore-card .eyebrow { font-size: 11.5px; }
.explore-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--fg);
  margin: 14px 0 12px;
}
.explore-card p { color: var(--fg-dim); font-size: 17.0px; line-height: 1.55; margin-bottom: 4px; }
.explore-card .teaser-link { margin-top: auto; padding-top: 16px; }
@media (max-width: 900px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* ── Milestones (LinkedIn integration) ── */
.milestones-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.milestone-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(35,48,78,0.15);
  border-radius: 8px;
  overflow: hidden;
  background: #FFF8EB;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.milestone-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.milestone-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--khaki);
}
.milestone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
  transition: filter .25s;
}
.milestone-card:hover .milestone-photo img { filter: grayscale(0) contrast(1); }
.milestone-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(35, 48, 78, 0.82);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s;
}
.milestone-card:hover .milestone-photo-overlay { opacity: 1; }
.milestone-photo-overlay .arrow { color: var(--accent); }
.milestone-card-body { padding: 18px 20px 22px; background: #FFF8EB; }
.milestone-tag {
  font-family: var(--mono);
  font-size: 12.0px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #23304e;
  display: block;
  margin-bottom: 10px;
}
.milestone-text { font-size: 18.5px; color: #23304e; line-height: 1.6; }
.milestone-date {
  font-family: var(--mono);
  font-size: 13.0px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #23304e;
  margin-top: 10px;
}
@media (max-width: 700px) {
  .milestones-grid { grid-template-columns: 1fr; }
}

.article-wrap { max-width: 700px; margin: 0 auto; }
.article-body { color: var(--fg-dim); font-size: 19.0px; line-height: 1.8; }
.article-body p { margin-bottom: 18px; }
.article-body h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--fg);
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.article-back { text-align: center; margin-top: 44px; }

.section-head-h2-standalone {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-top: 16px;
  margin-bottom: 20px;
  text-wrap: balance;
}

@media (max-width: 900px) {
  .page-hero { padding: 96px 24px 56px; }
}

/* ============================================================
   Homepage restructure: intro sections 1–4 reuse the standard
   .content-section / .section-head pattern used site-wide —
   no bespoke CSS needed, keeping them visually identical to
   every other page's sections.
   ============================================================ */

/* ============================================================
   Homepage restructure: horizontal progress carousel (section 5)
   ============================================================ */
.progress-section { }
.progress-carousel-wrap {
  position: relative;
  margin-top: 24px;
  display: flex;
  align-items: center;
}
.progress-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 42vw;
  scrollbar-width: none;
}
.progress-carousel::-webkit-scrollbar { display: none; }
.progress-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 24px 22px;
  background: var(--bg-1);
  opacity: 0.6;
  transform: scale(0.92);
  transition: opacity .3s, transform .3s, border-color .3s;
}
.progress-card.current {
  flex: 0 0 320px;
  opacity: 1;
  transform: scale(1);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(184,174,145,0.1) 0%, rgba(184,174,145,0.02) 100%);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.4);
}
.progress-card.done { opacity: 0.75; }
.progress-card-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--fg-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 15.0px;
  color: var(--fg-dim);
  margin-bottom: 14px;
}
.progress-card.done .progress-card-mark { border-color: var(--accent); color: var(--accent); }
.progress-card.current .progress-card-mark { border-color: var(--accent); color: var(--accent); background: rgba(184,174,145,0.12); }
.progress-card-label { font-size: 19.5px; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.progress-card.current .progress-card-label { font-size: 20px; }
.progress-card-status {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.progress-card-summary { font-size: 16.5px; color: var(--fg-dim); line-height: 1.55; }
.progress-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-0);
  color: var(--fg);
  font-size: 20.5px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
  z-index: 2;
}
.progress-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.progress-arrow:disabled:hover {
  border-color: var(--line-strong);
  color: var(--fg);
}
.progress-arrow:hover { border-color: var(--accent); color: var(--accent); }
.progress-arrow.left { margin-right: -22px; }
.progress-arrow.right { margin-left: -22px; }
@media (max-width: 700px) {
  .progress-carousel { padding: 20px 12vw; }
  .progress-arrow { display: none; }
}

/* ============================================================
   Homepage restructure: closing CTA (section 6)
   ============================================================ */
.get-involved-section { text-align: center; }

/* ============================================================
   PREVIEW ONLY: alternating navy/ivory section backgrounds
   ============================================================ */
.section-ivory { background: #FFF8EB; }
.section-ivory .eyebrow,
.section-ivory .eyebrow span:not(.dash) { color: #23304e; }
.section-ivory .eyebrow .dash { background: #23304e; opacity: 0.6; }
.section-ivory h1,
.section-ivory h2,
.section-ivory h3,
.section-ivory .section-head-h2-standalone,
.section-ivory .follow-headline,
.section-ivory .careers-headline,
.section-ivory .team-name,
.section-ivory .objective-label,
.section-ivory .challenge-title,
.section-ivory .cap-title,
.section-ivory .progress-card-label { color: #23304e !important; }
.section-ivory p,
.section-ivory .section-head-sub,
.section-ivory .page-hero-sub,
.section-ivory .team-bio,
.section-ivory .objective-body,
.section-ivory .challenge-body,
.section-ivory .follow-sub,
.section-ivory .careers-sub,
.section-ivory .home-intro-section p { color: #23304e !important; }
.section-ivory .team-role,
.section-ivory .milestone-tag,
.section-ivory .progress-card-status { color: #23304e !important; }
.section-ivory .objective-card,
.section-ivory .team-card,
.section-ivory .quote-card,
.section-ivory .progress-card {
  background: rgba(35,48,78,0.04);
  border-color: rgba(35,48,78,0.18) !important;
}
.section-ivory .objectives-grid {
  background: rgba(35,48,78,0.35);
  border-color: rgba(35,48,78,0.35);
}
.section-ivory .objective-num { color: var(--khaki) !important; }
.section-ivory .objective-card {
  background: #FFF8EB !important;
}
.section-ivory .objective-card .objective-label { color: #23304e !important; }
.section-ivory .objective-card .objective-body { color: #3a4560 !important; }
.section-ivory .quote-card p { color: #3a3226 !important; }
.section-ivory .follow-cta,
.section-ivory .careers-cta,
.section-ivory .nav-cta { background: #23304e; color: #FFF8EB !important; }
.section-ivory .teaser-link { color: #23304e !important; }
.section-ivory .teaser-link:hover { color: #6e6349 !important; }
.section-ivory.content-section { border-top-color: rgba(35,48,78,0.12); }
.section-ivory .gold-callout strong { color: #23304e !important; }
.section-ivory .gold-callout p { color: #23304e !important; }
.section-ivory .gold-callout { background: rgba(35,48,78,0.05); border-left-color: #23304e; }
.section-ivory .cta-secondary { color: #23304e !important; border-color: rgba(35,48,78,0.3) !important; background: rgba(35,48,78,0.04) !important; }
.section-ivory .cta-secondary:hover { background: rgba(35,48,78,0.08) !important; border-color: rgba(35,48,78,0.5) !important; }
/* Video/media showcase cards keep their own dark card styling
   regardless of the section's ivory background */
.section-ivory .showcase-card h3 { color: var(--fg) !important; }
.section-ivory .showcase-card p { color: var(--fg-dim) !important; }
.section-ivory .showcase-cap { background: var(--bg-1); }
/* Outcomes table needs ivory-context overrides too */
.section-ivory .outcomes-table-wrap { border-color: rgba(35,48,78,0.2); }
.section-ivory .outcomes-table th { background: rgba(35,48,78,0.06); color: #23304e !important; border-bottom-color: rgba(35,48,78,0.2); }
.section-ivory .outcomes-table td { color: #23304e !important; border-bottom-color: rgba(35,48,78,0.12); }
.section-ivory .outcomes-table td.goal { color: #23304e !important; font-weight: 700; }
.section-ivory .split-label { background: rgba(35,48,78,0.7); }
/* Technology page: navy section background, video caption
   boxes are ivory with bold blue text */
.showcase-grid--ivory-caps .showcase-cap {
  background: #23304e;
}
.showcase-grid--ivory-caps .showcase-cap h3 { color: #FFF8EB !important; font-weight: 700; }
.showcase-grid--ivory-caps .showcase-cap p { color: #FFF8EB !important; font-weight: 700; }
.showcase-grid--ivory-caps .showcase-tag { color: var(--khaki) !important; }
/* Split-half captions sit on the dark photo/video panel itself,
   not the ivory section background — keep their original light text */
.section-ivory .split-caption h3 { color: var(--fg) !important; }
.section-ivory .split-caption p { color: var(--fg-dim) !important; }
/* Variant: video panel backgrounds also go ivory */
.section-ivory .split-media { background: #FFF8EB; }
.section-ivory .split-half video,
.section-ivory .split-half img { background: #FFF8EB; }
/* .split-caption stays a dark bubble regardless of section
   background — it's a standalone card under the media, not an
   overlay, so it doesn't need to change with the section color */

/* Variant: table reverts to #4a5266 even within an ivory section */
.section-ivory .outcomes-table-wrap.table-navy {
  background: #4a5266;
  border-color: rgba(255,248,235,0.15);
}
.section-ivory .outcomes-table-wrap.table-navy th {
  background: rgba(35,48,78,0.3) !important;
  color: #d7dae1 !important;
  border-bottom-color: rgba(255,248,235,0.15) !important;
}
.section-ivory .outcomes-table-wrap.table-navy td {
  color: #d7dae1 !important;
  border-bottom-color: rgba(255,248,235,0.1) !important;
}
.section-ivory .outcomes-table-wrap.table-navy td.goal {
  color: #b8ae91 !important;
}
/* Variant: only the table is ivory, page stays navy throughout */
.outcomes-table-wrap.table-ivory {
  background: #FFF8EB;
  border: 1px solid rgba(184,174,145,0.5);
  box-shadow: 0 20px 45px -15px rgba(0,0,0,0.4);
}
.outcomes-table-wrap.table-ivory th {
  background: rgba(35,48,78,0.08) !important;
  color: #23304e !important;
  border-bottom-color: rgba(35,48,78,0.2) !important;
  font-weight: 700 !important;
}
.outcomes-table-wrap.table-ivory td {
  color: #23304e !important;
  border-bottom-color: rgba(35,48,78,0.12) !important;
}
.outcomes-table-wrap.table-ivory td.goal {
  color: #8a5d2e !important;
  font-weight: 700;
  background: rgba(184,174,145,0.14) !important;
}
.outcomes-table-wrap.table-ivory th:last-child {
  background: rgba(184,174,145,0.22) !important;
}
.page-hero.section-ivory { border-bottom-color: rgba(35,48,78,0.12); }

/* Team cards specifically become solid navy, with light text,
   contrasting against the ivory section background */
.section-ivory .team-card {
  background: var(--bg-0) !important;
  border-color: rgba(35,48,78,0.15) !important;
}
.section-ivory .team-card .team-name { color: var(--fg) !important; }
.section-ivory .team-card .team-role { color: var(--accent) !important; }
.section-ivory .team-card .team-bio { color: var(--fg-dim) !important; }
.section-ivory .team-card .team-linkedin { color: var(--fg-dim) !important; }
.section-ivory .team-card .team-linkedin:hover { color: var(--accent-bright) !important; }

/* Homepage: ivory box around the closing CTA content, navy page stays */
.get-involved-box {
  background: #FFF8EB;
  border-radius: 12px;
  padding: 56px 48px;
  max-width: 720px !important;
}
.get-involved-box .eyebrow,
.get-involved-box .eyebrow span:not(.dash) { color: #23304e !important; }
.get-involved-box .eyebrow .dash { background: #23304e; opacity: 0.6; }
.get-involved-box h2 { color: #23304e !important; }
.get-involved-box .section-head-sub { color: #23304e !important; }
.section-ivory .hero-tagline { color: #23304e !important; }

/* Contact page: navy page background stays, but each funnel
   card itself becomes ivory, with navy heading/body/button */
.contact-funnel-card {
  background: #23304e !important;
  border-color: rgba(255,248,235,0.15) !important;
}
.contact-funnel-card .audience { color: #b8ae91 !important; }
.contact-funnel-card h3 { color: #FFF8EB !important; }
.contact-funnel-card p { color: #d7dae1 !important; }

/* Team page: distinct button colors for Follow (blue) and Roles (gold) */
.cta-linkedin-blue {
  background: var(--bg-0);
  color: var(--fg);
  border: 1px solid rgba(184,174,145,0.3);
}
.cta-linkedin-blue:hover {
  background: #34456b;
  border-color: rgba(184,174,145,0.5);
}
.cta-gold {
  background: var(--accent);
  color: var(--bg-0);
  border: 1px solid var(--accent);
}
.cta-gold:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

/* Contact page funnel cards: ivory background, navy text, khaki button */
.contact-funnel-card {
  background: #FFF8EB !important;
  border-color: rgba(35,48,78,0.15) !important;
}
.contact-funnel-card .audience { color: #23304e !important; }
.contact-funnel-card h3 { color: #23304e !important; }
.contact-funnel-card p { color: #23304e !important; }
.contact-funnel-card .magnetic-cta {
  background: var(--khaki) !important;
  color: #23304e !important;
  border-color: var(--khaki) !important;
}
.contact-funnel-card .magnetic-cta:hover { background: var(--khaki-bright) !important; }

/* ── Interactive 3D model viewer (Technology page) ── */
.model-viewer-frame {
  overflow: hidden;
}
.model-viewer-frame canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}
.model-viewer-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(35,48,78,0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(184,174,145,0.3);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 2;
}
.model-viewer-hint.is-hidden { opacity: 0; }
.model-viewer-hint-icon { font-size: 15px; color: var(--accent); }
.model-viewer-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  background: var(--bg-0);
  z-index: 1;
}

.model-viewer-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(160deg, #2a3860 0%, #1a2440 100%);
  color: var(--fg-dim);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  z-index: 1;
}
.model-viewer-placeholder-icon {
  font-size: 10px;
  color: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Homepage: split layout for "Our Approach" (text left, image right) ── */
.home-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.home-intro-split-text .eyebrow { justify-content: flex-start; }
.home-intro-split-text .eyebrow .dash:first-child { display: none; }
.home-intro-split-text h2 { text-align: left; }
.home-intro-split-text .section-head-sub { text-align: left; margin-left: 0; }
.home-intro-split-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 391px;
}
.home-intro-split-img {
  width: auto;
  max-width: 460px;
  max-height: 320px;
  height: auto;
  display: block;
}
.home-intro-split-media .teaser-link { align-self: center; }
.home-intro-split--reverse .home-intro-split-text { order: 2; text-align: right; }
.home-intro-split--reverse .home-intro-split-media { order: 1; }
.home-intro-split--reverse .home-intro-split-text .eyebrow { justify-content: flex-end; }
.home-intro-split--reverse .home-intro-split-text .eyebrow .dash:first-child { display: inline-block; }
.home-intro-split--reverse .home-intro-split-text .eyebrow .dash:last-child { display: none; }
.home-intro-split--reverse .home-intro-split-text h2,
.home-intro-split--reverse .home-intro-split-text .section-head-sub { text-align: right; }
@media (max-width: 860px) {
  .home-intro-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-intro-split--reverse .home-intro-split-text,
  .home-intro-split--reverse .home-intro-split-media { order: initial; }
  .home-intro-split-text .eyebrow { justify-content: center; }
  .home-intro-split-text .eyebrow .dash:first-child { display: inline-block; }
  .home-intro-split-text h2,
  .home-intro-split-text .section-head-sub,
  .home-intro-split--reverse .home-intro-split-text h2,
  .home-intro-split--reverse .home-intro-split-text .section-head-sub { text-align: center; }
  .home-intro-split--reverse .home-intro-split-text { text-align: center; }
  .home-intro-split--reverse .home-intro-split-text .eyebrow { justify-content: center; }
}

/* Homepage Industry Input quote box: navy with ivory text (scoped, doesn't affect About page quotes) */
.home-intro-split-media .quote-card {
  background: #23304e !important;
  border-color: rgba(255,248,235,0.15) !important;
  max-width: 380px;
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.home-intro-split-media .quote-card .quote-mark,
.home-intro-split-media .quote-card .quote-mark-close {
  color: #FFF8EB !important;
}
.home-intro-split-media .quote-card p {
  color: #FFF8EB !important;
}

/* Homepage: match "Our Development" section height to the other three intro sections */
#what-is .section-head {
  min-height: 343px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
