:root {
  /* Backgrounds */
  --bg: #0A1120;
  --bg-elevated: #1C2533;

  /* Ink / Text */
  --ink: #f4f6fa;
  --ink-muted: rgba(244, 246, 250, 0.72);
  --ink-soft: rgba(244, 246, 250, 0.9);

  /* Hairlines */
  --hairline: rgba(244, 246, 250, 0.1);
  --hairline-strong: rgba(244, 246, 250, 0.22);

  /* Surfaces — Tertiary-based */
  --panel: rgba(28, 37, 51, 0.68);
  --panel-strong: rgba(28, 37, 51, 0.86);

  /* Accent = Secondary Sky Blue */
  --accent: #38BDF8;
  --accent-2: #7DD3FC;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --accent-ink: #0A1120;

  /* Primary = Orange (CTA only) */
  --primary: #F97316;
  --primary-hover: #FB923C;
  --primary-ink: #0A1120;
  --primary-soft: rgba(249, 115, 22, 0.22);

  /* Shadows */
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 14px 44px rgba(0, 0, 0, 0.4);

  /* Metrics */
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1160px;
  --gutter: clamp(20px, 4vw, 56px);
  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; overscroll-behavior: none; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.visuallyHidden {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* -------------------------------------------------------------------------- */
/* Background                                                                 */
/* -------------------------------------------------------------------------- */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(1400px 900px at 70% 0%, #152033 0%, #0A1120 60%);
}

.bgGrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(closest-side at 50% 40%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 40%, #000 25%, transparent 80%);
  opacity: 0.55;
}

.bgOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 17, 32, 0.88) 0%, rgba(10, 17, 32, 0.62) 25%, rgba(10, 17, 32, 0.62) 70%, rgba(10, 17, 32, 0.92) 100%);
}

.bgVignette {
  position: absolute;
  inset: -20%;
  background: radial-gradient(closest-side, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0.92) 100%);
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px var(--gutter) 0;
  pointer-events: none;
}

.siteHeaderInner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--hairline);
  background: rgba(10, 17, 32, 0.68);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 999px;
  pointer-events: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brandMark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--accent-ink);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 6px 18px rgba(56, 189, 248,0.25);
}

.brandMark svg { width: 16px; height: 16px; }

.brandLogo {
  display: block;
  height: 40px;
  width: auto;
}

.brandLogo--sm {
  height: 30px;
}

.langSwitch {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.langSwitch button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 999px;
  transition: color 150ms ease;
}

.langSwitch button:hover { color: var(--ink); }
.langSwitch button.active { color: var(--accent); }
.langSep { color: var(--hairline-strong); }

/* -------------------------------------------------------------------------- */
/* Main + sections                                                            */
/* -------------------------------------------------------------------------- */

main {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: 0 var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--hairline-strong) transparent;
}

main::-webkit-scrollbar {
  width: 10px;
}

main::-webkit-scrollbar-track {
  background: transparent;
}

main::-webkit-scrollbar-thumb {
  background: rgba(244, 246, 250, 0.12);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
  transition: background 200ms ease;
}

main::-webkit-scrollbar-thumb:hover {
  background: var(--accent-soft);
  background-clip: padding-box;
  border: 2px solid transparent;
}

.section {
  padding: 120px 0 60px;
  min-height: 100vh;
  display: grid;
  align-content: center;
  position: relative;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.sectionHead { margin-bottom: 40px; }

.sectionKicker {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sectionKicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.sectionTitle {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.sectionTitle .accent {
  background: linear-gradient(120deg, var(--accent) 0%, #BAE6FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.lead {
  color: var(--ink-soft);
  max-width: 60ch;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Frame brackets (decorative corners)                                        */
/* -------------------------------------------------------------------------- */

.frameBracket {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--accent);
  opacity: 0.55;
  pointer-events: none;
}

.frameBracket.tl { top: -1px; left: -1px; border-top: 1px solid; border-left: 1px solid; }
.frameBracket.tr { top: -1px; right: -1px; border-top: 1px solid; border-right: 1px solid; }
.frameBracket.bl { bottom: -1px; left: -1px; border-bottom: 1px solid; border-left: 1px solid; }
.frameBracket.br { bottom: -1px; right: -1px; border-bottom: 1px solid; border-right: 1px solid; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero { padding-top: 140px; }

.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.heroCopy { max-width: 620px; min-width: 0; }

.statusBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  background: var(--accent-soft);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.statusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.6);
  animation: pulse 2.2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.eyebrow {
  margin: 0 0 20px;
  font-family: var(--display);
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 11px;
  font-weight: 500;
}

.headline {
  margin: 0 0 26px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.7);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.headline .accent {
  background: linear-gradient(110deg, #ffffff 0%, var(--accent) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  margin: 0 0 32px;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.heroCta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform 150ms ease, background 150ms ease, box-shadow 200ms ease;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.22);
}

.btnPrimary::after {
  content: "→";
  font-size: 15px;
  transition: transform 200ms ease;
}

.btnPrimary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

.btnPrimary:hover::after { transform: translateX(3px); }

.heroMeta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(10, 17, 32, 0.55);
  backdrop-filter: blur(10px);
}

.metaItem {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metaValue {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metaLabel {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.metaDivider {
  width: 1px;
  height: 32px;
  background: var(--hairline);
}

/* Hero Visual (identity card mockup) */
.heroVisual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

.heroCardWrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  z-index: 2;
  transform-style: preserve-3d;
  animation: floaty 6s ease-in-out infinite;
}

.heroCard {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(56, 189, 248,0.10) 0%, rgba(28, 37, 51,0.84) 60%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  overflow: hidden;
  box-shadow:
    /* outer cast — deep drop */
    0 36px 72px -24px rgba(0, 0, 0, 0.62),
    0 14px 28px -10px rgba(0, 0, 0, 0.38),
    /* top rim highlight — sharp light line */
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    /* top soft sheen that fades down */
    inset 0 3px 8px -5px rgba(255, 255, 255, 0.28),
    /* bottom rim darkening — embossed */
    inset 0 -1px 0 rgba(0, 0, 0, 0.55),
    inset 0 -10px 18px -12px rgba(0, 0, 0, 0.5),
    /* side-light asymmetry (light from top-left) */
    inset 1px 0 0 rgba(255, 255, 255, 0.05),
    inset -1px 0 0 rgba(0, 0, 0, 0.28),
    /* inner rim thin outline reinforcement */
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transform-style: preserve-3d;
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* Specular top sheen — directional glass gloss */
.heroCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.03) 28%,
    rgba(255, 255, 255, 0) 55%
  );
  pointer-events: none;
}

/* Inner engraved frame — suggests the content sits in a recessed surface within the raised bezel */
.heroCard::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow:
    /* dark top edge → engraved look */
    inset 0 1px 0 rgba(0, 0, 0, 0.4),
    inset 0 2px 4px -3px rgba(0, 0, 0, 0.5),
    /* soft light bottom edge */
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.heroCardHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  transform: translateZ(26px);
}

.heroCardKicker {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
}

.heroCardStatus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.heroCardStatus .statusDot { width: 6px; height: 6px; }

.heroVin {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(10, 17, 32,0.5);
  margin-bottom: 18px;
  transform: translateZ(18px);
  box-shadow:
    0 12px 22px -12px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vinLabel {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.vinValue {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.05em;
}

.heroChain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 18px;
  transform: translateZ(32px);
}

.chainNode {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.chainDot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(10, 17, 32,0.8);
  position: relative;
  z-index: 2;
}

.chainDot.active {
  background: var(--accent);
  box-shadow:
    0 0 0 4px var(--accent-soft),
    0 0 14px rgba(56, 189, 248, 0.55);
  transform: translateZ(8px);
}

.chainLine {
  position: absolute;
  top: 5.5px;
  left: 12px;
  right: -50%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 0.45;
  z-index: 1;
}

.chainLabel {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.chainLabel.active { color: var(--ink); }

.heroHash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  transform: translateZ(14px);
}

.hashLabel {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hashValue {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.heroOrb {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--accent-soft) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
}

.heroRing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--hairline-strong);
  border-radius: 50%;
  opacity: 0.45;
  animation: spin 40s linear infinite;
  z-index: 0;
}

.heroRing::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px dashed var(--hairline);
  border-radius: 50%;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.scrollHint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scrollLine {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--accent));
  position: relative;
  overflow: hidden;
}

.scrollLine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #fff, transparent);
  animation: slideDown 2.4s ease-in-out infinite;
}

@keyframes slideDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* -------------------------------------------------------------------------- */
/* Vision — framed panel                                                      */
/* -------------------------------------------------------------------------- */

.framedPanel {
  position: relative;
  padding: clamp(32px, 5vw, 56px);
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(28, 37, 51, 0.9) 0%, rgba(28, 37, 51, 0.78) 100%);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  box-shadow: var(--shadow-md);
}

.framedPanel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-soft), transparent 40%, transparent 60%, var(--accent-soft));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/* Pillars                                                                    */
/* -------------------------------------------------------------------------- */

.foundationLayout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.foundationIntro .sectionTitle {
  max-width: 18ch;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pillar {
  position: relative;
  padding: 28px 24px 32px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(28, 37, 51, 0.92) 0%, rgba(28, 37, 51, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(244, 246, 250, 0.04),
    var(--shadow-md);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow:
    inset 0 1px 0 rgba(244, 246, 250, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.45);
}

.pillar:hover .pillarAccent {
  opacity: 1;
  height: 2px;
}

.pillar:hover .pillarIcon {
  border-color: rgba(56, 189, 248, 0.42);
}

.pillarHead {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.pillarIcon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0.06));
  color: var(--accent);
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: inset 0 1px 0 rgba(125, 211, 252, 0.18);
  transition: border-color 300ms ease;
}

.pillarIcon svg { width: 22px; height: 22px; }

.pillarTitle {
  flex: 1;
  min-width: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 0;
}

.pillarBody {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

.pillarAccent {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
  transition: opacity 400ms ease, height 400ms ease;
}

/* -------------------------------------------------------------------------- */
/* Audience                                                                   */
/* -------------------------------------------------------------------------- */

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audienceGroup {
  padding: 28px 26px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(28, 37, 51, 0.88) 0%, rgba(28, 37, 51, 0.72) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 200ms ease, transform 200ms ease;
  display: flex;
  flex-direction: column;
}

.audienceGroup:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
}

.audienceGroupHead {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.audienceGroupNum {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.audienceGroupHead h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.audienceGroup ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.audienceGroup li {
  color: var(--ink-soft);
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.audienceGroup li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.audienceBenefit {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-strong);
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.audienceTransition {
  margin: 56px 0 0;
  max-width: 60ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------- */
/* Team                                                                       */
/* -------------------------------------------------------------------------- */

.teamGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.teamCard {
  position: relative;
  padding: 20px 22px 26px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(28, 37, 51, 0.94) 0%, rgba(28, 37, 51, 0.82) 100%);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  overflow: hidden;
  transition: transform 350ms cubic-bezier(0.2,0.8,0.2,1), border-color 300ms ease, box-shadow 350ms ease;
}

/* Ambient hover glow */
.teamCard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, var(--accent-soft), transparent 40%, transparent 60%, var(--accent-soft));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.teamCard:hover {
  transform: translateY(-6px);
  border-color: var(--hairline-strong);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
}

.teamCard:hover::before { opacity: 1; }

/* Big ghost index */
.teamGhost {
  position: absolute;
  top: -18px;
  right: -6px;
  font-family: var(--display);
  font-size: 140px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(186, 230, 253, 0.18);
  pointer-events: none;
  transition: -webkit-text-stroke-color 400ms ease;
}

.teamCard:hover .teamGhost {
  -webkit-text-stroke-color: rgba(186, 230, 253, 0.4);
}

/* Left accent stripe */
.teamStripe {
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  transform: scaleY(0.4);
  transform-origin: center;
  opacity: 0.6;
  transition: transform 500ms cubic-bezier(0.2,0.8,0.2,1), opacity 400ms ease;
}

.teamCard:hover .teamStripe {
  transform: scaleY(1);
  opacity: 1;
}

/* Header row */
.teamHeader {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}

.teamId {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
}

.teamStatus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.teamStatus .statusDot { width: 5px; height: 5px; }

/* Avatar — square framed */
.teamAvatarFrame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 14px;
  z-index: 2;
}

.teamAvatarFrame .frameBracket {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--accent);
  opacity: 0.5;
  transition: opacity 300ms ease, width 300ms ease, height 300ms ease;
}

.teamCard:hover .teamAvatarFrame .frameBracket {
  opacity: 1;
  width: 20px;
  height: 20px;
}

.teamAvatar {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(56, 189, 248,0.5) 0%, rgba(56, 189, 248,0.08) 55%, transparent 72%),
    linear-gradient(140deg, rgba(56, 189, 248,0.14) 0%, rgba(8,12,18,0.9) 80%);
  border: 1px solid var(--hairline-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 28px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}

/* Subtle scanline pattern in avatar */
.teamAvatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.teamAvatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: inherit;
  display: block;
  z-index: 2;
}

.teamAvatar--photo {
  background: var(--bg);
}

.teamAvatar--photo .teamInitials {
  display: none;
}

.teamAvatar--photo::after {
  display: none;
}

.teamInitials {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(56, 189, 248,0.35);
  z-index: 1;
}

/* Meta block */
.teamMeta {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  align-content: start;
}

.teamRole {
  margin: 0;
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.teamRole::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.teamName {
  margin: 4px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.teamSignature {
  margin-top: 10px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
  opacity: 0.4;
  position: relative;
}

.teamSignature::after {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(56, 189, 248,0.6);
}

.teamBio {
  margin: 4px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.55;
}

.teamRoleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.teamRoleRow .teamRole {
  flex: 1;
  min-width: 0;
}

.teamSocial {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}

.teamSocialIcon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}

.teamSocialIcon:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.teamSocialIcon svg {
  width: 15px;
  height: 15px;
}

span.teamSocialIcon {
  pointer-events: none;
}

/* ---- Reserved / Coming soon variant ---- */

.teamCard--reserved {
  background:
    linear-gradient(180deg, rgba(28, 37, 51, 0.88) 0%, rgba(28, 37, 51, 0.72) 100%);
}

.teamCard--reserved .teamStatus {
  color: var(--ink-soft);
  opacity: 0.85;
}

.teamCard--reserved .teamStatus .statusDot {
  background: var(--accent);
}

.teamAvatar--reserved {
  background:
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248,0.14) 0%, transparent 70%),
    linear-gradient(140deg, rgba(56, 189, 248,0.06) 0%, rgba(8,12,18,0.7) 80%);
  border: 1px dashed rgba(56, 189, 248,0.45);
  display: grid;
  place-items: center;
  position: relative;
}

.teamAvatar--reserved::after { display: none; }

.teamLock {
  width: 44%;
  height: 44%;
  color: var(--accent);
  opacity: 0.75;
  filter: drop-shadow(0 2px 10px rgba(56, 189, 248,0.35));
  animation: lockFloat 4s ease-in-out infinite;
}

@keyframes lockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.teamShimmer {
  position: absolute;
  top: -30%;
  left: 0;
  width: 35%;
  height: 160%;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(56, 189, 248,0.35) 50%,
    transparent 100%);
  transform: translate3d(-250%, 0, 0) rotate(22deg);
  animation: shimmerSweep 3.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  mix-blend-mode: screen;
  will-change: transform;
}

@keyframes shimmerSweep {
  0%   { transform: translate3d(-250%, 0, 0) rotate(22deg); }
  100% { transform: translate3d(500%, 0, 0) rotate(22deg); }
}

.teamCard--reserved:hover .teamAvatar--reserved {
  border-color: var(--accent);
}

.teamName--reserved {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}

.teamRedact {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.6);
  animation: pulse 2.2s ease-out infinite;
  flex-shrink: 0;
}

.teamSoon {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  background: linear-gradient(90deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

.teamAnnouncement {
  margin: 0;
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.65;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.teamSignature--reserved {
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.5;
}

.teamSignature--reserved::after {
  animation: pulse 2.2s ease-out infinite;
}

/* -------------------------------------------------------------------------- */
/* Teaser                                                                     */
/* -------------------------------------------------------------------------- */

.teaserCard {
  position: relative;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 260px at 50% 0%, var(--accent-soft), transparent 70%),
    linear-gradient(180deg, rgba(28, 37, 51, 0.94) 0%, rgba(28, 37, 51, 0.84) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    /* outer cast — deep drop */
    0 36px 72px -24px rgba(0, 0, 0, 0.62),
    0 14px 28px -10px rgba(0, 0, 0, 0.38),
    /* top rim highlight — sharp light line */
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    /* top soft sheen fading down */
    inset 0 3px 8px -5px rgba(255, 255, 255, 0.28),
    /* bottom rim darkening — embossed */
    inset 0 -1px 0 rgba(0, 0, 0, 0.55),
    inset 0 -10px 18px -12px rgba(0, 0, 0, 0.5),
    /* side-light asymmetry (light from top-left) */
    inset 1px 0 0 rgba(255, 255, 255, 0.05),
    inset -1px 0 0 rgba(0, 0, 0, 0.28),
    /* inner rim thin outline reinforcement */
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  display: grid;
  justify-items: center;
  gap: 0;
}

/* Specular top sheen — directional glass gloss */
.teaserCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.02) 28%,
    rgba(255, 255, 255, 0) 55%
  );
  pointer-events: none;
}

/* Inner engraved frame — recessed surface within the raised bezel */
.teaserCard::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(0, 0, 0, 0.4),
    inset 0 2px 4px -3px rgba(0, 0, 0, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* Lift real content above the two decorative pseudo layers */
.teaserCard > *:not(.frameBracket) {
  position: relative;
  z-index: 1;
}

.teaser .sectionKicker {
  display: flex;
  max-width: 760px;
  margin: 0 auto 20px;
}

.teaserCard .frameBracket { opacity: 0.72; }

.bigLogo {
  display: block;
  width: 100%;
  max-width: min(480px, 80%);
  height: auto;
  margin: 0 auto 18px;
}

.teaserCard > * {
  min-width: 0;
}

.teaserSub {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 28px;
  max-width: 38ch;
}

.signupForm {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 520px;
  margin: 0 0 14px;
  padding: 6px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: rgba(10, 17, 32, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(244, 246, 250, 0.04),
    var(--shadow-md);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.signupForm:focus-within {
  border-color: var(--primary);
  box-shadow:
    inset 0 1px 0 rgba(244, 246, 250, 0.06),
    0 0 0 3px var(--primary-soft),
    var(--shadow-md);
}

.signupForm input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 14px 20px;
  font: inherit;
  font-size: 16px;
}

.signupForm input::placeholder { color: rgba(244,246,250,0.38); }
.signupForm input:focus { outline: none; }

.signupForm input:-webkit-autofill,
.signupForm input:-webkit-autofill:hover,
.signupForm input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 1000px rgba(10, 17, 32, 0) inset;
  transition: background-color 9999s;
}

.signupForm button {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}

.signupForm button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
}

.signupForm button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

.signupNote {
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.01em;
  max-width: 44ch;
  margin: 4px 0 0;
}

.signupStatus {
  margin: 2px 0 0;
  font-size: 14px;
  min-height: 1.2em;
}

.signupStatus[data-state="success"] { color: var(--accent); }
.signupStatus[data-state="error"] { color: #ff9a9a; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.siteFooter {
  padding: 28px 0 40px;
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  border-top: 1px solid var(--hairline);
  background: rgba(10, 17, 32, 0.65);
  backdrop-filter: blur(10px);
}

.siteFooterInner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-muted);
  font-size: 13px;
}

.footerBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
}

.footerBrand .brandMark { width: 22px; height: 22px; }
.footerBrand .brandMark svg { width: 14px; height: 14px; }

.footerLinks { display: flex; gap: 24px; }
.footerLinks a { transition: color 150ms ease; }
.footerLinks a:hover { color: var(--ink); }

/* -------------------------------------------------------------------------- */
/* Dot navigation                                                             */
/* -------------------------------------------------------------------------- */

.dotNav {
  position: fixed;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}

.dotNav ul {
  list-style: none;
  margin: 0;
  padding: 12px 9px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(10, 17, 32, 0.6);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.dotNav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.dotNav .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 246, 250, 0.35);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.dotNav a:hover .dot { background: var(--ink-soft); }

.dotNav a.active .dot {
  background: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.dotNav a::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  padding: 5px 12px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(10, 17, 32, 0.88);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.dotNav a.active::before,
.dotNav a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* -------------------------------------------------------------------------- */
/* Reveal animation                                                           */
/* -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .heroGrid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .heroCopy { display: contents; }
  .headline { text-align: center; }
  .heroVisual { order: 1; min-height: 0; margin-top: 8px; }
  .heroCta { order: 2; margin-top: 16px; }
  .heroRing { width: 360px; height: 360px; }
  .heroOrb { display: none; }
  .foundationLayout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 48px);
  }
  .foundationIntro .sectionTitle { max-width: 22ch; }
  .audienceGrid { grid-template-columns: repeat(2, 1fr); }
  .teamGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .siteFooterInner { flex-direction: column; align-items: flex-start; }
  /* .section { padding: 110px 0 20vh; } */
  .hero { padding-top: 100px; }
  .heroMeta { flex-wrap: wrap; gap: 16px; padding: 14px 18px; }
  .heroCta { flex-wrap: wrap; }
  .dotNav { display: none; }
}

@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .dotNav { right: 12px; }
  .signupForm { flex-direction: column; border-radius: var(--radius); padding: 10px; }
  .signupForm input { padding: 12px 14px; }
  .signupForm button { width: 100%; }
  .audienceGrid { grid-template-columns: 1fr; }
  .teamGrid { grid-template-columns: 1fr; }
  .heroRing { display: none; }
  .hero { padding-top: 88px; }
  .heroCta { flex-direction: column; align-items: stretch; gap: 10px; }
  .btnPrimary { justify-content: center; width: 100%; }
  .heroCard { padding: 18px; }
  .vinValue { font-size: 13px; letter-spacing: 0; }
  .hashValue { font-size: 11px; letter-spacing: 0; }
  .scrollHint { display: none; }
  .eyebrow, .subhead { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .scrollLine::after,
  .statusDot,
  .heroCardWrap,
  .heroRing { animation: none; }
  .heroCard { transition: none; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (hover: none), (pointer: coarse) {
  .heroCard { transition: none; }
}

/* -------------------------------------------------------------------------- */
/* Legal/Document pages (Datenschutz, Impressum)                              */
/* -------------------------------------------------------------------------- */

/* Doc-Pages scrollen normal über body — Hauptseite hat overflow:hidden,      */
/* das gilt hier nicht.                                                       */
html.docPage,
body.docPage {
  height: auto;
  overflow-x: clip;
  overflow-y: auto;
}

body.docPage {
  background: var(--bg);
  min-height: 100vh;
  max-width: 100vw;
}

.docPage .bg {
  background:
    radial-gradient(900px 600px at 70% 0%, #152033 0%, #0A1120 60%);
}

.docPage .bgGrid {
  opacity: 0.35;
}

.docPage main {
  display: block;
  min-height: calc(100vh - 200px);
  padding: clamp(80px, 10vw, 120px) var(--gutter) clamp(60px, 8vw, 100px);
}

.docLayout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 960px) {
  .docLayout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

.docToc {
  position: sticky;
  top: clamp(90px, 8vh, 110px);
  font-size: 14px;
  line-height: 1.5;
  min-width: 0;
}

.docToc h2 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
}

.docToc ol {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-left: 1px solid var(--hairline);
}

.docToc li {
  margin: 0;
}

.docToc a {
  display: block;
  padding: 8px 14px;
  color: var(--ink-muted);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 160ms ease, border-color 160ms ease;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.docToc a:hover {
  color: var(--ink);
}

.docToc a.docToc__active,
.docToc a:target {
  color: var(--accent);
  border-left-color: var(--accent);
}

.docTocBack {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--primary);
  border: 1px solid var(--primary-soft);
  border-radius: var(--radius);
  background: rgba(249, 115, 22, 0.08);
  transition: background 160ms ease, border-color 160ms ease;
}

.docTocBack:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: var(--primary);
  color: var(--primary-hover);
}

@media (max-width: 960px) {
  .docToc {
    position: static;
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
  }

  .docToc summary {
    cursor: pointer;
    font-family: var(--display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 4px 0;
    list-style: none;
  }

  .docToc summary::-webkit-details-marker {
    display: none;
  }

  .docToc summary::after {
    content: " +";
    color: var(--accent);
  }

  .docToc[open] summary::after {
    content: " −";
  }

  .docToc ol {
    margin-top: 12px;
  }
}

.docContent {
  max-width: min(720px, 100%);
  min-width: 0;
  background: rgba(28, 37, 51, 0.55);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
}

.docContent h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--ink);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.docContent .docMeta {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 40px;
  font-family: var(--sans);
}

.docContent h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 22px);
  line-height: 1.25;
  margin: 48px 0 16px;
  color: var(--accent);
  scroll-margin-top: 100px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.docContent h2:first-of-type {
  margin-top: 0;
}

.docContent h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  margin: 28px 0 10px;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.docContent p,
.docContent li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.docContent ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.docContent li::marker {
  color: var(--accent);
}

.docContent a {
  color: var(--accent);
  border-bottom: 1px solid rgba(56, 189, 248, 0.4);
  transition: color 160ms ease, border-color 160ms ease;
  overflow-wrap: anywhere;
}

.docContent a:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

.docContent dl {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
  gap: 8px 18px;
  margin: 0 0 14px;
}

.docContent dt {
  font-weight: 600;
  color: var(--ink-muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.docContent dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .docContent dl {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px 0;
  }

  .docContent dd {
    margin: 0 0 10px;
  }
}

.docContent .docBackMobile {
  display: none;
}

@media (max-width: 960px) {
  .docContent .docBackMobile {
    display: inline-block;
    margin-top: 32px;
  }
}

/* Signup consent line on index.html                                          */
.signupConsent {
  font-size: 12px;
  color: var(--ink-muted);
  margin: 8px 0 0;
  text-align: center;
}

.signupConsent a {
  color: var(--ink-muted);
  border-bottom: 1px solid var(--hairline-strong);
  transition: color 160ms ease, border-color 160ms ease;
}

.signupConsent a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Footer-Link aktiv (für aria-current="page" auf Legal-Seiten)               */
.siteFooter a[aria-current="page"] {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
