@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700&family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  color-scheme: dark;
  --bg: #070b13;
  --panel: #0e1620;
  --panel-2: #17222d;
  --ink: #eef9f8;
  --muted: #94a8ad;
  --cyan: #55f2e6;
  --cyan-dark: #0da99f;
  --amber: #f2bd57;
  --hot: #f0466e;
  --line: rgba(116, 244, 231, .22);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(85,242,230,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,242,230,.025) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--cyan); color: #03100f; padding: 10px 14px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 78px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, height .25s;
}
.site-header.scrolled { height: 66px; background: rgba(7,11,19,.92); border-color: var(--line); backdrop-filter: blur(14px); }
.brand img { width: 180px; filter: drop-shadow(0 0 12px rgba(85,242,230,.2)); }
nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 42px); }
nav a, .header-cta { text-decoration: none; text-transform: uppercase; font: 600 11px/1 IBM Plex Mono, monospace; letter-spacing: .12em; }
nav a { color: #b4c8ca; transition: color .2s; }
nav a:hover { color: var(--cyan); }
.header-cta { border: 1px solid var(--cyan); padding: 12px 16px; color: var(--cyan); box-shadow: inset 0 0 0 0 var(--cyan); transition: color .2s, box-shadow .2s; }
.header-cta:hover { color: #041111; box-shadow: inset 220px 0 0 0 var(--cyan); }

.hero { position: relative; min-height: 760px; height: 100vh; max-height: 1000px; display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -3; background: url('/assets/delivery-run.png') 68% center / cover no-repeat; transform: scale(1.025); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,8,14,.98) 0%, rgba(4,8,14,.89) 38%, rgba(4,8,14,.34) 72%, rgba(4,8,14,.58) 100%), linear-gradient(0deg, var(--bg), transparent 45%); }
.hero::after { content: ''; position: absolute; z-index: -1; inset: 0; background: radial-gradient(circle at 68% 54%, transparent 0, transparent 18%, rgba(2,6,11,.34) 70%); }
.scanlines { position: absolute; inset: 0; z-index: -1; opacity: .17; pointer-events: none; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(85,242,230,.1) 4px); mix-blend-mode: screen; }
.hero-content { width: min(760px, calc(100% - 48px)); margin: 0 max(24px, calc((100vw - var(--max)) / 2)); padding: 140px 0 76px; }
.hero-logo { width: clamp(260px, 36vw, 520px); margin: 20px 0 8px; filter: drop-shadow(0 0 24px rgba(85,242,230,.18)); }
.eyebrow, .kicker { margin: 0; color: var(--cyan); text-transform: uppercase; font: 600 11px/1.3 IBM Plex Mono, monospace; letter-spacing: .16em; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 14px var(--hot); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 5px var(--hot); } }
h1, h2, h3 { font-family: Barlow Condensed, Impact, sans-serif; text-transform: uppercase; letter-spacing: -.025em; line-height: .92; }
h1 { margin: 0; font-size: clamp(58px, 8.8vw, 126px); font-weight: 800; }
h1 em { color: var(--cyan); font-style: italic; text-shadow: 0 0 30px rgba(85,242,230,.22); }
.hero-copy { max-width: 660px; color: #b9c7ca; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 22px; border: 1px solid; text-decoration: none; text-transform: uppercase; font: 600 12px/1 IBM Plex Mono, monospace; letter-spacing: .08em; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); border-color: var(--cyan); color: #041210; box-shadow: 0 0 26px rgba(85,242,230,.16); }
.button-primary:hover { background: #9afff7; }
.button-secondary { border-color: rgba(238,249,248,.34); color: var(--ink); background: rgba(7,11,19,.58); }
.button-secondary:hover { border-color: var(--ink); }
.hero-facts { display: flex; gap: 0; margin: 46px 0 0; }
.hero-facts div { padding: 0 28px; border-left: 1px solid rgba(238,249,248,.2); }
.hero-facts div:first-child { padding-left: 0; border: 0; }
.hero-facts dt { color: #72888e; text-transform: uppercase; font: 500 10px/1 IBM Plex Mono, monospace; letter-spacing: .12em; }
.hero-facts dd { margin: 8px 0 0; font: 700 16px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.scroll-cue { position: absolute; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 44px; margin: 0; color: #768a8e; text-transform: uppercase; writing-mode: vertical-rl; font: 500 9px/1 IBM Plex Mono, monospace; letter-spacing: .14em; }
.scroll-cue span { display: inline-block; height: 66px; width: 1px; margin-top: 14px; background: linear-gradient(var(--cyan), transparent); }

.manifest, .systems, .development { position: relative; max-width: var(--max); margin: auto; padding: 130px 24px; }
.section-number { position: absolute; top: 84px; right: 24px; color: rgba(85,242,230,.045); font: 800 clamp(140px, 21vw, 280px)/1 Barlow Condensed, sans-serif; user-select: none; }
.section-heading { position: relative; max-width: 780px; }
h2 { margin: 16px 0 30px; font-size: clamp(48px, 7vw, 94px); }
.manifest-copy { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin: 60px 0 72px 34%; color: var(--muted); }
.manifest-copy p { margin: 0; }
.manifest-copy .lead { color: var(--ink); font: 600 clamp(23px, 2.4vw, 34px)/1.25 Barlow Condensed, sans-serif; text-transform: uppercase; }
.loop { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.loop li { position: relative; min-height: 220px; padding: 34px 28px; border-right: 1px solid var(--line); overflow: hidden; }
.loop li:last-child { border: 0; }
.loop li::before { content: ''; position: absolute; inset: auto 0 0; height: 4px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.loop li:hover::before { transform: scaleX(1); }
.loop span { color: var(--amber); font: 500 11px/1 IBM Plex Mono, monospace; }
.loop strong { display: block; margin: 48px 0 12px; font: 800 36px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.loop small { color: var(--muted); font-size: 13px; }

.media-section { max-width: 1440px; margin: auto; padding: 72px 24px 130px; }
.media-copy { max-width: var(--max); margin: 0 auto 38px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.media-copy h2 { margin-bottom: 0; }
.media-copy p:last-child { color: var(--muted); max-width: 430px; }
.video-shell { position: relative; aspect-ratio: 16/9; border: 1px solid rgba(85,242,230,.38); background: #000; box-shadow: 0 34px 100px rgba(0,0,0,.56), 0 0 70px rgba(85,242,230,.05); }
.video-shell::before, .video-shell::after { content: ''; position: absolute; z-index: 2; width: 56px; height: 56px; pointer-events: none; }
.video-shell::before { top: -1px; left: -1px; border-top: 3px solid var(--cyan); border-left: 3px solid var(--cyan); }
.video-shell::after { right: -1px; bottom: -1px; border-right: 3px solid var(--amber); border-bottom: 3px solid var(--amber); }
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.video-status { position: absolute; z-index: 3; left: 18px; top: 18px; display: flex; gap: 16px; pointer-events: none; text-transform: uppercase; font: 600 9px/1 IBM Plex Mono, monospace; letter-spacing: .12em; }
.video-status span { color: var(--hot); }
.video-status small { color: var(--muted); font: inherit; }

.systems { padding-top: 100px; }
.feature { margin-top: 90px; background: var(--panel); border: 1px solid rgba(238,249,248,.08); }
.feature-wide { display: grid; grid-template-columns: 1.65fr .75fr; align-items: stretch; }
.feature-reverse { grid-template-columns: .75fr 1.65fr; }
.feature-reverse .feature-image { order: 2; }
.feature-image { min-height: 330px; overflow: hidden; background: #020407; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature:hover .feature-image img { transform: scale(1.02); }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 66px); }
.feature-index { margin: 0 0 28px; color: var(--amber); font: 500 10px/1 IBM Plex Mono, monospace; letter-spacing: .13em; }
.feature h3 { margin: 0 0 20px; font-size: clamp(35px, 4vw, 56px); }
.feature-copy > p:last-child { margin: 0; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature-grid .feature { display: flex; flex-direction: column; }
.feature-grid .feature-image { aspect-ratio: 16/9; min-height: 0; }

.soundtrack { max-width: 1440px; margin: 50px auto; padding: 110px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; background: linear-gradient(120deg, #0f1822, #080d15); border-block: 1px solid rgba(85,242,230,.16); }
.soundtrack-copy p:not(.kicker) { max-width: 560px; color: var(--muted); }
.text-link { display: inline-block; margin-top: 18px; color: var(--cyan); text-decoration: none; text-transform: uppercase; font: 600 11px/1 IBM Plex Mono, monospace; letter-spacing: .08em; }
.text-link span { margin-left: 10px; }
.soundtrack-art { position: relative; min-height: 440px; display: grid; place-items: center; overflow: hidden; }
.disc { position: relative; width: min(320px, 72vw); aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(85,242,230,.3); background: repeating-radial-gradient(circle, #101b25 0 4px, #071018 5px 7px); box-shadow: 0 0 80px rgba(85,242,230,.12); animation: spin 18s linear infinite; }
.disc::before { content: ''; position: absolute; inset: 17%; border-radius: 50%; border: 1px solid var(--hot); background: radial-gradient(circle, var(--bg) 0 12%, var(--hot) 13% 15%, #35101e 16% 100%); }
.disc i { position: absolute; inset: 48%; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
@keyframes spin { to { transform: rotate(360deg); } }
.wave { position: absolute; inset: 50% 4% auto; height: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.wave-a { transform: translateY(-84px) skewY(-8deg); }
.wave-b { transform: translateY(16px) skewY(11deg); opacity: .6; }
.wave-c { transform: translateY(96px) skewY(-5deg); opacity: .3; }

.development { padding-block: 150px; }
.status-card { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; gap: 70px; align-items: end; padding: clamp(36px, 6vw, 82px); border: 1px solid var(--line); background: linear-gradient(125deg, rgba(85,242,230,.1), rgba(240,70,110,.035) 55%, rgba(242,189,87,.07)); overflow: hidden; }
.status-card::after { content: 'ACTIVE'; position: absolute; right: -10px; top: -40px; color: rgba(85,242,230,.035); font: 800 180px/1 Barlow Condensed, sans-serif; }
.status-card > * { position: relative; z-index: 1; }
.status-card h2 { font-size: clamp(48px, 6vw, 82px); }
.status-card p:not(.kicker) { max-width: 720px; color: var(--muted); }
.status-actions { display: grid; gap: 12px; }

footer { max-width: var(--max); margin: auto; min-height: 180px; padding: 44px 24px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; border-top: 1px solid var(--line); }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font: 700 21px/1 Barlow Condensed, sans-serif; text-transform: uppercase; }
.footer-brand span, .copyright { color: #71868b; font: 500 10px/1.5 IBM Plex Mono, monospace; text-transform: uppercase; letter-spacing: .09em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: #9fb2b6; text-decoration: none; text-transform: uppercase; font: 500 10px/1 IBM Plex Mono, monospace; letter-spacing: .1em; }
.footer-links a:hover { color: var(--cyan); }
.copyright { grid-column: 1 / -1; margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 20px; }
  .site-header nav { display: none; }
  .brand img { width: 150px; }
  .hero-content { margin-inline: 24px; padding-bottom: 56px; }
  .scroll-cue { display: none; }
  .manifest-copy { margin-left: 0; grid-template-columns: 1fr; gap: 24px; }
  .loop { grid-template-columns: 1fr 1fr; }
  .loop li:nth-child(2) { border-right: 0; }
  .loop li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .media-copy, .soundtrack, .status-card { grid-template-columns: 1fr; }
  .feature-wide, .feature-reverse { grid-template-columns: 1fr; }
  .feature-reverse .feature-image { order: 0; }
  .soundtrack-art { min-height: 340px; }
}

@media (max-width: 620px) {
  .site-header { height: 64px; }
  .header-cta { padding: 10px 12px; font-size: 9px; }
  .hero { min-height: 780px; height: auto; max-height: none; }
  .hero-bg { background-position: 61% center; }
  .hero::before { background: linear-gradient(0deg, rgba(4,8,14,.98) 10%, rgba(4,8,14,.72) 70%, rgba(4,8,14,.66)); }
  .hero-content { width: auto; padding-top: 120px; }
  h1 { font-size: clamp(54px, 17vw, 82px); }
  .hero-copy { font-size: 15px; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-facts div { padding-left: 18px; }
  .hero-facts div:first-child { padding-left: 18px; border-left: 1px solid rgba(238,249,248,.2); }
  .manifest, .systems, .development { padding-block: 94px; }
  .section-number { display: none; }
  .loop { grid-template-columns: 1fr; }
  .loop li { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .loop strong { margin-top: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { margin-top: 54px; }
  .video-status { display: none; }
  .soundtrack { padding-block: 80px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
