/* ============================================================
   MATRYX company site
   Palette lifted from the ICARUS visual tool (scenePalette.ts):
   void #000, signature gold #c9a26b, charge accent #5cd0ff,
   matte aluminum #7a818a.
   ============================================================ */

:root {
  --void: #000000;
  --surface: #0c1119;
  --ink: #e6ecf3;
  --ink-muted: #94a3b8;
  --gold: #c9a26b;
  --gold-deep: #8a6a3c;
  --charge: #5cd0ff;
  --line: rgba(148, 163, 184, 0.18);
  --gold-line: rgba(201, 162, 107, 0.45);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #14110b; }

/* keyboard focus: high-contrast charge ring, visible on black and over photos */
:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--charge);
  outline-offset: 3px;
  border-radius: 2px;
}

/* skip link + screen-reader-only utility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #0b0d12;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- film grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.6s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-1.5%, 1%); }
  100% { transform: translate(1%, -1.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
}

/* ---------- scroll progress ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  z-index: 60;
}

/* ---------- nav ---------- */
#topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
#topnav.scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.34em;
  text-indent: 0.34em; /* visually balance tracking */
}
.ring-glyph { color: var(--gold); }
.ring-glyph circle {
  stroke-dasharray: 43 7; /* split ring: gaps locked at 3 and 9 o'clock */
  stroke-dashoffset: -3.5;
  transition: stroke-dasharray 0.45s ease, stroke-dashoffset 0.45s ease;
}
.brand:hover .ring-glyph circle,
.foot-brand:hover .ring-glyph circle {
  stroke-dasharray: 100 0; /* halves merge on hover */
  stroke-dashoffset: 0;
}
#topnav nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
#topnav nav a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--ink-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
#topnav nav a:hover { color: var(--ink); border-color: var(--gold); }
#topnav nav a.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 8px 16px;
}
#topnav nav a.nav-cta:hover { background: var(--gold); color: #14110b; }

/* ---------- cinematic hero (full-bleed photoreal) ---------- */
.cinematic-hero {
  position: relative;
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
}
.ch-media {
  position: absolute;
  inset: -6% -2%;
  background-size: cover;
  background-position: 60% 45%;
  transform: scale(1.04);
  will-change: transform;
  animation: hero-drift 26s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.10) translateY(-14px); }
}
.ch-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.12) 30%, rgba(0,0,0,0.30) 62%, rgba(0,0,0,0.93) 100%),
    linear-gradient(75deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 42%, transparent 70%);
}
.ch-copy {
  position: absolute;
  left: clamp(20px, 6vw, 100px);
  bottom: clamp(96px, 17vh, 200px);
  max-width: 820px;
  z-index: 3;
  pointer-events: none;
}
.ch-copy .cta-row { pointer-events: auto; }
.ch-tag {
  position: absolute;
  left: clamp(20px, 6vw, 100px);
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9.5vw, 138px);
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.ch-copy .sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 21px);
  color: var(--ink-muted);
  max-width: 56ch;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.cta-row { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(230, 236, 243, 0.4);
  padding: 15px 28px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { border-color: var(--ink); background: rgba(230, 236, 243, 0.08); }
.btn.solid {
  background: var(--ink);
  color: #0b0d12;
  border-color: var(--ink);
}
.btn.solid:hover { background: var(--gold); border-color: var(--gold); color: #14110b; }

.hud-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--charge);
  box-shadow: 0 0 10px var(--charge);
  animation: hud-pulse 2.4s ease-in-out infinite;
}
@keyframes hud-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.scroll-cue {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  width: 26px; height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.scroll-cue span {
  width: 2px; height: 9px;
  margin-top: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(16px); opacity: 0; }
}

/* ---------- panels ---------- */
.panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vh, 200px) 0;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}
/* text panels size to their content; the hero/video/cover panels keep their
   own full-height rules, so the lean page reads dense, not stretched. */
.inner {
  width: min(1240px, calc(100% - clamp(40px, 12vw, 192px)));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.inner.narrow { max-width: 880px; }

.media-panel { overflow: hidden; border-top: none; }
.media-panel::before {
  content: "";
  position: absolute;
  inset: -12% 0;
  background: var(--bg) center / cover no-repeat;
  opacity: 0.55;
  transform: translateY(calc(var(--plx, 0) * 1px));
  will-change: transform;
}
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 36%, rgba(0,0,0,0.3) 64%, rgba(0,0,0,0.92) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(0,0,0,0.55), transparent 60%);
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 22ch;
}
.statement h2 { max-width: 28ch; }

.lede {
  margin-top: 26px;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  max-width: 52ch;
  font-weight: 400;
}
.body {
  margin-top: 26px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-muted);
  max-width: 62ch;
}

/* ---------- chips / specs ---------- */
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.chips li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(8, 10, 14, 0.82);
  padding: 12px 16px;
}
.footnote {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.footnote.center { text-align: center; }

/* full-bleed cover panels: show more image, cinematic */
.media-panel.cover { min-height: 104vh; }
.media-panel.cover::before { opacity: calc(0.82 * var(--reveal, 1)); inset: -8% 0; }
.media-panel.cover::after {
  background:
    linear-gradient(180deg, #000 0%, rgba(0,0,0,0.6) 14%, rgba(0,0,0,0.12) 38%, rgba(0,0,0,0.22) 62%, rgba(0,0,0,0.92) 100%),
    linear-gradient(80deg, rgba(0,0,0,0.6), transparent 60%);
}

/* ---------- roadmap ---------- */
.road {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(44px, 7vh, 72px);
}
.road-col {
  border-top: 2px solid var(--line);
  padding: 26px 0 10px 0;
}
.road-col.now { border-top-color: var(--gold); }
.road-col .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold);
}
.road-col h3 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.road-col p {
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 15.5px;
  max-width: 36ch;
}

/* ---------- statement panels ---------- */
.statement { text-align: left; }
.statement .inner.narrow { text-align: center; }
.statement .inner.narrow h2,
.statement .inner.narrow .body { margin-left: auto; margin-right: auto; }
.statement .kicker { text-align: center; }

/* investors closing card: frame the ask as the page's culmination */
.closing-card {
  border: 1px solid var(--gold-line);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(201,162,107,0.06), rgba(8,10,14,0.4));
  padding: clamp(44px, 7vw, 84px) clamp(28px, 6vw, 72px);
  box-shadow: 0 40px 120px -40px rgba(201,162,107,0.18);
}
#investors .closing-card .btn.solid { padding: 17px 40px; }

/* mission pillars */
#mission h2 { max-width: 20ch; }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: clamp(48px, 7.5vh, 84px);
  text-align: left;
}
/* Team has only two founders; center them as a pair rather than stranding
   them in the left half of the four-column grid. */
#team .pillars { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin-left: auto; margin-right: auto; }
.pillar {
  border-top: 1px solid var(--gold-line);
  padding-top: 16px;
}
.p-k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.pillar p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 56px clamp(20px, 6vw, 96px) 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
footer p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span, .hud-dot, .grain { animation: none; }
  .ch-media { animation: none; transform: scale(1.04); }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 28px 32px; }
}
@media (max-width: 820px) {
  #topnav nav { display: none; }
  .nav-toggle { display: flex; }
  .road { grid-template-columns: 1fr; }
  .ch-copy { bottom: 116px; left: 20px; max-width: calc(100% - 40px); }
}

/* ===== mobile nav ===== */
main > section[id] { scroll-margin-top: var(--nav-h); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px; padding: 12px 8px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ transform: translateY(-3.75px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: rgba(0,0,0,0.97); backdrop-filter: blur(8px); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 32px; transform: translateY(-100%); opacity: 0; pointer-events: none; transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { color: var(--ink); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 9vw, 46px); letter-spacing: .03em; text-transform: uppercase; padding: 8px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { color: var(--gold); border-bottom: 0; }

/* ===== video panel (How it works, encircle demo) ===== */
.video-panel { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--void); border-top: none; }
.video-panel .vp-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-panel .vp-grade { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0) 72%),
    linear-gradient(0deg, #000 0%, rgba(0,0,0,0.88) 9%, transparent 46%); }
.video-panel .inner { position: relative; z-index: 2; }
@media (max-width: 760px){ .video-panel .vp-grade { background: linear-gradient(0deg, rgba(0,0,0,0.9), rgba(0,0,0,0.35)); } }

/* phones: keep the rendering as a full-bleed background but show ALL of it
   (contain = fit the whole image, no edge crop). Black fills the edges. */
@media (max-width: 760px) {
  .media-panel.cover::before {
    background-size: contain;
    background-position: center;
    opacity: 0.95;
  }
  .media-panel.cover::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.16) 24%, rgba(0,0,0,0.16) 62%, rgba(0,0,0,0.95) 100%);
  }
  .panel { padding: 88px 0; }
  .media-panel.cover { min-height: auto; }
  .pillars { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
  .closing-card { padding: 40px 24px; }
  #investors .inner.narrow { width: min(100%, 520px); }
}

/* ===== signature transition: the split-ring reveals the next scene ===== */
.reel { position: relative; height: 300vh; border-top: none; }
.reel-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--void);
}
.reel-layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.reel-video {
  z-index: 0;
  object-fit: cover;
  object-position: 50% 46%;
  transform: scale(var(--vscale, 1));
  transform-origin: 50% 46%;
  opacity: var(--vop, 1);
}
.reel-render {
  z-index: 1;
  background-size: cover;
  background-position: 54% 42%;
  transform: scale(var(--rscale, 1));
  transform-origin: 50% 50%;
  /* the next scene blooms out of the ring's heart with a soft, feathered edge */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 calc(var(--maskR, 200vmax) - 2vmax), transparent var(--maskR, 200vmax));
  mask-image: radial-gradient(circle at 50% 50%, #000 calc(var(--maskR, 200vmax) - 2vmax), transparent var(--maskR, 200vmax));
}
/* the glowing gold ring riding the reveal edge */
.reel-ring {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: calc(var(--ringR, 0px) * 2);
  height: calc(var(--ringR, 0px) * 2);
  transform: translate(-50%, -50%);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(201, 162, 107, 0.85), 0 0 110px rgba(201, 162, 107, 0.3), inset 0 0 26px rgba(201, 162, 107, 0.28);
  opacity: var(--ringOp, 0);
  pointer-events: none;
}
.reel-grade {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: var(--gradeOp, 1);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.62) 36%, rgba(0,0,0,0.1) 64%, transparent 80%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 20%);
}
.reel-copy {
  position: absolute;
  z-index: 5;
  left: clamp(20px, 6vw, 100px);
  right: clamp(20px, 6vw, 100px);
  top: 50%;
  max-width: min(760px, 88vw);
}
.reel-copy h2, .reel-copy .lede { text-shadow: 0 1px 26px rgba(0, 0, 0, 0.7); }
.reel-copy-a { opacity: var(--copyA, 0); transform: translateY(calc(-50% + var(--copyAy, 0px))); }
.reel-copy-b { opacity: var(--copyB, 1); transform: translateY(calc(-50% + var(--copyBy, 0px))); }
.reel-copy .lede { max-width: 48ch; }
.reel-copy .chips { opacity: var(--chips, 1); }
/* gold hairline that draws in under the headline at the climax */
.reel-rule {
  display: block;
  height: 1.5px;
  width: clamp(120px, 22vw, 260px);
  margin: 22px 0 6px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 107, 0));
  transform: scaleX(var(--rule, 1));
  transform-origin: left;
  box-shadow: 0 0 14px rgba(201, 162, 107, 0.5);
}
/* honesty tag: marks the photoreal scene as a concept render */
.reel-tag {
  position: absolute;
  z-index: 5;
  right: clamp(16px, 4vw, 44px);
  bottom: clamp(16px, 4vh, 34px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.8);
  opacity: calc(var(--copyB, 0) * 0.62);
}
.reel-anchor { position: absolute; top: 60%; width: 1px; height: 1px; }
@media (max-width: 760px) {
  .reel { height: 260vh; }
  .reel-render { background-position: 68% 46%;
    -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 calc(var(--maskR, 200vmax) - 2vmax), transparent var(--maskR, 200vmax));
    mask-image: radial-gradient(circle at 50% 48%, #000 calc(var(--maskR, 200vmax) - 2vmax), transparent var(--maskR, 200vmax)); }
  .reel-ring { left: 50%; top: 48%; }
  .reel-copy { top: auto; bottom: clamp(84px, 16vh, 150px); max-width: 100%; }
  .reel-copy-a { transform: translateY(var(--copyAy, 0px)); }
  .reel-copy-b { transform: translateY(var(--copyBy, 0px)); }
  .reel-grade {
    background:
      linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 22%, rgba(0,0,0,0.32) 42%, transparent 64%),
      linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 18%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reel { height: 180vh; }
}
