:root {
  --bg: #06080c;
  --bg-2: #0a0e15;
  --text: #f2f5f9;
  --text-muted: #7c8799;
  --text-dim: #424b5c;
  --text-faint: #242a36;
  --accent: #3db1e8;
  --accent-soft: #6bc6f0;
  --accent-deep: #1e6aa5;
  --grid: rgba(255, 255, 255, 0.028);
  --border: rgba(255, 255, 255, 0.06);
  --max-width: 1440px;
  --pad-x: clamp(24px, 5vw, 80px);
  --mono: 'IBM Plex Mono', 'SFMono-Regular', ui-monospace, Menlo, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: clip;
  font-feature-settings: 'cv11', 'ss01';
  position: relative;
}

main {
  position: relative;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================ */
/* BACKGROUND LAYERS                                            */
/* ============================================================ */

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-halo {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 78% 30%,
      rgba(61, 177, 232, 0.22) 0%,
      rgba(61, 177, 232, 0.08) 30%,
      transparent 62%),
    radial-gradient(ellipse 45% 35% at 12% 88%,
      rgba(30, 106, 165, 0.10) 0%,
      transparent 55%);
  filter: blur(1px);
}

.bg-grid {
  display: none;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%,
      transparent 40%,
      rgba(0, 0, 0, 0.45) 100%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.6  0 0 0 0 0.7  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ============================================================ */
/* NAV                                                          */
/* ============================================================ */

.nav {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(58px, 6.8vh, 92px) var(--pad-x) clamp(36px, 4.5vh, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(6px, 0.7vh, 10px);
  color: var(--text);
  margin-left: clamp(0px, 0.8vw, 18px);
  transition: opacity 240ms ease;
}

.wordmark-lockup:hover { opacity: 0.85; }

.wordmark {
  font-family: var(--sans);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1;
}

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

.wordmark-caption {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-left: 2px;
  line-height: 1;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(61, 177, 232, 0.7), 0 0 3px rgba(61, 177, 232, 1);
  animation: pulse 3.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.88); }
}

/* ============================================================ */
/* HERO                                                         */
/* ============================================================ */

.hero {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(32px, 6vh, 80px) var(--pad-x) clamp(80px, 12vh, 160px);
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: clamp(36px, 6vh, 64px);
}

.eyebrow-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--text-dim);
}

.headline {
  font-family: var(--sans);
  font-size: clamp(44px, 7.4vw, 108px);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 0.98;
  color: var(--text);
  margin-bottom: clamp(28px, 4vh, 48px);
}

.headline-emph {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.038em;
  color: #a6c5e3;
  background: linear-gradient(180deg, #c5d9ec 0%, #8eb4d6 52%, #527fad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheadline {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: clamp(40px, 5.5vh, 60px);
}

.cta {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px 16px 30px;
  background: transparent;
  border: 1px solid rgba(61, 177, 232, 0.35);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 280ms var(--ease),
    box-shadow 280ms var(--ease),
    transform 280ms var(--ease);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(61, 177, 232, 0) 0%,
    rgba(61, 177, 232, 0.14) 50%,
    rgba(61, 177, 232, 0) 100%);
  transform: translateX(-110%);
  transition: transform 600ms var(--ease);
  z-index: -1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(61, 177, 232, 0);
  transition: border-color 280ms var(--ease);
  pointer-events: none;
}

.btn-primary:hover {
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(61, 177, 232, 0.16);
}

.btn-primary:hover::before {
  transform: translateX(110%);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-arrow {
  display: inline-block;
  transition: transform 280ms var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 280ms var(--ease);
}

.btn-line {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: width 280ms var(--ease);
}

.btn-secondary:hover {
  color: var(--text);
}

.btn-secondary:hover .btn-line {
  width: 42px;
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

.meta-sep {
  color: var(--text-faint);
}

/* ----- hero visual (rings) ----- */

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(640px, 92vh, 1120px);
  aspect-ratio: 1;
  transform: translate(44%, -6%);
  pointer-events: none;
  z-index: 1;
}

.hero-rings {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-rings::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle at 50% 50%,
    rgba(61, 177, 232, 0.18) 0%,
    rgba(61, 177, 232, 0.06) 32%,
    transparent 62%);
  filter: blur(80px);
  z-index: -1;
}

.hero-rings svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 36px rgba(61, 177, 232, 0.28));
  opacity: 0.92;
}

.ring {
  transform-box: fill-box;
  transform-origin: center;
}

.ring-outer {
  animation: spin 320s linear infinite;
}

.ring-inner {
  animation: spin-rev 420s linear infinite;
}

@keyframes spin     { to { transform: rotate(360deg);  } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

/* ============================================================ */
/* WHAT WE'RE BUILDING                                          */
/* ============================================================ */

.building {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--pad-x) clamp(72px, 10vh, 140px);
}

.building-header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(64px, 10vh, 128px);
}

.building-header-left {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vh, 38px);
}

.building-caption {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.building-caption-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--text-dim);
}

.building-title {
  font-family: var(--sans);
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.98;
  color: var(--text);
  margin: 0;
}

.building-intro {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 42ch;
  padding-bottom: 6px;
  margin: 0;
}

.building-list {
  list-style: none;
  padding: clamp(48px, 6vh, 80px) 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 5.5vw, 104px);
  border-top: 1px solid var(--border);
}

.building-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.6vh, 30px);
}

.building-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  margin-bottom: clamp(4px, 0.6vh, 10px);
}

.building-logo img,
.building-logo svg {
  display: block;
  width: auto;
  height: clamp(30px, 3vh, 40px);
  max-width: clamp(64px, 6.5vw, 96px);
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 240ms ease;
}

.building-logo--dws img {
  height: clamp(30px, 3vh, 40px);
  filter: invert(1);
}

.building-logo--assetmodel img {
  height: clamp(30px, 3vh, 40px);
  opacity: 0.84;
  filter: saturate(0.78);
}

.building-item:hover .building-logo img {
  opacity: 1;
}

.building-item:hover .building-logo--assetmodel img {
  opacity: 0.94;
}

.building-item + .building-item::before {
  content: '';
  position: absolute;
  left: calc(clamp(48px, 5.5vw, 104px) / -2);
  top: 0;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 100%);
}

.building-index {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  opacity: 0.85;
}

.building-name {
  font-family: var(--sans);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--text);
  margin: 0;
}

.building-name .tm {
  font-size: 0.38em;
  font-weight: 500;
  vertical-align: 0.85em;
  letter-spacing: 0;
  margin-left: 2px;
  color: var(--text-muted);
  font-family: var(--sans);
}

.building-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(to right,
    var(--text-dim) 0%,
    rgba(61, 177, 232, 0.28) 100%);
  margin: 2px 0 2px;
}

.building-desc {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 38ch;
  margin: 0;
}

/* ============================================================ */
/* PIPELINE — system architecture                               */
/* ============================================================ */

.pipeline {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) var(--pad-x) clamp(80px, 12vh, 160px);
}

.pipeline-header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(28px, 4.5vh, 56px);
}

.pipeline-caption {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 clamp(16px, 2.2vh, 28px);
  grid-column: 1;
}

.pipeline-caption-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--text-dim);
}

.pipeline-title {
  font-family: var(--sans);
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 0.98;
  color: var(--text);
  margin: 0;
  grid-column: 1;
  grid-row: 2;
}

.pipeline-title-emph {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.034em;
  background: linear-gradient(180deg, #c5d9ec 0%, #8eb4d6 52%, #527fad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #a6c5e3;
}

.pipeline-intro {
  grid-column: 2;
  grid-row: 2;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 44ch;
  padding-bottom: 6px;
  margin: 0;
}

.pipeline-stage {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: clamp(20px, 3vh, 40px);
}

.pipeline-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* SVG element styling */

.pipeline-col {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  fill: var(--text-dim);
  text-transform: uppercase;
}

.pipeline-col-tick {
  stroke: var(--text-faint);
  stroke-width: 1;
}

.pipeline-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  fill: var(--text-muted);
  dominant-baseline: middle;
}

.pipeline-label--out {
  fill: var(--text);
  font-weight: 500;
}

.pipeline-label-tm {
  font-size: 0.55em;
  baseline-shift: super;
  fill: var(--text-dim);
}

.pipeline-node {
  fill: var(--accent);
  filter: drop-shadow(0 0 4px rgba(61, 177, 232, 0.55));
}

.pipeline-base {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  stroke-linecap: round;
}

.pipeline-bus {
  stroke: rgba(61, 177, 232, 0.18);
  stroke-width: 1;
  stroke-linecap: round;
}

.pipeline-pulse {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 7 100;
  filter: drop-shadow(0 0 3px rgba(61, 177, 232, 0.7));
  animation: pipeline-pulse 5.6s linear infinite;
  opacity: 0.95;
}

.pipeline-pulse--mid {
  stroke-width: 1.8;
  animation-duration: 4.4s;
}

.pipeline-pulse--short {
  stroke-width: 1.8;
  animation-duration: 3.2s;
  stroke-dasharray: 5 100;
}

@keyframes pipeline-pulse {
  0%   { stroke-dashoffset: 7;    opacity: 0;    }
  6%   { opacity: 1;               }
  92%  { opacity: 1;               }
  100% { stroke-dashoffset: -100; opacity: 0;    }
}

.pipeline-core-ring {
  transform-box: fill-box;
  transform-origin: center;
}

.pipeline-core-ring--outer {
  animation: pipeline-spin 220s linear infinite;
}

.pipeline-core-ring--inner {
  animation: pipeline-spin-rev 320s linear infinite;
}

@keyframes pipeline-spin     { to { transform: rotate(360deg);  } }
@keyframes pipeline-spin-rev { to { transform: rotate(-360deg); } }

.pipeline-core-label {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.022em;
  fill: var(--text);
}

.pipeline-core-tm {
  font-size: 10px;
  baseline-shift: super;
  fill: var(--text-muted);
}

@media (max-width: 960px) {
  .pipeline-header {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vh, 40px);
    align-items: start;
  }
  .pipeline-caption,
  .pipeline-title,
  .pipeline-intro {
    grid-column: 1;
    grid-row: auto;
  }
  .pipeline-intro {
    padding-bottom: 0;
  }
  .pipeline-stage {
    overflow-x: auto;
  }
  .pipeline-svg {
    min-width: 720px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pipeline-pulse,
  .pipeline-core-ring--outer,
  .pipeline-core-ring--inner {
    animation: none !important;
  }
  .pipeline-pulse {
    opacity: 0.5;
    stroke-dashoffset: -50;
  }
}

/* ============================================================ */
/* MARQUEE                                                      */
/* ============================================================ */

.marquee {
  position: relative;
  z-index: 2;
  padding: 44px 0 52px;
  border-top: 1px solid var(--border);
}

.marquee--divider {
  padding: clamp(30px, 4vh, 46px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee--divider .marquee-track {
  animation-duration: 104s;
  animation-direction: reverse;
}

.marquee--divider .marquee-item {
  font-size: 12px;
  color: var(--text-muted);
}

.marquee--divider .marquee-sep {
  opacity: 0.4;
}

.marquee-header {
  max-width: var(--max-width);
  margin: 0 auto 32px;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(61, 177, 232, 0.7);
  flex-shrink: 0;
}

.marquee-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
  margin-left: 4px;
}

.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right,
    transparent 0,
    #000 140px,
    #000 calc(100% - 140px),
    transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
    transparent 0,
    #000 140px,
    #000 calc(100% - 140px),
    transparent 100%);
}

.marquee-track {
  display: inline-flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  animation: scroll 88s linear infinite;
  will-change: transform;
  padding-right: 64px;
}

.marquee-item {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text);
  text-transform: uppercase;
}

.marquee-sep {
  color: var(--accent);
  opacity: 0.55;
  font-size: 11px;
}

@keyframes scroll {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

/* ============================================================ */
/* ENTRANCE                                                     */
/* ============================================================ */

.headline,
.subheadline,
.cta {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 1500ms var(--ease) forwards;
}

.headline     { animation-delay: 240ms; }
.subheadline  { animation-delay: 440ms; }
.cta          { animation-delay: 620ms; }

.hero-visual {
  opacity: 0;
  animation: fade-in 2400ms var(--ease) 200ms forwards;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  to { opacity: 1; }
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */

@media (max-width: 960px) {
  .hero {
    min-height: calc(100vh - 100px);
    padding-top: clamp(40px, 10vh, 120px);
    padding-bottom: clamp(64px, 10vh, 120px);
    justify-content: flex-end;
  }

  .hero-visual {
    width: min(120vw, 900px);
    transform: translate(22%, -18%);
  }

  .status {
    display: none;
  }

  .building-header {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vh, 40px);
    align-items: start;
  }

  .building-intro {
    padding-bottom: 0;
  }

  .building-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: clamp(32px, 5vh, 56px);
  }

  .building-item {
    padding: clamp(32px, 5vh, 48px) 0;
    border-top: 1px solid var(--border);
  }

  .building-item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .building-item + .building-item::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 28px var(--pad-x);
  }
  .headline {
    margin-bottom: 24px;
  }
  .subheadline {
    margin-bottom: 32px;
  }
  .cta {
    gap: 20px;
  }
  .marquee-item {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-halo,
  .hero-rings::before,
  .ring-outer,
  .ring-inner,
  .marquee-track,
  .status-dot {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
  .eyebrow, .headline, .subheadline, .cta, .meta, .hero-visual {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================ */
/* LOADER (currently disabled — HTML element removed.           */
/*   Kept in CSS for easy re-enable: restore <div class="loader">*/
/*   + body.loading class + script block in index.html.)        */
/* ============================================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 600ms ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-video {
  max-width: min(72vw, 640px);
  max-height: 70vh;
  width: auto;
  height: auto;
  display: block;
}

body.loading .nav,
body.loading main {
  opacity: 0;
  visibility: hidden;
}

/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */

.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  margin-top: clamp(56px, 9vh, 128px);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(60px, 9vh, 104px) var(--pad-x) clamp(40px, 5vh, 60px);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(48px, 7vh, 88px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  transition: opacity 240ms ease;
}

.footer-brand:hover { opacity: 0.85; }

.footer-wordmark {
  font-family: var(--sans);
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 40px);
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  transition: color 240ms ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: clamp(24px, 3.5vh, 36px);
  border-top: 1px solid var(--border);
}

.footer-copyright {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--sans);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(28px, 5vh, 40px);
    margin-bottom: clamp(36px, 6vh, 60px);
  }
  .footer-nav {
    gap: 18px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
