:root {
  --bg: #020817;
  --bg-2: #051433;
  --navy: #0a1f55;
  --cyan: #3ecbff;
  --cyan-2: #7af0ff;
  --blue: #3d7dff;
  --ink: #f3f7ff;
  --muted: #93a8d0;
  --line: rgba(62, 203, 255, 0.28);
  --glass: rgba(8, 22, 58, 0.62);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
html { scroll-behavior: auto; }
body {
  font-family: Manrope, system-ui, sans-serif;
  overflow-x: hidden;
  min-height: 100%;
  cursor: none;
}
body.touch { cursor: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 12px; top: 12px; z-index: 80; background: #fff; color: #000; padding: 8px 12px; }

#webgl {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%; pointer-events: none;
}
.fx-grain, .fx-vignette, .fx-scan {
  position: fixed; inset: 0; pointer-events: none; z-index: 4;
}
.fx-grain {
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}
.fx-vignette {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(1, 6, 20, .72) 100%);
}
.fx-scan {
  opacity: .06;
  background: repeating-linear-gradient(to bottom, transparent 0 2px, rgba(0,0,0,.35) 2px 3px);
  mix-blend-mode: overlay;
}

.cursor {
  position: fixed; width: 14px; height: 14px; border: 1px solid var(--cyan);
  border-radius: 50%; pointer-events: none; z-index: 70;
  transform: translate(-50%, -50%); mix-blend-mode: screen;
  transition: width .2s, height .2s, background .2s;
}
.cursor.hot { width: 36px; height: 36px; background: rgba(62,203,255,.12); }
.cursor-dot {
  position: fixed; width: 4px; height: 4px; background: var(--cyan-2);
  border-radius: 50%; pointer-events: none; z-index: 71;
  transform: translate(-50%, -50%);
}
body.touch .cursor, body.touch .cursor-dot { display: none; }

.loader {
  position: fixed; inset: 0; z-index: 90; background: #01040e;
  display: grid; place-items: center; transition: opacity .7s ease, visibility .7s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; width: min(420px, 82vw); }
.loader .mark {
  font-family: Orbitron, sans-serif; font-weight: 800; letter-spacing: .18em;
  font-size: clamp(1.4rem, 4vw, 2rem);
}
.loader .eight {
  color: var(--cyan-2);
  font-size: 1.35em;
  text-shadow: 0 0 10px var(--cyan), 0 0 24px rgba(62, 203, 255, .85);
}
.loader p { color: var(--muted); margin: 14px 0 22px; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; }
.bar { height: 2px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar > span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--cyan)); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(14px + var(--safe-t)) 22px 14px;
  background: linear-gradient(to bottom, rgba(2,8,23,.88), transparent);
  backdrop-filter: blur(10px);
}
.brand {
  font-family: Orbitron, sans-serif; font-weight: 800; letter-spacing: .16em; font-size: .95rem;
}
.brand span {
  color: var(--cyan-2);
  font-size: 1.25em;
  text-shadow: 0 0 8px var(--cyan), 0 0 18px rgba(62, 203, 255, .75);
}
.nav-links { display: flex; gap: 22px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.menu-btn {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; position: relative;
}
.menu-btn:before {
  content: ""; position: absolute; left: 12px; right: 12px; top: 20px; height: 1.5px;
  background: #fff;
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}

.rail {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 30; display: flex; flex-direction: column; gap: 10px;
}
.rail a {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--cyan); opacity: .4;
}
.rail a.active { opacity: 1; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

main { position: relative; z-index: 2; }

.hero {
  min-height: 100svh; display: grid; place-items: center;
  padding: calc(88px + var(--safe-t)) 20px 80px; text-align: center;
  perspective: 1400px;
  scroll-margin-top: 0;
  position: relative;
}
.hero-stage {
  transform-style: preserve-3d; will-change: transform;
}
.kicker {
  color: var(--cyan); letter-spacing: .42em; font-size: .72rem; text-transform: uppercase;
  margin-bottom: 18px;
}
.wordmark {
  font-family: Orbitron, sans-serif; font-weight: 900; line-height: .86;
  font-size: clamp(3.1rem, 13vw, 9.2rem); letter-spacing: .02em;
  text-shadow: 0 0 40px rgba(62,203,255,.25);
}
.wordmark .eight {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(180deg, #fff 8%, #b9f4ff 36%, var(--cyan) 62%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateZ(80px);
}
.wordmark .eight::before,
.wordmark .eight::after {
  content: "8";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  background: none;
  -webkit-text-fill-color: var(--cyan);
  color: var(--cyan);
}
.wordmark .eight::before {
  filter: blur(10px);
  opacity: .95;
  animation: eight-glow 2.6s ease-in-out infinite;
}
.wordmark .eight::after {
  filter: blur(28px);
  opacity: .7;
  -webkit-text-fill-color: var(--cyan-2);
  color: var(--cyan-2);
  animation: eight-glow 2.6s ease-in-out infinite reverse;
}
@keyframes eight-glow {
  0%, 100% { opacity: .7; }
  50% { opacity: 1; }
}
.hero h1 {
  font-family: Syne, sans-serif; font-size: clamp(1.05rem, 3.2vw, 2.1rem);
  letter-spacing: .22em; margin-top: 12px; font-weight: 800;
}
.hero .tag {
  margin-top: 14px; color: var(--muted); letter-spacing: .18em;
  font-size: clamp(.72rem, 1.6vw, .95rem); text-transform: uppercase;
}
.meta-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-top: 28px; color: var(--ink); font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase;
}
.meta-row b { color: var(--cyan); font-weight: 600; }
.org-label {
  margin-top: 40px; font-size: .68rem; letter-spacing: .3em; color: var(--muted); text-transform: uppercase;
}
.orgs {
  margin-top: 14px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.org-pill {
  border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .08em; background: var(--glass);
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .32em; color: var(--muted); text-transform: uppercase;
}
.scroll-hint:after {
  content: ""; display: block; width: 1px; height: 38px; margin: 8px auto 0;
  background: linear-gradient(var(--cyan), transparent); animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 50% { transform: scaleY(.4); opacity: .4; } }

section.block {
  position: relative; padding: 110px 20px;
  max-width: 1200px; margin: 0 auto;
  scroll-margin-top: 86px;
}
#why.block {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
}
.sec-kicker {
  color: var(--cyan); letter-spacing: .32em; font-size: .72rem; text-transform: uppercase;
}
.sec-title {
  font-family: Syne, sans-serif; font-weight: 800;
  font-size: clamp(2rem, 6vw, 4.4rem); line-height: .95;
  letter-spacing: -.03em; margin: 10px 0 22px;
}
.why-title { max-width: 14ch; }
.why-title span { display: block; }
.why-title span:last-child {
  font-size: .72em; line-height: 1.02; margin-top: .12em; max-width: 18ch;
  background: linear-gradient(105deg, #f3f7ff 10%, var(--cyan) 78%, var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { max-width: 720px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px;
}
.stat {
  position: relative; padding: 22px 18px; min-height: 150px;
  background: linear-gradient(180deg, rgba(16,42,96,.45), rgba(6,16,42,.55));
  border: 1px solid var(--line); border-radius: 18px;
  transform-style: preserve-3d; transition: transform .25s ease, border-color .25s;
  overflow: hidden;
}
.stat:before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 120px at var(--mx, 50%) var(--my, 0%), rgba(62,203,255,.16), transparent 60%);
  pointer-events: none;
}
.stat:hover { border-color: var(--cyan); transform: translateY(-6px) rotateX(4deg); }
.stat strong {
  display: block; font-family: Orbitron, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem); color: var(--cyan-2); letter-spacing: .04em;
}
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .88rem; line-height: 1.45; }

.opps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px;
}
.opp {
  padding: 22px; border-radius: 16px; min-height: 150px;
  border: 1px solid var(--line); background: rgba(8,24,62,.5);
  transform: translateZ(0);
}
.opp i {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px;
  border: 1px solid var(--cyan); border-radius: 10px; color: var(--cyan);
  transform: rotate(45deg);
}
.opp i svg { transform: rotate(-45deg); }
.opp h3 { font-family: Syne, sans-serif; font-size: 1.05rem; margin-bottom: 8px; }
.opp p { color: var(--muted); font-size: .9rem; line-height: 1.5; }

.about-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center;
}
.copy p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.copy p em { color: var(--ink); font-style: normal; font-weight: 600; }
.hand {
  height: min(420px, 52vw); border-radius: 24px; position: relative;
  background:
    radial-gradient(circle at 70% 40%, rgba(62,203,255,.35), transparent 42%),
    linear-gradient(160deg, #082056, #04102c);
  border: 1px solid var(--line); overflow: hidden;
}
.hand:after {
  content: ""; position: absolute; inset: 18% 12% 10% 38%;
  background: radial-gradient(circle at 30% 70%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 60% 30%, var(--cyan) 0 1px, transparent 2px);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'><path fill='white' d='M120 210c40-10 58-70 40-110-6-14 8-22 18-18 14 6 22 34 8 64-18 40-18 72-54 86-28 10-70 8-90-10 22 2 48-2 78-12z'/><path fill='white' d='M86 40c8-18 32-22 42-6 8 14-2 28-8 48l-18 70c-4 14-22 12-22-2l12-62c2-12-2-22-6-32-4-10 0-16 0-16z'/></svg>") center/contain no-repeat;
  filter: drop-shadow(0 0 18px var(--cyan));
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .7; transform: scale(1.03); } }

.path {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; margin-top: 28px;
  font-family: Orbitron, sans-serif;
  font-size: clamp(.7rem, 1.6vw, .9rem); letter-spacing: .12em; color: var(--cyan);
}
.path .arrow { color: var(--muted); opacity: .45; }
.path .node {
  position: relative; padding: 8px 0;
  color: rgba(147, 168, 208, .55);
  transition: color .4s ease, text-shadow .4s ease;
}
.path .node.on {
  color: var(--cyan-2);
  text-shadow: 0 0 16px rgba(62, 203, 255, .65);
}
.path .node:after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
}
.path .node.on:after { transform: scaleX(1); }

.industry-board {
  --cols: 4;
  position: relative; isolation: isolate;
  display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 12px; margin-top: 40px; list-style: none;
}
.industry-board:before {
  content: "8"; position: absolute; z-index: 0; pointer-events: none;
  right: -6%; top: 46%; transform: translateY(-50%);
  font-family: Orbitron, sans-serif; font-weight: 900; line-height: .7;
  font-size: clamp(9rem, 32vw, 22rem); letter-spacing: -.08em;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(62,203,255,.12) 55%, rgba(61,125,255,.05));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.industry-board li {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 16px 20px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(16,42,96,.55), rgba(6,16,42,.72));
  backdrop-filter: blur(10px); min-height: 148px;
  opacity: .42; filter: saturate(.6);
  transition: opacity .45s ease, filter .45s ease, border-color .45s ease, transform .45s ease;
}
.industry-board li.on {
  opacity: 1; filter: none; border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(62, 203, 255, .16);
}
.industry-board .n {
  font-family: Orbitron, sans-serif; color: var(--cyan);
  font-size: .68rem; letter-spacing: .16em;
}
.industry-board h3 {
  font-family: Syne, sans-serif; font-size: clamp(.92rem, 1.4vw, 1.08rem);
  line-height: 1.15;
}
.industry-board p { color: var(--muted); font-size: .8rem; line-height: 1.45; margin-top: auto; }

.expect {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 32px;
}
.expect article {
  padding: 18px 14px 20px; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(7,20,54,.55); min-height: 190px;
}
.figure {
  height: 84px; margin-bottom: 12px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(62,203,255,.18), rgba(10,20,50,.1));
  position: relative; overflow: hidden;
}
.figure:after {
  content: ""; position: absolute; left: 50%; bottom: 8px; width: 46px; height: 62px;
  transform: translateX(-50%);
  background: linear-gradient(#d7e7ff, #7aa7d8); border-radius: 40px 40px 12px 12px;
  box-shadow: 18px 18px 0 -22px #9ec0ea, -16px 22px 0 -24px #8eb4e2;
}
.expect h3 { font-size: .84rem; letter-spacing: .08em; margin-bottom: 6px; }
.expect p { color: var(--muted); font-size: .78rem; line-height: 1.45; }

.proj {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 28px;
}
.proj li {
  list-style: none; padding: 18px 12px; text-align: center; border-radius: 14px;
  border: 1px solid var(--line); background: linear-gradient(180deg, rgba(20,60,140,.35), rgba(6,16,40,.5));
}
.proj b {
  display: block; font-family: Orbitron, sans-serif; font-size: 1.35rem; color: var(--cyan-2);
}
.proj span { font-size: .72rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

.speakers {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px;
}
.speaker {
  border: 1px dashed var(--line); border-radius: 18px; padding: 16px 14px 18px;
  background: rgba(6,18,48,.45);
}
.ph {
  aspect-ratio: 1 / .72; border-radius: 14px; margin-bottom: 12px;
  background:
    linear-gradient(180deg, rgba(62,203,255,.08), rgba(8,16,40,.6)),
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(62,203,255,.05) 8px 9px);
  display: grid; place-items: center; color: var(--muted); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; position: relative; overflow: hidden;
}
.ph:before {
  content: ""; width: 54px; height: 54px; border: 1px solid var(--cyan); border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #9ad8ff 0 8px, transparent 9px),
    linear-gradient(#6aa0c8, #6aa0c8) 50% 70% / 28px 22px no-repeat;
  opacity: .55;
}
.speaker .tag {
  display: inline-block; margin-bottom: 8px; font-size: .65rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cyan);
}
.speaker h3 { font-family: Syne, sans-serif; font-size: 1.05rem; }
.speaker p { color: var(--muted); font-size: .82rem; margin-top: 6px; }

.venue-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start;
}
.shots { display: grid; gap: 12px; }
.shot {
  min-height: 150px; border-radius: 16px; border: 1px solid var(--line);
  background: linear-gradient(145deg, #16356e, #071530);
  position: relative; overflow: hidden;
}
.shot:before {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.05) 18px 19px),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(255,255,255,.04) 10px 11px);
}
.shot.a { min-height: 190px; background: linear-gradient(160deg, #2a4d86, #0b1c3d); }
.shot.a:after {
  content: ""; position: absolute; left: 12%; right: 12%; top: 28%; height: 52%;
  background: linear-gradient(#1a2a44, #0c1528); border: 1px solid rgba(62,203,255,.25);
  box-shadow: inset 0 20px 0 rgba(255,255,255,.04);
}
.shot.b { min-height: 220px; background: linear-gradient(200deg, #1c6a7a, #0a2040); }
.shot.b:after {
  content: ""; position: absolute; left: 18%; right: 18%; bottom: 18%; height: 48%;
  background: linear-gradient(90deg, #0d2a40 0 12%, #1ea7a0 12% 14%, #0d2a40 14% 100%);
  clip-path: polygon(8% 100%, 0 42%, 50% 18%, 100% 42%, 92% 100%);
}
.shot.c { min-height: 160px; background: linear-gradient(20deg, #274a80, #0c1833); }
.shot.c:after {
  content: ""; position: absolute; left: 10%; right: 10%; top: 22%; bottom: 28%;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 6%, transparent 6% 12%);
}
.shot span {
  position: absolute; left: 14px; bottom: 12px; font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--cyan-2); z-index: 2;
}
.venue-copy .mall {
  font-family: Syne, sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1;
  margin: 8px 0 16px;
}

.agenda {
  overflow: auto; margin-top: 28px; border: 1px solid var(--line); border-radius: 16px;
}
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-family: Syne, sans-serif; background: rgba(16,40,90,.6); }
td { color: var(--muted); font-size: .92rem; line-height: 1.5; }
td b { color: var(--ink); display: block; margin-bottom: 4px; }
tr:last-child td { border-bottom: 0; }
.day { color: var(--cyan); font-size: .72rem; letter-spacing: .16em; }

.team {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 32px;
}
.person {
  padding: 16px 14px 18px; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(8,22,58,.55); min-height: 100%;
}
.avatar {
  aspect-ratio: 1.35 / 1; border-radius: 14px; margin-bottom: 12px;
  display: grid; place-items: center; font-family: Orbitron, sans-serif;
  font-size: 1.6rem; color: var(--cyan-2);
  border: 1px solid var(--line);
}
.person h3 { font-family: Syne, sans-serif; font-size: .98rem; }
.role { color: var(--cyan); font-size: .72rem; margin: 4px 0 10px; line-height: 1.4; }
.bio { color: var(--muted); font-size: .75rem; line-height: 1.55; }

.connect {
  min-height: 80svh; display: grid; place-items: center; text-align: center; padding: 80px 20px;
}
.connect h2 {
  font-family: Syne, sans-serif; font-size: clamp(2.4rem, 8vw, 6rem); letter-spacing: -.04em;
}
.socials { display: flex; justify-content: center; gap: 14px; margin-top: 28px; }
.socials a {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--cyan);
}
.socials a:hover { background: rgba(62,203,255,.15); }
footer {
  text-align: center; color: var(--muted); font-size: .75rem; padding: 0 16px calc(32px + var(--safe-b));
}

.mobile-panel {
  position: fixed; inset: 0; z-index: 50; background: rgba(2,8,23,.96);
  display: none; flex-direction: column; justify-content: center; gap: 18px;
  padding: 80px 28px; font-family: Syne, sans-serif; font-size: 1.6rem;
}
.mobile-panel.open { display: flex; }

@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .opps, .expect, .proj, .speakers { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .venue-grid { grid-template-columns: 1fr; }
  .industry-board { --cols: 2; }
  .why-title { max-width: none; }
  .rail { display: none; }
}
@media (max-width: 720px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none !important; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .stats, .opps, .expect, .proj, .speakers, .team { grid-template-columns: 1fr; }
  .industry-board { --cols: 1; gap: 0; margin-top: 28px; }
  .industry-board:before { right: -18%; top: 8%; transform: none; font-size: 42vw; opacity: .85; }
  .industry-board li {
    flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 8px 12px;
    min-height: 0; padding: 16px 0; border: 0; border-radius: 0;
    border-bottom: 1px solid var(--line); background: none; backdrop-filter: none;
    opacity: 1; filter: none; transform: none; box-shadow: none;
  }
  .industry-board h3 { flex: 1; font-size: 1.05rem; }
  .industry-board p { flex: 1 1 100%; margin: 0; padding-left: calc(.68rem * 4.2); font-size: .78rem; }
  .why-title { font-size: clamp(2.15rem, 11vw, 3.1rem); }
  .why-title span:last-child { max-width: 12ch; }
  section.block { padding: 72px 16px; }
}
.grade {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  mix-blend-mode: soft-light; opacity: .55;
  background: radial-gradient(120% 80% at 50% 20%, rgba(62,203,255,.18), transparent 55%);
  transition: background .8s ease, opacity .8s ease;
}
.letterbox {
  position: fixed; left: 0; right: 0; height: 0; z-index: 55; pointer-events: none;
  background: #01040e; transition: height .7s ease;
}
.letterbox.top { top: 0; }
.letterbox.bot { bottom: 0; }
body.cinematic .letterbox { height: clamp(18px, 4vh, 42px); }
body.cinematic.finale .letterbox { height: clamp(36px, 8vh, 72px); }
.film-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 72; pointer-events: none;
}
.film-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan-2));
  box-shadow: 0 0 12px var(--cyan);
}
.scene-hud {
  position: fixed; left: 22px; bottom: calc(18px + var(--safe-b)); z-index: 58;
  display: flex; align-items: baseline; gap: 12px; pointer-events: none;
  font-family: Orbitron, sans-serif; letter-spacing: .22em; text-transform: uppercase;
  opacity: .78;
}
.scene-act { color: var(--cyan); font-size: .68rem; }
.scene-name { color: var(--muted); font-size: .62rem; }
.connect .wordmark { transform-origin: center; }

@media (max-width: 720px) {
  .scene-hud { left: 14px; bottom: calc(14px + var(--safe-b)); }
  .letterbox { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .letterbox, .grade, .scene-hud, .film-progress { display: none; }
}
