:root {
  --ink: #071114;
  --ink-2: #0b191d;
  --panel: rgba(11, 25, 29, .82);
  --cyan: #5de8e3;
  --cyan-2: #24b9bd;
  --copper: #ff9a5a;
  --paper: #f4f1e8;
  --muted: rgba(235, 245, 242, .67);
  --line: rgba(93, 232, 227, .18);
  --white: #f5fbfa;
  --pad: clamp(72px, 7vw, 132px);
  --ease: cubic-bezier(.2, .72, .18, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; min-height: 100%; background: var(--ink); color: var(--white); }
html { overflow: hidden; }
body { overflow: hidden; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }

.ambient { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; background: radial-gradient(circle at 68% 32%, rgba(32, 132, 138, .13), transparent 36%), linear-gradient(140deg, #071114 0%, #081417 50%, #071114 100%); }
.ambient-grid { position: absolute; inset: -8%; opacity: .36; background-image: linear-gradient(rgba(93,232,227,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(93,232,227,.045) 1px, transparent 1px); background-size: 54px 54px; transform: perspective(800px) rotateX(64deg) translateY(43%); transform-origin: center bottom; mask-image: linear-gradient(180deg, transparent 10%, #000 68%, #000); }
.ambient-scan { position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px, transparent 1px, transparent 5px); opacity: .36; mix-blend-mode: soft-light; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .19; }
.orb-one { width: 36vw; height: 36vw; right: -12vw; top: -10vw; background: var(--cyan-2); }
.orb-two { width: 28vw; height: 28vw; left: 28vw; bottom: -18vw; background: var(--copper); opacity: .07; }
.pixels { position: absolute; inset: 0; }
.pixel { position: absolute; width: 3px; height: 3px; background: rgba(93,232,227,.45); box-shadow: 0 0 10px rgba(93,232,227,.35); animation: pixelFloat var(--dur, 11s) linear infinite; opacity: var(--alpha, .35); }
@keyframes pixelFloat { from { transform: translate3d(0, 15vh, 0); } 50% { transform: translate3d(18px, -5vh, 0); } to { transform: translate3d(-10px, -28vh, 0); } }

.topbar { position: fixed; z-index: 40; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 28px; pointer-events: none; }
.topbar > * { pointer-events: auto; }
.brand { border: 0; background: transparent; padding: 0; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; text-align: left; }
.brand-head { width: 36px; height: 36px; display: grid; place-items: center; background: rgba(93,232,227,.08); border: 1px solid rgba(93,232,227,.3); overflow: hidden; box-shadow: 0 0 0 4px rgba(93,232,227,.025); }
.brand-head img { width: 100%; height: 100%; image-rendering: pixelated; }
.brand-copy { display: grid; gap: 2px; line-height: 1; }
.brand-copy b { font-size: 11px; letter-spacing: .14em; }
.brand-copy small { color: var(--cyan); font-size: 8px; font-weight: 800; letter-spacing: .24em; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.status-chip { height: 34px; padding: 0 12px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(93,232,227,.2); background: rgba(7,17,20,.52); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); font-size: 8px; letter-spacing: .17em; color: rgba(245,251,250,.74); font-weight: 800; }
.status-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(93,232,227,.09), 0 0 18px rgba(93,232,227,.45); animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse { 50% { opacity: .5; box-shadow: 0 0 0 7px rgba(93,232,227,.03), 0 0 7px rgba(93,232,227,.24); } }
.slide-count { display: flex; align-items: center; gap: 9px; font-size: 9px; letter-spacing: .16em; color: rgba(255,255,255,.35); }
.slide-count b { color: var(--cyan); font-size: 11px; }
.slide-count i { width: 32px; height: 1px; background: rgba(255,255,255,.19); }
.menu-button { height: 38px; min-width: 78px; padding: 0 13px; border: 1px solid rgba(255,255,255,.17); background: rgba(7,17,20,.43); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: grid; grid-template-columns: auto 12px; grid-template-rows: 1fr 1fr; align-items: center; column-gap: 9px; cursor: pointer; transition: .25s; }
.menu-button span { grid-row: 1 / 3; font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.menu-button i { display: block; height: 1px; background: var(--cyan); transition: .25s; }
.menu-button:hover { border-color: rgba(93,232,227,.48); background: rgba(93,232,227,.07); }
.menu-button:hover i:first-of-type { transform: translateX(-4px); }
.menu-button:hover i:last-of-type { transform: translateX(3px); }

.menu { position: fixed; z-index: 80; inset: 0 0 0 auto; width: min(560px, 100%); padding: 28px 36px 32px; background: rgba(5,14,17,.97); border-left: 1px solid rgba(93,232,227,.14); transform: translateX(105%); transition: transform .65s var(--ease), visibility .65s; visibility: hidden; display: flex; flex-direction: column; overflow: hidden; }
.menu.open { transform: translateX(0); visibility: visible; }
.menu-glow { position: absolute; width: 430px; height: 430px; right: -180px; top: -160px; border-radius: 50%; background: rgba(93,232,227,.09); filter: blur(65px); }
.menu-top { position: relative; display: flex; align-items: center; justify-content: space-between; }
.menu-label { font-size: 9px; font-weight: 800; letter-spacing: .2em; color: rgba(255,255,255,.48); }
.menu-close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.025); cursor: pointer; font-size: 29px; line-height: 1; transition: .25s; }
.menu-close:hover { border-color: var(--cyan); color: var(--cyan); transform: rotate(6deg); }
.menu nav { position: relative; margin: auto 0; display: grid; }
.menu nav button { display: grid; grid-template-columns: 46px 1fr auto; gap: 10px; align-items: baseline; padding: 18px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.09); background: transparent; text-align: left; cursor: pointer; font-size: clamp(32px, 5vw, 56px); line-height: .93; font-weight: 900; letter-spacing: -.05em; transition: .28s; }
.menu nav button span { color: var(--cyan); font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.menu nav button i { font-size: 24px; font-style: normal; color: var(--cyan); opacity: 0; transform: translateX(-10px); transition: .28s; }
.menu nav button:hover, .menu nav button[aria-current="page"] { color: var(--cyan); padding-left: 7px; }
.menu nav button:hover i, .menu nav button[aria-current="page"] i { opacity: 1; transform: none; }
.menu-foot { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(93,232,227,.16); }
.menu-foot div { display: flex; gap: 10px; flex-wrap: wrap; }
.menu-foot b { font-size: 9px; color: rgba(255,255,255,.65); letter-spacing: .14em; }
.menu-foot span { color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: .15em; }

.viewport { position: relative; z-index: 2; width: 100vw; height: 100vh; height: 100dvh; overflow: hidden; outline: none; }
.track { display: flex; width: 500vw; height: 100%; transform: translate3d(0,0,0); transition: transform .74s var(--ease); will-change: transform; }
.slide { position: relative; flex: 0 0 100vw; width: 100vw; height: 100vh; height: 100dvh; padding: 94px var(--pad) 58px; overflow: hidden; }
.section-kicker { color: var(--cyan); font: 800 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .19em; }
.slide h2 { margin: 14px 0 18px; font-size: clamp(58px, 6.8vw, 108px); line-height: .84; letter-spacing: -.07em; text-transform: uppercase; }
.slide h2 span { color: var(--cyan); }
.slide p { color: var(--muted); }
.reveal-block, .reveal-card { opacity: 0; transform: translateY(28px) scale(.992); filter: blur(6px); transition: opacity .78s .16s ease, transform .82s .16s var(--ease), filter .7s .16s ease; }
.slide.active .reveal-block, .slide.active .reveal-card, .slide.entering .reveal-block, .slide.entering .reveal-card { opacity: 1; transform: none; filter: none; }
.slide.active .reveal-card { transition-delay: .27s; }

/* HOME */
.hero { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 5vw; }
.hero-copy { position: relative; z-index: 4; max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 12px; font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .18em; color: rgba(255,255,255,.45); }
.eyebrow span { color: var(--cyan); }
.eyebrow i { width: 44px; height: 1px; background: rgba(93,232,227,.42); }
.eyebrow b { color: rgba(255,255,255,.64); }
.hero h1 { margin: 18px 0 22px; font-size: clamp(82px, 9vw, 154px); line-height: .73; letter-spacing: -.082em; font-weight: 950; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(245,251,250,.37); text-stroke: 1.5px rgba(245,251,250,.37); }
.hero h1 .accent { color: var(--cyan); text-shadow: 0 0 46px rgba(93,232,227,.12); }
.hero-lead { max-width: 680px; margin: 0; font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; gap: 10px; margin-top: 28px; }
.cta, .ghost { min-height: 52px; border: 0; cursor: pointer; transition: .28s var(--ease); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 0 18px 0 20px; background: var(--cyan); color: #061215; box-shadow: 0 10px 34px rgba(36,185,189,.12); }
.cta b { font-size: 19px; transition: .28s; }
.cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(36,185,189,.2); }
.cta:hover b { transform: translateX(4px); }
.ghost { padding: 0 20px; color: var(--white); background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.16); }
.ghost:hover { border-color: rgba(93,232,227,.42); color: var(--cyan); background: rgba(93,232,227,.04); }
.hero-proof { display: flex; gap: 0; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.09); max-width: 650px; }
.hero-proof span { display: grid; gap: 3px; min-width: 140px; padding: 13px 18px 0 0; margin-right: 20px; border-right: 1px solid rgba(255,255,255,.08); }
.hero-proof span:last-child { border-right: 0; }
.hero-proof b { color: var(--cyan); font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.hero-proof small { color: rgba(255,255,255,.45); font-size: 8px; letter-spacing: .13em; font-weight: 750; }
.hero-visual { position: relative; height: min(74vh, 720px); min-height: 520px; display: grid; place-items: center; isolation: isolate; }
.visual-frame { position: absolute; inset: 8% 8% 4% 9%; border: 1px solid rgba(93,232,227,.14); background: linear-gradient(145deg, rgba(93,232,227,.035), rgba(255,255,255,.008)); clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 11% 100%, 0 89%); }
.visual-frame::before, .visual-frame::after { content: ""; position: absolute; background: var(--cyan); opacity: .46; }
.visual-frame::before { width: 74px; height: 2px; top: -1px; left: 0; }
.visual-frame::after { width: 2px; height: 74px; bottom: 0; right: -1px; }
.player-halo { position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(93,232,227,.14); box-shadow: 0 0 0 34px rgba(93,232,227,.018), 0 0 0 70px rgba(93,232,227,.009); }
.player-halo::before, .player-halo::after { content: ""; position: absolute; inset: 10%; border: 1px dashed rgba(93,232,227,.15); border-radius: 50%; animation: haloSpin 22s linear infinite; }
.player-halo::after { inset: 24%; animation-direction: reverse; animation-duration: 15s; }
@keyframes haloSpin { to { transform: rotate(360deg); } }
.player-shadow { position: absolute; bottom: 11%; width: 46%; height: 9%; border-radius: 50%; background: rgba(0,0,0,.48); filter: blur(18px); }
.player-body { position: relative; z-index: 3; width: min(80%, 520px); height: auto; max-height: 88%; object-fit: contain; image-rendering: pixelated; filter: drop-shadow(0 30px 36px rgba(0,0,0,.42)); transform: translateY(-1%); }
.visual-crosshair { position: absolute; width: 16px; height: 16px; border: 1px solid rgba(93,232,227,.42); }
.visual-crosshair::before, .visual-crosshair::after { content: ""; position: absolute; background: rgba(93,232,227,.5); }
.visual-crosshair::before { width: 34px; height: 1px; left: -10px; top: 7px; }
.visual-crosshair::after { width: 1px; height: 34px; left: 7px; top: -10px; }
.cross-one { top: 20%; left: 7%; }
.cross-two { right: 5%; bottom: 29%; transform: scale(.7); opacity: .55; }
.player-card { position: absolute; z-index: 5; left: 0; bottom: 5%; display: flex; gap: 11px; align-items: center; padding: 10px 15px 10px 10px; background: rgba(6,18,21,.9); border: 1px solid rgba(93,232,227,.24); box-shadow: 0 12px 35px rgba(0,0,0,.28); }
.player-avatar { width: 48px; height: 48px; overflow: hidden; border: 1px solid rgba(93,232,227,.35); }
.player-avatar img { width: 100%; height: 100%; image-rendering: pixelated; }
.player-card > div:last-child { display: grid; gap: 3px; }
.player-card small { color: rgba(255,255,255,.38); font-size: 7px; letter-spacing: .18em; }
.player-card b { font-size: 15px; letter-spacing: -.015em; }
.player-card span { color: rgba(255,255,255,.55); font-size: 7px; letter-spacing: .12em; font-weight: 800; }
.player-card span i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); margin-right: 5px; box-shadow: 0 0 9px rgba(93,232,227,.6); }
.coordinate-card { position: absolute; z-index: 4; right: 1%; top: 12%; padding: 10px 12px; border-left: 2px solid var(--copper); background: rgba(7,17,20,.65); display: grid; gap: 4px; }
.coordinate-card small { color: rgba(255,255,255,.34); font: 700 7px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; }
.coordinate-card b { color: var(--copper); font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.hero-stamp { position: absolute; z-index: 6; right: 2%; bottom: 10%; width: 94px; height: 94px; border: 1px solid rgba(255,154,90,.45); border-radius: 50%; display: grid; place-content: center; text-align: center; transform: rotate(8deg); background: rgba(7,17,20,.68); box-shadow: inset 0 0 0 6px rgba(255,154,90,.035); }
.hero-stamp span { color: var(--copper); font-size: 14px; }
.hero-stamp b { color: var(--copper); font-size: 11px; line-height: .98; letter-spacing: .08em; }
.swipe-cue { position: absolute; left: var(--pad); bottom: 24px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.29); font-size: 8px; font-weight: 800; letter-spacing: .19em; }
.swipe-cue i { color: var(--cyan); font-size: 15px; font-style: normal; animation: cue 1.7s ease-in-out infinite; }
@keyframes cue { 50% { transform: translateX(6px); opacity: .6; } }

/* RECORD */
.record { display: flex; flex-direction: column; justify-content: center; }
.section-head { max-width: 880px; }
.section-head h2 { font-size: clamp(56px, 6.1vw, 98px); }
.section-head p { max-width: 740px; margin: 0; font-size: 15px; line-height: 1.6; }
.record-layout { margin-top: 36px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 16px; min-height: 335px; }
.record-main, .record-side { border: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(255,255,255,.028), rgba(93,232,227,.016)); }
.record-main { padding: 19px 22px 18px; position: relative; overflow: hidden; }
.record-main::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(93,232,227,.055); right: -100px; bottom: -120px; filter: blur(20px); }
.record-topline { display: flex; justify-content: space-between; gap: 14px; color: rgba(255,255,255,.33); font: 700 7px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .17em; }
.record-topline b { color: var(--cyan); font-weight: 800; }
.record-identity { display: flex; align-items: center; gap: 20px; margin: 25px 0 22px; }
.record-identity img { width: 96px; height: 96px; object-fit: contain; image-rendering: pixelated; filter: drop-shadow(0 15px 16px rgba(0,0,0,.25)); }
.record-identity small { color: var(--cyan); font-size: 8px; letter-spacing: .19em; font-weight: 850; }
.record-identity h3 { margin: 4px 0 7px; font-size: clamp(32px, 3vw, 48px); line-height: .9; letter-spacing: -.055em; }
.office-pill { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .14em; font-weight: 800; }
.office-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px rgba(93,232,227,.45); }
.record-line { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 7px; margin-bottom: 18px; }
.record-line span { height: 1px; background: rgba(93,232,227,.14); }
.record-line i { width: 6px; height: 6px; border: 1px solid var(--cyan); transform: rotate(45deg); }
.record-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.record-facts div { padding-right: 12px; border-right: 1px solid rgba(255,255,255,.08); display: grid; gap: 5px; }
.record-facts div:last-child { border-right: 0; }
.record-facts small { color: rgba(255,255,255,.32); font-size: 7px; letter-spacing: .13em; }
.record-facts b { font-size: 9px; letter-spacing: .07em; }
.source-link { position: absolute; z-index: 2; right: 20px; bottom: 17px; text-decoration: none; color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .09em; transition: .2s; }
.source-link span { color: var(--cyan); }
.source-link:hover { color: var(--cyan); }
.record-side { display: grid; grid-template-rows: repeat(3, 1fr); }
.signal-card { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.signal-card:last-child { border-bottom: 0; }
.signal-number { color: rgba(93,232,227,.45); font: 800 26px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.signal-card small { color: var(--copper); font-size: 7px; letter-spacing: .15em; font-weight: 850; }
.signal-card h3 { margin: 4px 0; font-size: 19px; letter-spacing: -.025em; }
.signal-card p { margin: 0; font-size: 10px; line-height: 1.42; color: rgba(255,255,255,.45); }

/* PRIORITIES */
.priorities { display: flex; flex-direction: column; justify-content: center; }
.priority-head { max-width: 780px; }
.priority-head h2 { font-size: clamp(58px, 6.2vw, 101px); }
.priority-head p { margin: 0; font-size: 14px; }
.priority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.priority-card { position: relative; min-height: 360px; padding: 22px 22px 24px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(160deg, rgba(255,255,255,.03), rgba(93,232,227,.012)); overflow: hidden; transition: border-color .25s, transform .28s var(--ease), background .25s; }
.priority-card:hover { transform: translateY(-7px); border-color: rgba(93,232,227,.32); background: linear-gradient(160deg, rgba(93,232,227,.055), rgba(255,255,255,.014)); }
.priority-number { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.35); font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .15em; }
.priority-number i { height: 1px; flex: 1; background: rgba(255,255,255,.08); }
.priority-icon { width: 70px; height: 70px; margin: 35px 0 26px; display: grid; place-items: center; background: rgba(93,232,227,.035); border: 1px solid rgba(93,232,227,.16); }
.priority-icon svg { width: 45px; height: 45px; fill: none; stroke: var(--cyan); stroke-width: 2.2; stroke-linecap: square; stroke-linejoin: miter; }
.priority-icon svg .fill { fill: var(--copper); stroke: none; }
.priority-card small { color: var(--copper); font-size: 8px; letter-spacing: .18em; font-weight: 850; }
.priority-card h3 { margin: 7px 0 12px; max-width: 330px; font-size: clamp(25px, 2vw, 34px); line-height: .98; letter-spacing: -.045em; }
.priority-card p { margin: 0; max-width: 340px; font-size: 11px; line-height: 1.55; color: rgba(255,255,255,.5); }
.priority-meter { position: absolute; left: 22px; right: 22px; bottom: 18px; height: 2px; background: rgba(255,255,255,.06); overflow: hidden; }
.priority-meter i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--copper)); transition: width 1.05s .55s var(--ease); }
.slide.active .priority-card:nth-child(1) .priority-meter i { width: 84%; }
.slide.active .priority-card:nth-child(2) .priority-meter i { width: 91%; transition-delay: .67s; }
.slide.active .priority-card:nth-child(3) .priority-meter i { width: 88%; transition-delay: .79s; }

/* LEADERSHIP */
.leadership { display: grid; grid-template-columns: minmax(420px, .98fr) minmax(0, 1.02fr); align-items: center; gap: 5vw; }
.command-board { position: relative; height: min(65vh, 650px); min-height: 490px; border: 1px solid rgba(93,232,227,.14); background: rgba(8,21,24,.55); overflow: hidden; }
.command-board::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.05); }
.command-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(93,232,227,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(93,232,227,.045) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at center, #000 35%, transparent 90%); }
.command-label { position: absolute; top: 19px; left: 23px; color: rgba(255,255,255,.36); font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .15em; }
.command-node { position: absolute; z-index: 3; width: 150px; height: 86px; padding: 13px 15px; border: 1px solid rgba(93,232,227,.23); background: rgba(7,17,20,.89); display: grid; align-content: center; gap: 5px; box-shadow: 0 18px 32px rgba(0,0,0,.23); }
.command-node span { color: var(--copper); font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.command-node b { font-size: 18px; letter-spacing: .08em; }
.command-node i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(93,232,227,.06), 0 0 18px rgba(93,232,227,.38); }
.node-a { left: 7%; top: 15%; }
.node-a i { right: -5px; bottom: 16px; }
.node-b { left: 41%; top: 42%; }
.node-b i { left: -5px; top: 14px; }
.node-c { right: 7%; bottom: 12%; }
.node-c i { left: -5px; top: 14px; }
.command-path { position: absolute; inset: 0; width: 100%; height: 100%; }
.command-path path { fill: none; stroke: rgba(93,232,227,.27); stroke-width: 2; stroke-dasharray: 6 7; }
.pulse { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(93,232,227,.6); offset-path: path("M105 113 C260 112, 260 248, 346 248 S474 388, 596 388"); animation: routePulse 5.2s linear infinite; opacity: .7; }
.p2 { animation-delay: -1.7s; }
.p3 { animation-delay: -3.4s; }
@keyframes routePulse { from { offset-distance: 0%; } to { offset-distance: 100%; } }
.command-readout { position: absolute; left: 22px; bottom: 20px; display: grid; gap: 5px; padding: 11px 13px; border-left: 2px solid var(--copper); background: rgba(7,17,20,.75); }
.command-readout small { color: rgba(255,255,255,.35); font-size: 7px; letter-spacing: .14em; }
.command-readout b { font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; }
.command-readout span { color: var(--cyan); font-size: 8px; letter-spacing: .1em; }
.leadership-copy { max-width: 700px; }
.leadership-copy h2 { font-size: clamp(64px, 6.5vw, 110px); }
.leadership-copy > p { max-width: 650px; margin: 0; font-size: 14px; line-height: 1.62; }
.principles { margin-top: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.principles div { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.principles span { color: var(--cyan); font: 800 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.principles b { display: block; margin: 7px 0 5px; font-size: 13px; }
.principles p { margin: 0; font-size: 9px; line-height: 1.45; color: rgba(255,255,255,.42); }
.leadership-cta { margin-top: 28px; }

/* VOTE */
.vote { display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); align-items: center; gap: 6vw; }
.vote-copy { max-width: 730px; }
.vote-tag { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 8px 10px; border: 1px solid rgba(93,232,227,.18); color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .15em; font-weight: 800; }
.vote-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(93,232,227,.5); }
.vote h2 { margin-top: 18px; font-size: clamp(64px, 7.3vw, 122px); }
.vote h2 span { color: var(--cyan); text-transform: none; }
.vote-copy > p { max-width: 620px; margin: 0; font-size: 15px; line-height: 1.6; }
.vote-signature { display: flex; align-items: center; gap: 12px; margin-top: 27px; }
.vote-signature img { width: 54px; height: 54px; image-rendering: pixelated; border: 1px solid rgba(93,232,227,.25); }
.vote-signature div { display: grid; gap: 1px; }
.vote-signature small { color: rgba(255,255,255,.34); font-size: 7px; letter-spacing: .14em; }
.vote-signature b { font-size: 13px; letter-spacing: .08em; }
.vote-signature span { color: var(--copper); font-size: 8px; letter-spacing: .2em; font-weight: 850; }
.ballot-wrap { position: relative; background: var(--paper); color: #132326; width: min(100%, 660px); justify-self: end; padding: 24px 25px 22px; box-shadow: 0 28px 70px rgba(0,0,0,.32); transform: rotate(.6deg); overflow: hidden; }
.ballot-wrap::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(7,17,20,.025) 0, rgba(7,17,20,.025) 1px, transparent 1px, transparent 4px); mix-blend-mode: multiply; }
.ballot-top { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 10px; padding-bottom: 12px; border-bottom: 2px solid #16383a; color: #16383a; font-size: 8px; letter-spacing: .14em; font-weight: 850; }
.ballot-top b { color: #a4532b; }
.ballot-instruction { position: relative; z-index: 2; display: grid; gap: 3px; padding: 14px 0; }
.ballot-instruction b { font-size: 13px; }
.ballot-instruction span { color: rgba(19,35,38,.56); font-size: 9px; }
.ballot-head-row, .ballot-row { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr repeat(3, 42px); align-items: center; gap: 8px; }
.ballot-head-row { padding: 8px 8px; color: rgba(19,35,38,.52); font-size: 7px; font-weight: 850; letter-spacing: .11em; background: rgba(16,56,58,.055); }
.ballot-head-row i { font-style: normal; text-align: center; }
.ballot-row { min-height: 76px; padding: 10px 8px; border-bottom: 1px solid rgba(19,35,38,.13); }
.ballot-person { display: flex; align-items: center; gap: 12px; }
.ballot-person img, .blank-head { flex: 0 0 44px; width: 44px; height: 44px; }
.ballot-person img { image-rendering: pixelated; border: 1px solid rgba(19,35,38,.17); }
.blank-head { display: block; background: repeating-linear-gradient(45deg, rgba(19,35,38,.08) 0 5px, transparent 5px 10px); border: 1px solid rgba(19,35,38,.12); }
.ballot-person div { display: grid; gap: 3px; }
.ballot-person b { font-size: 14px; }
.ballot-person small { color: rgba(19,35,38,.52); font-size: 7px; letter-spacing: .12em; font-weight: 800; }
.rank-bubble { width: 34px; height: 34px; justify-self: center; border-radius: 50%; border: 1px solid rgba(19,35,38,.35); display: grid; place-items: center; color: rgba(19,35,38,.52); background: transparent; position: relative; }
button.rank-bubble { cursor: pointer; }
.rank-bubble > span { font-size: 9px; font-weight: 800; }
.rank-one { border: 2px solid #147f82; color: #147f82; background: rgba(93,232,227,.08); transition: transform .25s; }
.rank-one b { display: none; position: absolute; font-size: 17px; }
.ballot-wrap.voted .rank-one { background: #147f82; color: white; transform: scale(1.08); }
.ballot-wrap.voted .rank-one span { display: none; }
.ballot-wrap.voted .rank-one b { display: block; }
.muted-row { opacity: .52; }
.ballot-stamp { position: absolute; z-index: 8; right: 23px; top: 54%; width: 180px; height: 80px; border: 3px solid rgba(183,74,43,.72); color: rgba(183,74,43,.78); display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr 1fr; column-gap: 8px; align-items: center; padding: 9px 13px; transform: rotate(-8deg) scale(1.45); opacity: 0; pointer-events: none; transition: opacity .18s, transform .48s var(--ease); }
.ballot-stamp span { grid-row: 1 / 3; font-size: 28px; font-weight: 900; }
.ballot-stamp b { align-self: end; font-size: 16px; letter-spacing: .03em; }
.ballot-stamp small { align-self: start; font-size: 8px; letter-spacing: .14em; font-weight: 850; }
.ballot-wrap.voted .ballot-stamp { opacity: .88; transform: rotate(-8deg) scale(1); }
.vote-button { position: relative; z-index: 3; width: 100%; min-height: 52px; margin-top: 17px; border: 0; background: #113b3d; color: white; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 17px; cursor: pointer; font-size: 11px; letter-spacing: .09em; font-weight: 850; transition: .25s; }
.vote-button b { color: var(--cyan); font-size: 16px; }
.vote-button:hover { background: #0c4e51; }
.ballot-wrap.voted .vote-button { background: #147f82; }
.vote-footer { position: absolute; left: var(--pad); right: var(--pad); bottom: 21px; display: flex; justify-content: space-between; gap: 15px; color: rgba(255,255,255,.29); font-size: 7px; font-weight: 750; letter-spacing: .17em; }

.rail { position: fixed; z-index: 35; left: 28px; top: 50%; transform: translateY(-50%); display: grid; gap: 7px; }
.rail-dot { width: 36px; height: 26px; border: 0; padding: 0; background: transparent; color: rgba(255,255,255,.22); cursor: pointer; position: relative; }
.rail-dot::before { content: ""; position: absolute; left: 0; top: 50%; width: 8px; height: 1px; background: currentColor; transition: .25s; }
.rail-dot span { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); font: 800 7px/1 ui-monospace, SFMono-Regular, Menlo, monospace; opacity: 0; transition: .25s; }
.rail-dot.active { color: var(--cyan); }
.rail-dot.active::before { width: 21px; box-shadow: 0 0 9px rgba(93,232,227,.35); }
.rail-dot:hover span { opacity: 1; }
.next-button { position: fixed; z-index: 35; right: 27px; bottom: 24px; width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(255,255,255,.17); background: rgba(7,17,20,.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); cursor: pointer; display: grid; place-content: center; gap: 1px; transition: .3s var(--ease); overflow: hidden; }
.next-button::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--cyan); transform: translateY(102%); transition: .3s var(--ease); }
.next-button span, .next-button small { position: relative; z-index: 2; }
.next-button span { font-size: 20px; line-height: .8; }
.next-button small { font-size: 6px; letter-spacing: .13em; color: rgba(255,255,255,.36); }
.next-button:hover { color: var(--ink); border-color: var(--cyan); transform: scale(1.06); }
.next-button:hover::before { transform: none; }
.next-button:hover small { color: rgba(7,17,20,.55); }
.transition-wipe { position: fixed; z-index: 75; top: 0; bottom: 0; left: -16vw; width: 14vw; background: linear-gradient(90deg, transparent, rgba(93,232,227,.15), transparent); transform: skewX(-10deg); pointer-events: none; opacity: 0; }
body.is-transitioning .transition-wipe { animation: wipe .72s var(--ease); }
@keyframes wipe { 0% { left: -18vw; opacity: 0; } 20% { opacity: .72; } 100% { left: 108vw; opacity: 0; } }

@media (max-width: 1120px) {
  :root { --pad: 68px; }
  .hero { grid-template-columns: 1fr .85fr; gap: 2vw; }
  .hero h1 { font-size: clamp(74px, 10vw, 120px); }
  .hero-visual { min-height: 470px; }
  .record-layout { grid-template-columns: 1fr .9fr; }
  .priority-card { min-height: 340px; }
  .leadership { gap: 3vw; }
  .command-board { min-height: 460px; }
  .vote { grid-template-columns: .88fr 1.12fr; gap: 3vw; }
}

@media (max-width: 900px) {
  :root { --pad: 20px; --mobile-top: calc(76px + env(safe-area-inset-top, 0px)); --mobile-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  html, body { min-height: 100%; min-height: -webkit-fill-available; }
  body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  .viewport, .track, .slide { height: var(--app-height, 100dvh); }
  .topbar { min-height: var(--mobile-top); padding: calc(13px + env(safe-area-inset-top, 0px)) 15px 17px; align-items: flex-start; background: linear-gradient(180deg, rgba(7,17,20,.96), rgba(7,17,20,.73) 62%, transparent); }
  .brand-copy b { font-size: 10px; }
  .brand-head { width: 34px; height: 34px; }
  .status-chip, .slide-count { display: none; }
  .topbar-right { gap: 0; }
  .menu-button { min-width: 70px; height: 38px; }
  .menu { width: 100%; padding: calc(18px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px)); }
  .menu nav button { padding: 15px 0; font-size: clamp(32px, 11vw, 52px); }
  .menu-foot { align-items: start; flex-direction: column; }
  .slide { padding: var(--mobile-top) var(--pad) var(--mobile-bottom); overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; touch-action: pan-y; }
  .slide::-webkit-scrollbar { display: none; }
  .rail { display: none; }
  .next-button { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); width: 52px; height: 52px; }
  .next-button small { display: none; }
  .swipe-cue { left: var(--pad); bottom: calc(25px + env(safe-area-inset-bottom, 0px)); }
  .section-kicker { font-size: 8px; }

  .hero { display: flex; flex-direction: column; justify-content: center; min-height: 100%; gap: 10px; }
  .hero-copy { width: 100%; margin: auto 0; }
  .eyebrow { font-size: 8px; gap: 8px; }
  .eyebrow i { width: 24px; }
  .hero h1 { margin: 16px 0 18px; font-size: clamp(59px, 18.8vw, 83px); line-height: .75; }
  .hero-lead { max-width: 560px; font-size: 14px; line-height: 1.55; }
  .hero-actions { display: grid; width: min(100%, 420px); gap: 9px; margin-top: 23px; }
  .cta, .ghost { width: 100%; min-height: 49px; }
  .hero-proof { gap: 0; margin-top: 24px; overflow: hidden; }
  .hero-proof span { min-width: 0; flex: 1; margin-right: 10px; padding-right: 10px; }
  .hero-proof small { font-size: 6px; letter-spacing: .08em; }
  .hero-visual { position: absolute; z-index: -1; right: -18%; bottom: 7%; width: 66%; height: 58%; min-height: 0; opacity: .19; pointer-events: none; }
  .visual-frame { inset: 0; }
  .player-body { width: 100%; max-height: 100%; }
  .player-card, .coordinate-card, .hero-stamp, .visual-crosshair { display: none; }
  .player-halo { width: 76%; }

  .record, .priorities { display: block; padding-top: calc(var(--mobile-top) + 10px); }
  .section-head h2, .priority-head h2 { font-size: clamp(43px, 12.7vw, 61px); line-height: .89; margin: 10px 0 14px; }
  .section-head p, .priority-head p { font-size: 13px; line-height: 1.5; }
  .record-layout { display: grid; grid-template-columns: 1fr; margin-top: 25px; gap: 10px; padding-bottom: 16px; }
  .record-main { padding: 15px; min-height: 300px; }
  .record-topline { font-size: 6px; }
  .record-identity { margin: 20px 0 18px; gap: 13px; }
  .record-identity img { width: 78px; height: 78px; }
  .record-identity h3 { font-size: 34px; }
  .record-facts { gap: 8px; }
  .record-facts small { font-size: 6px; }
  .record-facts b { font-size: 7.5px; }
  .source-link { position: static; display: inline-block; margin-top: 20px; }
  .signal-card { grid-template-columns: 44px 1fr; padding: 14px; }
  .signal-number { font-size: 21px; }

  .priority-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; padding-bottom: 12px; }
  .priority-card { min-height: 0; padding: 17px 17px 20px; display: grid; grid-template-columns: 58px 1fr; column-gap: 14px; align-items: start; }
  .priority-number { grid-column: 1 / 3; }
  .priority-icon { grid-column: 1; grid-row: 2 / 6; width: 58px; height: 58px; margin: 18px 0 0; }
  .priority-icon svg { width: 36px; height: 36px; }
  .priority-card small { grid-column: 2; margin-top: 17px; font-size: 7px; }
  .priority-card h3 { grid-column: 2; margin: 5px 0 7px; font-size: 23px; }
  .priority-card p { grid-column: 2; font-size: 10px; line-height: 1.48; }
  .priority-meter { left: 89px; right: 17px; bottom: 14px; }

  .leadership { display: flex; flex-direction: column; justify-content: center; gap: 20px; min-height: 100%; }
  .leadership-copy { order: 1; width: 100%; }
  .leadership-copy h2 { margin: 10px 0 14px; font-size: clamp(50px, 15vw, 70px); line-height: .8; }
  .leadership-copy > p { font-size: 13px; line-height: 1.5; }
  .principles { gap: 7px; margin-top: 20px; }
  .principles b { font-size: 11px; }
  .principles p { display: none; }
  .leadership-cta { margin-top: 20px; width: min(100%, 380px); }
  .command-board { order: 2; width: 100%; min-height: 260px; height: 31vh; max-height: 330px; opacity: .78; }
  .command-node { width: 108px; height: 61px; padding: 9px 10px; }
  .command-node b { font-size: 12px; }
  .node-a { left: 5%; top: 17%; }
  .node-b { left: 36%; top: 42%; }
  .node-c { right: 4%; bottom: 12%; }
  .command-readout { display: none; }

  .vote { display: flex; flex-direction: column; justify-content: flex-start; gap: 22px; padding-top: calc(var(--mobile-top) + 8px); }
  .vote-copy { width: 100%; }
  .vote-tag { margin-top: 11px; }
  .vote h2 { margin: 13px 0 13px; font-size: clamp(47px, 14.5vw, 69px); line-height: .8; }
  .vote-copy > p { font-size: 13px; line-height: 1.5; }
  .vote-signature { margin-top: 18px; }
  .ballot-wrap { width: 100%; min-width: 0; padding: 17px 14px 15px; transform: none; margin-bottom: 26px; }
  .ballot-top { font-size: 6px; }
  .ballot-instruction { padding: 11px 0; }
  .ballot-instruction b { font-size: 11px; }
  .ballot-head-row, .ballot-row { grid-template-columns: minmax(0, 1fr) repeat(3, 34px); gap: 5px; }
  .ballot-head-row { padding: 7px 4px; }
  .ballot-row { min-height: 64px; padding: 8px 4px; }
  .ballot-person { gap: 8px; min-width: 0; }
  .ballot-person img, .blank-head { flex-basis: 36px; width: 36px; height: 36px; }
  .ballot-person b { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ballot-person small { font-size: 6px; }
  .rank-bubble { width: 29px; height: 29px; }
  .ballot-stamp { right: 15px; top: 54%; width: 145px; height: 67px; }
  .ballot-stamp b { font-size: 13px; }
  .vote-button { min-height: 48px; font-size: 9px; }
  .vote-footer { display: none; }
}

@media (max-width: 430px) {
  .brand-copy { max-width: 160px; }
  .hero h1 { font-size: clamp(54px, 18.2vw, 75px); }
  .hero-proof span:nth-child(3) { display: none; }
  .hero-proof span:nth-child(2) { border-right: 0; }
  .record-topline b { display: none; }
  .record-facts { grid-template-columns: 1fr 1fr; }
  .record-facts div:nth-child(3) { display: none; }
  .priority-card h3 { font-size: 21px; }
  .principles { grid-template-columns: 1fr; }
  .principles div { display: flex; align-items: center; gap: 8px; padding-top: 7px; }
  .principles b { margin: 0; }
  .command-board { min-height: 235px; }
  .vote-signature { display: none; }
}

@media (max-height: 720px) and (min-width: 901px) {
  .slide { padding-top: 76px; padding-bottom: 44px; }
  .hero-visual { height: 69vh; min-height: 440px; }
  .hero h1 { font-size: clamp(70px, 8vw, 118px); }
  .hero-proof { margin-top: 22px; }
  .record-layout { margin-top: 22px; min-height: 300px; }
  .priority-grid { margin-top: 24px; }
  .priority-card { min-height: 315px; }
  .command-board { min-height: 420px; height: 62vh; }
  .vote h2 { font-size: clamp(60px, 6.6vw, 100px); }
  .ballot-wrap { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .track, .reveal-block, .reveal-card { transition-duration: .001ms !important; }
}
