@font-face { font-family: "Big Shoulders Display"; src: url("/assets/fonts/big-shoulders-display.woff2") format("woff2"); font-weight: 700 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/assets/fonts/manrope.woff2") format("woff2"); font-weight: 400 800; font-style: normal; font-display: swap; }

:root {
  --midnight: #060a1c;
  --deep: #0b1330;
  --deep-2: #111b42;
  --electric: #45aaff;
  --electric-2: #8fd0ff;
  --lightning: #eef8ff;
  --gold: #e8b64c;
  --gold-2: #ffd98a;
  --bronze: #a8743a;
  --marble: #c9ccd6;
  --purple: #5b2a86;
  --purple-2: #8d5cd6;

  --text: #e6ebf7;
  --muted: #9aa6c4;
  --line: rgba(143, 208, 255, 0.16);
  --glass: rgba(17, 27, 66, 0.55);
  --glass-strong: rgba(10, 17, 44, 0.82);

  --font-display: "Big Shoulders Display", "Oswald", Impact, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --gutter: 16px;
  --header-h: 68px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

@media (min-width: 768px) {
  :root { --gutter: 28px; --header-h: 76px; }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(91, 42, 134, .35), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(69, 170, 255, .10), transparent 60%),
    var(--midnight);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: var(--electric-2); text-decoration: none; }
a:hover { color: var(--lightning); }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: .01em; margin: 0 0 .5em; text-transform: uppercase; }
p { margin: 0 0 1em; }
::selection { background: var(--electric); color: var(--midnight); }
:focus-visible { outline: 2px solid var(--electric-2); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--gold); color: var(--midnight); padding: 8px 14px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { left: 8px; }

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 var(--gutter); }
.section { position: relative; padding: 88px 0; }
@media (min-width: 900px) { .section { padding: 120px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--electric-2); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, var(--electric), transparent); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: linear-gradient(270deg, var(--electric), transparent); }
.section-title { font-size: clamp(38px, 6vw, 72px); }
.section-lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 640px; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
.text-gold { color: var(--gold); }
.text-electric { color: var(--electric-2); text-shadow: 0 0 24px rgba(69, 170, 255, .55); }

.btn {
  --h: 52px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 26px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #1c1204;
  background: linear-gradient(180deg, #ffe7a8 0%, var(--gold) 55%, #c98f2a 100%);
  box-shadow: 0 0 0 1px rgba(255, 217, 138, .5) inset, 0 10px 30px -8px rgba(232, 182, 76, .7), 0 0 40px -10px rgba(255, 217, 138, .8);
}
.btn-primary:hover { color: #1c1204; transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255, 240, 200, .8) inset, 0 16px 40px -8px rgba(232, 182, 76, .85), 0 0 60px -6px rgba(255, 217, 138, .9); }
.btn-ghost {
  color: var(--lightning); background: rgba(69, 170, 255, .08); border-color: rgba(143, 208, 255, .35);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { color: #fff; border-color: var(--electric-2); background: rgba(69, 170, 255, .16); box-shadow: 0 0 30px -6px rgba(69, 170, 255, .7); transform: translateY(-2px); }
.btn-sm { --h: 42px; padding: 0 18px; font-size: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled, .site-header.is-open, .site-header.is-solid {
  background: rgba(6, 10, 28, .78); border-bottom-color: var(--line);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--lightning); }
.brand:hover { color: #fff; }
.brand-mark { width: 38px; height: 38px; flex: none; filter: drop-shadow(0 0 10px rgba(69, 170, 255, .6)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-display); font-size: 21px; font-weight: 800; letter-spacing: .08em; }
.brand-text small { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav { display: none; }
.nav a {
  position: relative; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  padding: 8px 2px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--lightning); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--electric), transparent); }
.header-cta { display: none; }

.nav-toggle {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: rgba(69, 170, 255, .06);
  display: grid; place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 18px; height: 2px; background: var(--lightning); border-radius: 2px; transition: transform .3s var(--ease), background .2s; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.site-header.is-open .nav-toggle span { background: transparent; }
.site-header.is-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
  background: rgba(6, 10, 28, .96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--gutter) 24px;
  transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.site-header.is-open + .mobile-nav { transform: none; opacity: 1; visibility: visible; }
.mobile-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: .06em; text-transform: uppercase; color: var(--text); }
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .btn { margin-top: 20px; width: 100%; }

@media (min-width: 1080px) {
  .nav { display: flex; gap: 26px; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px; overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-storm { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 180px; z-index: -1;
  background: linear-gradient(180deg, transparent, var(--midnight));
}
.hero-grid { display: grid; gap: 40px; align-items: center; width: 100%; }
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; margin-bottom: 26px;
  border: 1px solid rgba(232, 182, 76, .35); border-radius: 999px; background: rgba(232, 182, 76, .08);
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2);
}
.hero-tag i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 1.8s infinite; margin-left: 4px; }
.hero-title { font-size: clamp(56px, 11vw, 132px); line-height: .88; margin-bottom: 20px; }
.hero-title span { display: block; }
.hero-title .t1 { color: var(--lightning); text-shadow: 0 0 40px rgba(143, 208, 255, .35); }
.hero-title .t2 {
  background: linear-gradient(180deg, #fff6d8 0%, var(--gold) 55%, #b37a22 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 24px rgba(232, 182, 76, .35));
}
.hero-title .t3 { margin-top: 18px; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.1; letter-spacing: .04em; color: var(--electric-2); }
.hero-slogan { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 32px); letter-spacing: .04em; text-transform: uppercase; color: var(--electric-2); margin-bottom: 14px; }
.hero-desc { font-size: clamp(16px, 1.5vw, 19px); color: #c4cde4; max-width: 520px; margin-bottom: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; color: var(--muted); font-size: 13px; }
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--gold); }

.hero-art { position: relative; justify-self: center; width: min(100%, 560px); aspect-ratio: 15 / 16; }
.hero-art svg { width: 100%; height: 100%; overflow: visible; }
.hero-art { -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 97%); mask-image: linear-gradient(180deg, #000 72%, transparent 97%); }
.hero-art .zeus-eyes { animation: eyes 5s infinite; }
.hero-art .bolt-main { animation: boltFlicker 4.2s infinite; }
.hero-art .sigil-ring { transform-origin: 300px 300px; animation: spin 60s linear infinite; }
.hero-art .sigil-ring-2 { transform-origin: 300px 300px; animation: spin 90s linear infinite reverse; }
.hero-art .float-a { animation: float 7s ease-in-out infinite; }
.hero-art .float-b { animation: float 9s ease-in-out infinite reverse; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: none; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.scroll-cue i { width: 1px; height: 38px; background: linear-gradient(180deg, var(--electric), transparent); animation: cue 2s infinite; }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 24px; }
}
@media (min-width: 960px) and (min-height: 980px) { .scroll-cue { display: flex; } }
@media (max-width: 959px) {
  .hero-art { max-width: 420px; order: -1; margin-bottom: -40px; }
  .hero { padding-top: calc(var(--header-h) + 16px); }
}

.glass {
  background: linear-gradient(180deg, rgba(24, 38, 90, .55), rgba(10, 17, 44, .55));
  border: 1px solid var(--line); border-radius: var(--radius);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05) inset, 0 30px 60px -30px rgba(0, 0, 0, .6);
}

.demo-section { padding-top: 60px; }
.demo-section::before {
  content: ""; position: absolute; inset: 10% 0 0; z-index: -1;
  background: radial-gradient(60% 50% at 50% 40%, rgba(69, 170, 255, .14), transparent 70%);
}

.zg {
  --zg-radius: 22px;
  position: relative; max-width: 900px; margin: 0 auto;
  border-radius: var(--zg-radius);
  padding: 10px;
  background: linear-gradient(160deg, rgba(232, 182, 76, .55), rgba(69, 170, 255, .35) 40%, rgba(91, 42, 134, .5) 70%, rgba(232, 182, 76, .45));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06), 0 40px 90px -30px rgba(0, 0, 0, .8), 0 0 80px -20px rgba(69, 170, 255, .45);
}
.zg-inner { position: relative; border-radius: calc(var(--zg-radius) - 6px); overflow: hidden; background: var(--midnight); }
.zg-hud {
  display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: center; gap: 6px;
  padding: 10px 12px; background: linear-gradient(180deg, #0d1638, #080e26); border-bottom: 1px solid var(--line);
}
.zg-stat { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.zg-stat span { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.zg-stat strong { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--lightning); font-variant-numeric: tabular-nums; }
.zg-stat[data-warn] strong { color: #ff8a6b; text-shadow: 0 0 16px rgba(255, 110, 80, .6); }
.zg-tools { display: flex; gap: 6px; }
.zg-icon {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: rgba(69, 170, 255, .08);
  display: grid; place-items: center; color: var(--electric-2); transition: background .2s, color .2s;
}
.zg-icon:hover { background: rgba(69, 170, 255, .2); color: #fff; }
.zg-icon svg { width: 18px; height: 18px; }
.zg-icon[disabled] { opacity: .35; pointer-events: none; }
.zg-icon .i-off { display: none; }
.zg-icon[aria-pressed="true"] .i-on { display: none; }
.zg-icon[aria-pressed="true"] .i-off { display: block; }

.zg-stage { position: relative; width: 100%; aspect-ratio: 3 / 2; touch-action: none; user-select: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent; }
@media (max-width: 640px) {
  .zg { padding: 6px; --zg-radius: 18px; }
  .zg-stage { aspect-ratio: 4 / 5; max-height: 72vh; }
  .zg-stat strong { font-size: 22px; }
  .zg-stat span { font-size: 9px; letter-spacing: .08em; }
  .zg-hud { padding: 8px 10px; grid-template-columns: 1.25fr .7fr 1fr auto; }
  .zg-icon { width: 34px; height: 34px; }
  .zg-stage { aspect-ratio: 3 / 4; max-height: 78vh; }
  .zg-screen { padding: 14px; justify-content: safe center; }
  .zg-screen h3 { font-size: 34px; margin-bottom: 4px; }
  .zg-screen > p { font-size: 13px; margin-bottom: 12px; }
}
.zg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: crosshair; }

.zg-screen {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 20px; background: radial-gradient(80% 80% at 50% 45%, rgba(6, 10, 28, .55), rgba(6, 10, 28, .9));
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  animation: fadeIn .35s var(--ease);
  overflow-y: auto;
}
.zg-screen[hidden] { display: none; }
.zg-kicker { font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.zg-screen h3 { font-size: clamp(34px, 6vw, 60px); margin-bottom: 8px; color: var(--lightning); text-shadow: 0 0 30px rgba(69, 170, 255, .5); }
.zg-screen > p { color: #c4cde4; max-width: 460px; font-size: 15px; margin-bottom: 18px; }
.zg-modes { display: grid; gap: 10px; width: 100%; max-width: 640px; }
@media (min-width: 560px) { .zg-modes { grid-template-columns: repeat(3, 1fr); } }
.zg-mode {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left;
  padding: 14px 16px; border-radius: 14px; border: 1px solid rgba(143, 208, 255, .28);
  background: linear-gradient(180deg, rgba(30, 50, 110, .6), rgba(12, 20, 52, .75));
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
}
.zg-mode:hover, .zg-mode:focus-visible { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 0 30px -8px rgba(232, 182, 76, .7); }
.zg-mode b { font-family: var(--font-display); font-size: 20px; line-height: 1.1; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--lightning); }
.zg-mode small { font-size: 12px; color: var(--muted); }
.zg-mode em { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); margin-top: 6px; }
.zg-mode.is-featured { border-color: rgba(232, 182, 76, .6); }
.zg-hint { margin-top: 16px; font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.zg-hint kbd { font-family: inherit; padding: 1px 6px; border-radius: 5px; border: 1px solid var(--line); }

.zg-points { display: flex; align-items: baseline; gap: 10px; margin: 4px 0 14px; }
.zg-points strong { font-family: var(--font-display); font-size: clamp(54px, 10vw, 96px); font-weight: 900; line-height: .9; background: linear-gradient(180deg, #fff6d8, var(--gold) 60%, #b37a22); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.zg-points span { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-2); }
.zg-res-grid { display: flex; gap: 10px; margin-bottom: 14px; }
.zg-res-grid div { min-width: 120px; padding: 10px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(17, 27, 66, .6); }
.zg-res-grid span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.zg-res-grid b { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--lightning); }
.zg-newbest { color: var(--gold-2); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin: -4px 0 14px; animation: pulse 1.4s infinite; }
.zg-newbest[hidden] { display: none; }
.zg-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.zg-actions .btn { --h: 46px; font-size: 16px; padding: 0 20px; }
.zg-link { margin-top: 14px; background: none; border: 0; font-size: 13px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.zg-link:hover { color: var(--lightning); }

.zg-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px; padding: 12px 14px 4px; text-align: center; }
.zg-foot p { margin: 0; font-size: 13px; color: #d8def0; font-style: italic; }
.zg-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(6, 10, 28, .6); border: 1px dashed rgba(255, 217, 138, .6); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); }

.demo-legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 900px; margin: 28px auto 0; }
@media (min-width: 720px) { .demo-legend { grid-template-columns: repeat(6, 1fr); } }
.legend-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 8px; border-radius: 14px; text-align: center; }
.legend-item img { width: 56px; height: 56px; }
.legend-item b { font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.legend-item small { font-size: 12px; color: var(--muted); line-height: 1.35; }

.loop-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 14px; margin: 0 auto; }
.loop-strip span { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px, 3.4vw, 40px); letter-spacing: .06em; color: var(--lightning); }
.loop-strip span:last-child { color: var(--gold); }
.loop-strip i { width: 26px; height: 26px; color: var(--electric); }

.features-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature {
  position: relative; padding: 30px 26px 28px; overflow: hidden; transition: transform .35s var(--ease), border-color .35s;
}
.feature::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, rgba(232, 182, 76, .7), transparent 35%, transparent 65%, rgba(69, 170, 255, .7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s;
}
.feature:hover { transform: translateY(-6px); }
.feature:hover::before { opacity: 1; }
.feature-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px; color: var(--gold-2); background: radial-gradient(circle at 30% 30%, rgba(232, 182, 76, .35), rgba(91, 42, 134, .25)); border: 1px solid rgba(232, 182, 76, .35); box-shadow: 0 0 30px -8px rgba(232, 182, 76, .6); }
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 28px; margin-bottom: 10px; }
.feature p { color: var(--muted); margin: 0; }
.feature .num { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-size: 54px; font-weight: 900; color: rgba(143, 208, 255, .07); line-height: 1; }

.about-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 980px) { .about-grid { grid-template-columns: 1fr 1.05fr; gap: 64px; } }
.about-copy blockquote { margin: 0 0 24px; padding: 4px 0 4px 22px; border-left: 2px solid var(--gold); font-size: clamp(17px, 1.7vw, 20px); color: #d8def0; }
.about-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; color: var(--muted); }
.about-points li b { color: var(--text); }
.about-points svg { width: 22px; height: 22px; flex: none; color: var(--electric); margin-top: 2px; }
.concept-board { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.concept-tile { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--deep); min-height: 140px; }
.concept-tile img, .concept-tile svg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.concept-tile figcaption {
  position: absolute; left: 10px; bottom: 10px; z-index: 2; padding: 4px 10px; border-radius: 999px;
  background: rgba(6, 10, 28, .75); border: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--lightning);
}
.concept-tile:nth-child(1) { grid-column: span 4; grid-row: span 2; min-height: 300px; }
.concept-tile:nth-child(2) { grid-column: span 2; }
.concept-tile:nth-child(3) { grid-column: span 2; }
.concept-tile:nth-child(4) { grid-column: span 3; }
.concept-tile:nth-child(5) { grid-column: span 3; }
@media (max-width: 560px) {
  .concept-tile:nth-child(1) { grid-column: span 6; min-height: 220px; }
  .concept-tile:nth-child(2), .concept-tile:nth-child(3) { grid-column: span 3; }
}
.concept-tile figure, figure.concept-tile { margin: 0; }

.timeline { position: relative; display: grid; gap: 18px; list-style: none; padding: 0; margin: 0; counter-reset: step; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, var(--gold), var(--electric) 40%, rgba(143, 208, 255, .12)); }
.tl-step { position: relative; padding: 0 0 0 76px; }
.tl-node {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--muted);
  background: var(--deep); border: 2px solid rgba(143, 208, 255, .25);
}
.tl-step.is-done .tl-node { color: #1c1204; background: linear-gradient(180deg, #ffe7a8, var(--gold)); border-color: var(--gold-2); box-shadow: 0 0 24px -4px rgba(232, 182, 76, .8); }
.tl-step.is-current .tl-node { color: var(--lightning); border-color: var(--electric-2); background: radial-gradient(circle, rgba(69, 170, 255, .45), var(--deep)); box-shadow: 0 0 0 6px rgba(69, 170, 255, .12), 0 0 30px rgba(69, 170, 255, .7); animation: pulseRing 2.2s infinite; }
.tl-card { padding: 20px 22px; }
.tl-card h3 { font-size: 26px; margin-bottom: 6px; }
.tl-card p { margin: 0; color: var(--muted); }
.tl-status { display: inline-block; margin-bottom: 8px; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.is-done .tl-status { color: var(--gold-2); }
.is-current .tl-status { color: var(--electric-2); }
@media (min-width: 1000px) {
  .timeline { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .timeline::before { left: 28px; right: 28px; top: 27px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, var(--gold), var(--electric) 35%, rgba(143, 208, 255, .12)); }
  .tl-step { padding: 76px 0 0; }
  .tl-card { height: 100%; }
}

.studio-wrap { display: grid; gap: 40px; }
@media (min-width: 980px) { .studio-wrap { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; } }
.disciplines { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.disciplines li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), background .3s; }
.disciplines li:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(69, 170, 255, .08), transparent); }
.disciplines b { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.disciplines span { font-size: 13px; color: var(--muted); text-align: right; max-width: 220px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.team-card { padding: 18px; }
.team-card svg { width: 30px; height: 30px; color: var(--gold-2); margin-bottom: 10px; }
.team-card b { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.team-card small { color: var(--muted); font-size: 13px; line-height: 1.45; display: block; }

.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border-radius: 16px; overflow: hidden; }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
  padding: 20px 22px; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; width: 28px; height: 28px; flex: none; border-radius: 50%; border: 1px solid var(--line); }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--gold); transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item[open] { border-color: rgba(143, 208, 255, .35); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq-item .faq-body p:last-child { margin: 0; }

.cta-panel {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  padding: 80px 24px; border-radius: 28px; border: 1px solid rgba(232, 182, 76, .3);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(69, 170, 255, .28), transparent 70%),
    radial-gradient(50% 60% at 50% 100%, rgba(91, 42, 134, .45), transparent 70%),
    linear-gradient(180deg, #0d1840, #070c22);
}
.cta-panel canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
.cta-panel h2 { font-size: clamp(42px, 8vw, 96px); margin-bottom: 18px; }
.cta-panel p { color: #c4cde4; max-width: 560px; margin: 0 auto 32px; font-size: clamp(16px, 1.6vw, 19px); }
.cta-panel .btn-row { justify-content: center; }
.cta-panel .eyebrow::after { content: ""; width: 28px; height: 2px; background: linear-gradient(270deg, var(--electric), transparent); }

.page-hero { position: relative; padding: calc(var(--header-h) + 72px) 0 56px; overflow: hidden; isolation: isolate; }
.page-hero canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .9; }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; z-index: -1; background: linear-gradient(180deg, transparent, var(--midnight)); }
.page-hero h1 { font-size: clamp(48px, 9vw, 112px); line-height: .9; max-width: 900px; }
.page-hero .section-lead { font-size: clamp(16px, 1.8vw, 20px); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--lightning); }

.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split--top { align-items: start; }
.card-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.info-card { padding: 26px; }
.info-card h3 { font-size: 28px; margin-bottom: 8px; }
.info-card p { color: var(--muted); margin: 0; }
.info-card .tag { display: inline-block; margin-bottom: 12px; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); }
.target-card { display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: center; padding: 20px; }
.target-card img { width: 76px; height: 76px; }
.target-card h3 { font-size: 24px; margin-bottom: 4px; }
.target-card p { margin: 0; color: var(--muted); font-size: 15px; }
.target-card .pts { font-family: var(--font-display); font-weight: 800; color: var(--gold-2); letter-spacing: .06em; }

.scene-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .scene-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .scene-grid { grid-template-columns: repeat(3, 1fr); } .scene-grid .scene-card:first-child { grid-column: span 2; grid-row: span 2; } }
.scene-card { position: relative; margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--deep); aspect-ratio: 3 / 2; }
.scene-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.scene-card:hover img { transform: scale(1.04); }
.scene-card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; background: linear-gradient(180deg, transparent, rgba(6, 10, 28, .92)); }
.scene-card figcaption b { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.scene-card figcaption small { color: var(--muted); font-size: 13px; }
.scene-card .scene-num { position: absolute; top: 14px; left: 14px; padding: 3px 10px; border-radius: 999px; background: rgba(6, 10, 28, .7); border: 1px solid var(--line); font-size: 11px; font-weight: 800; letter-spacing: .16em; color: var(--gold-2); }

.swatches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 720px) { .swatches { grid-template-columns: repeat(6, 1fr); } }
.swatch { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--deep); }
.swatch i { display: block; height: 96px; }
.swatch div { padding: 10px 12px; }
.swatch b { display: block; font-size: 13px; }
.swatch small { font-size: 12px; color: var(--muted); font-family: ui-monospace, Menlo, monospace; }

.type-specimen { padding: 32px; }
.type-specimen .big { font-family: var(--font-display); font-weight: 900; font-size: clamp(56px, 10vw, 120px); line-height: .9; text-transform: uppercase; }
.type-specimen .body-sample { font-size: 18px; color: var(--muted); max-width: 520px; }

.mode-card { padding: 28px; position: relative; overflow: hidden; }
.mode-card .dur { font-family: var(--font-display); font-weight: 900; font-size: 64px; line-height: 1; color: var(--gold); }
.mode-card .dur small { font-size: 22px; color: var(--muted); margin-left: 4px; }
.mode-card h3 { font-size: 30px; margin: 10px 0 8px; }
.mode-card p { color: var(--muted); margin: 0; }

.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 800px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 22px; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 900; font-size: 48px; line-height: 1; color: var(--lightning); }
.stat span { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.result-mock { max-width: 420px; margin: 0 auto; padding: 34px 26px; text-align: center; }
.result-mock .zg-kicker { margin-bottom: 4px; }
.result-mock h3 { font-size: 44px; color: var(--lightning); margin-bottom: 4px; }
.result-mock .zg-points { justify-content: center; }
.result-mock .zg-res-grid { justify-content: center; }
.result-mock .mock-btns { display: grid; gap: 8px; }
.result-mock .mock-btns span { display: block; padding: 10px; border-radius: 999px; border: 1px solid var(--line); font-family: var(--font-display); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.result-mock .mock-btns span:first-child { background: linear-gradient(180deg, #ffe7a8, var(--gold)); color: #1c1204; border-color: transparent; }

.prose { max-width: 780px; }
.prose h2 { font-size: 32px; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #c4cde4; }
.prose ul, .prose ol { padding-left: 20px; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.prose .updated { font-size: 13px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

.contact-grid { display: grid; gap: 28px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 48px; } }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-list li { padding: 20px 22px; }
.contact-list span { display: block; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 4px; }
.contact-list a, .contact-list p { font-size: 18px; font-weight: 600; color: var(--lightning); margin: 0; }
.site-footer { position: relative; margin-top: 40px; padding: 64px 0 32px; border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(11, 19, 48, .7)); }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-about p { color: var(--muted); font-size: 14px; max-width: 340px; margin-top: 16px; }
.footer-col h2 { font-size: 16px; letter-spacing: .16em; color: var(--gold-2); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.footer-col a { display: inline-block; padding: 12px 0; color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--lightning); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer-bottom .notice { max-width: 620px; }

.byline { display: flex; flex-wrap: wrap; gap: 4px 14px; margin: 0 0 22px; font-size: 13px; color: var(--muted); }
.byline b { color: var(--text); font-weight: 700; }
.hero .byline { margin: 28px 0 0; }
.gap-lg { height: 48px; }
.prose-block { max-width: 760px; }
.prose-block p { color: #c4cde4; }
.prose-block h2 { font-size: clamp(32px, 4.4vw, 52px); }
.prose-block h3 { font-size: 26px; margin-top: 32px; }
.inline-cta { margin-top: 28px; }

.zg-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.zg.is-live .zg-poster { display: none; }
.zg.is-loading .zg-mode { opacity: .6; pointer-events: none; }
.zg-noscript { position: absolute; inset: auto 0 0; z-index: 4; margin: 0; padding: 14px; background: rgba(6, 10, 28, .88); font-size: 14px; text-align: center; }

.data-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(10, 17, 44, .6); }
.data-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 15px; }
.data-table caption { caption-side: top; text-align: left; padding: 18px 20px 6px; font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--lightning); }
.data-table th, .data-table td { padding: 14px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.data-table thead th { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.data-table tbody th { font-weight: 700; color: var(--lightning); white-space: nowrap; }
.data-table td { color: #c4cde4; }
.data-table tbody tr:last-child > * { border-bottom: 0; }
.data-table tbody tr:hover { background: rgba(69, 170, 255, .06); }
.data-table--gold tbody th { color: var(--gold-2); }
.data-table--narrow { min-width: 0; }
@media (max-width: 600px) {
  .data-table { min-width: 0; }
  .data-table thead { display: none; }
  .data-table tr { display: block; padding: 14px 18px; border-bottom: 1px solid var(--line); }
  .data-table tbody tr:last-child { border-bottom: 0; }
  .data-table th, .data-table td { display: block; padding: 2px 0; border: 0; white-space: normal; }
  .data-table tbody th { margin-bottom: 4px; font-size: 16px; }
  .data-table td[data-label]::before { content: attr(data-label) ": "; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-2); }
}
.table-note { margin: 12px 4px 0; font-size: 13px; color: var(--muted); }

.worked { margin: 0; padding: 24px; overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(232, 182, 76, .35); background: #070c22; color: #d8def0; font: 14px/1.7 ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
.worked b { color: var(--gold-2); font-weight: 700; }
@media (max-width: 560px) { .worked { padding: 16px; font-size: 11.5px; } }

.page-hero-grid { display: grid; gap: 32px; align-items: end; }
@media (min-width: 960px) { .page-hero-grid { grid-template-columns: 1.3fr .7fr; gap: 56px; } }
.fact-list { margin: 0; display: grid; gap: 10px; padding: 20px 22px; }
.fact-list div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.fact-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-list dt { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.fact-list dd { margin: 0; font-weight: 700; color: var(--lightning); text-align: right; }
.page-hero .stats-row { margin-top: 36px; }
.page-hero-media { display: grid; gap: 32px; align-items: center; }
@media (min-width: 960px) { .page-hero-media { grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.page-hero-media img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.hero-strip { margin: 36px 0 0; }
.hero-strip img { width: 100%; height: auto; aspect-ratio: 3 / 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.hero-strip figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }
.answer { max-width: 760px; margin-top: 8px; padding: 18px 22px; border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; background: rgba(232, 182, 76, .07); color: #d8def0; font-size: clamp(16px, 1.6vw, 18px); }
.answer p:last-child { margin: 0; }

.gallery { columns: 3 260px; column-gap: 16px; }
.gallery figure { break-inside: avoid; margin: 0 0 16px; padding: 10px; }
.gallery img { width: 100%; height: auto; border-radius: 12px; }
.gallery figcaption { padding: 10px 6px 4px; font-size: 14px; color: var(--muted); }
.gallery figcaption b { display: block; color: var(--lightning); font-family: var(--font-display); font-size: 20px; letter-spacing: .03em; text-transform: uppercase; }
.gallery--targets img { max-width: 160px; margin: 0 auto; }

.glossary { margin: 0; display: grid; gap: 14px 40px; }
@media (min-width: 760px) { .glossary { grid-template-columns: 1fr 1fr; } }
.glossary div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.glossary dt { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--gold-2); }
.glossary dd { margin: 4px 0 0; color: #c4cde4; }

.fit { display: grid; gap: 16px; }
@media (min-width: 860px) { .fit { grid-template-columns: 1fr 1fr; } }
.fit-col { padding: 26px; }
.fit-col h3 { font-size: 26px; }
.fit-col ul { margin: 0; padding-left: 20px; color: #c4cde4; display: grid; gap: 8px; }
.fit-col--no { border-color: rgba(255, 138, 107, .3); }
.fit-col--no h3 { color: #ffb29c; }

.loop-diagram { width: 100%; height: auto; max-width: 880px; margin: 0 auto; }
.loop-diagram text { font-family: var(--font-display); font-weight: 800; fill: var(--lightning); letter-spacing: .06em; }
.loop-diagram .sub text { font-family: var(--font-body); font-weight: 600; font-size: 13px; fill: var(--muted); letter-spacing: 0; }

.checklist { margin: 0; padding: 0; list-style: none; counter-reset: check; display: grid; gap: 10px; max-width: 820px; }
.checklist li { counter-increment: check; position: relative; padding: 16px 18px 16px 62px; border-radius: 14px; border: 1px solid var(--line); background: rgba(17, 27, 66, .45); color: #c4cde4; }
.checklist li::before { content: counter(check); position: absolute; left: 16px; top: 13px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 18px; color: #1c1204; background: linear-gradient(180deg, #ffe7a8, var(--gold)); }
.checklist b { color: var(--lightning); }

.no-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.no-list li { padding: 18px 20px; border-radius: 14px; border: 1px dashed rgba(255, 217, 138, .35); color: #c4cde4; }
.no-list b { display: block; color: var(--gold-2); margin-bottom: 2px; }

.specs { margin: 0; display: grid; gap: 12px; }
@media (min-width: 700px) { .specs { grid-template-columns: repeat(2, 1fr); } }
.specs div { padding: 18px 20px; }
.specs dt { font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.specs dd { margin: 4px 0 0; color: var(--lightning); font-weight: 600; }

.controls { display: grid; gap: 32px; align-items: center; }
@media (min-width: 960px) { .controls { grid-template-columns: .9fr 1.1fr; gap: 56px; } }
.controls-art { padding: 14px; }
.controls-art svg { width: 100%; height: auto; }

.stage-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.stage-item { display: grid; gap: 18px; padding: 14px; align-items: center; }
@media (min-width: 760px) { .stage-item { grid-template-columns: 280px 1fr; gap: 26px; } }
.stage-item img { width: 100%; height: auto; border-radius: 12px; }
.stage-item h3 { font-size: 28px; margin-bottom: 6px; }
.stage-item p { margin: 0; color: #c4cde4; }
.stage-item .scene-num { display: inline-block; margin-bottom: 6px; font-size: 11px; font-weight: 800; letter-spacing: .16em; color: var(--gold-2); }

.band { background: linear-gradient(180deg, rgba(17, 27, 66, .45), rgba(10, 17, 44, .2)); }
.shot { margin: 0; }
.shot img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.shot figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }
.contact-note { margin-top: 18px; color: var(--muted); font-size: 15px; max-width: 520px; }
.footer-owner { font-style: normal; color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.6; }
.footer-owner a { color: var(--electric-2); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.no-js .reveal { opacity: 1; transform: none; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes pulseRing { 0%, 100% { box-shadow: 0 0 0 6px rgba(69, 170, 255, .12), 0 0 30px rgba(69, 170, 255, .7); } 50% { box-shadow: 0 0 0 12px rgba(69, 170, 255, .05), 0 0 40px rgba(69, 170, 255, .9); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes eyes { 0%, 88%, 100% { opacity: .85; } 90%, 94% { opacity: 1; filter: brightness(1.8); } }
@keyframes boltFlicker { 0%, 100% { opacity: .95; } 3% { opacity: .3; } 5% { opacity: 1; } 7% { opacity: .5; } 9%, 60% { opacity: .95; } 62% { opacity: .6; } 64% { opacity: 1; } }

@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; }
}

@media (max-width: 640px) {
  .zg-modes { gap: 8px; }
  .zg-mode { gap: 0 10px; padding: 10px 14px; flex-direction: row; flex-wrap: wrap; align-items: baseline; column-gap: 10px; }
  .zg-mode em { margin-top: 0; margin-left: auto; }
  .zg-hint { display: none; }
  .zg-points { margin-bottom: 10px; }
  .zg-res-grid div { min-width: 0; flex: 1; }
}
