/* Palette matched to nx3commercialgroup.com (monochrome: black / white / cool greys) */
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-var.woff2") format("woff2");
  font-weight: 200 800; font-style: normal; font-display: swap;
}
:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --tint: #edeff7;        /* NX3 --accent-deep (cool light grey) */
  --tint-2: #d3d6e0;      /* NX3 --accent-muted */
  --ink: #000000;         /* NX3 --ink */
  --ink-2: #363636;       /* NX3 --ink-2 / --accent */
  --ink-3: #6e7180;       /* NX3 --ink-3 (large text / white bg only) */
  --muted: #555866;       /* ink-3 darkened for AA on tint */
  --line: rgba(0, 0, 0, .14);  /* NX3 --line #00000024 */
  --line-soft: rgba(0, 0, 0, .07);
  --f-a: #000000;         /* NX3 feature gradient stops */
  --f-b: #363636;
  --f-c: #1e1e24;
  --f-ink: #ffffff;
  --f-ink-2: #bcbfcc;
  --f-ink-3: #9da2b3;
  --f-frame: #40424d;
  --feature: linear-gradient(140deg, var(--f-a) 0%, var(--f-b) 55%, var(--f-c) 100%);
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: var(--sans);
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --wrap: 74rem;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 18px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 8px 24px -12px rgba(0, 0, 0, .18);
  --shadow-lg: 0 2px 4px rgba(0, 0, 0, .05), 0 24px 48px -20px rgba(0, 0, 0, .38);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 4.5rem; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 1.0625rem/1.7 var(--sans);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--ink); text-underline-offset: .2em; text-decoration-thickness: 1px; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 6px; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 20; }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- header (white on the black hero, black once scrolled) ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 10; color: #fff; transition: background .3s, box-shadow .3s, color .3s, backdrop-filter .3s; }
.site-header.scrolled {
  color: var(--ink);
  background: color-mix(in srgb, #fff 92%, transparent);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.wordmark { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; font-size: 1.0625rem; color: inherit; text-decoration: none; letter-spacing: -.02em; white-space: nowrap; }
.mark {
  display: inline-grid; place-items: center; width: 2rem; height: 2rem; border-radius: 9px;
  background: #fff; color: #000; font: 800 .78rem/1 var(--sans); letter-spacing: -.02em;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.12); transition: transform .4s var(--ease), background .3s, color .3s;
}
.scrolled .mark { background: #000; color: #fff; box-shadow: inset 0 -2px 0 rgba(255,255,255,.12); }
.wordmark:hover .mark { transform: rotate(-8deg) scale(1.06); }
.nav { list-style: none; display: flex; align-items: center; gap: clamp(.9rem, 2.4vw, 2rem); margin: 0; padding: 0; font-size: .9375rem; font-weight: 500; }
.nav a { position: relative; color: inherit; opacity: .82; text-decoration: none; padding: .25rem 0; transition: opacity .2s; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }
.nav .nav-cta { opacity: 1; color: #000; background: #fff; padding: .45rem 1rem; border-radius: 999px; font-weight: 700; transition: background .2s, color .2s, transform .2s; }
.nav .nav-cta:hover { background: var(--tint-2); transform: translateY(-1px); }
.scrolled .nav .nav-cta { background: #000; color: #fff; }
.scrolled .nav .nav-cta:hover { background: var(--ink-2); }
@media (max-width: 34rem) {
  .wordmark span:last-child { display: none; }
  .nav { gap: .9rem; font-size: .875rem; }
  .nav-hide-sm { display: none; }
}
@media (max-width: 22rem) { .nav li:nth-child(4) { display: none; } }
@media (max-width: 56rem) { .nav-hide-md { display: none; } }

/* ---------- type (NX3 feel: Manrope, tight tracking, light + bold contrast) ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -.035em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2.8rem, 7.4vw, 6rem); max-width: 12em; text-wrap: balance; font-weight: 300; letter-spacing: -.045em; }
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); text-wrap: balance; }
h3 { font-size: 1.25rem; letter-spacing: -.02em; line-height: 1.2; }
p { margin: 0; }
.eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: .7rem; }
.eyebrow::before { content: ""; width: 2.25rem; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--f-ink-2); }
.lede { font-size: clamp(1.125rem, 2.1vw, 1.275rem); line-height: 1.65; color: var(--ink-2); max-width: 40rem; }
.accent {
  display: inline-block; font-weight: 800; letter-spacing: -.045em; padding-right: .04em;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 35%, var(--tint-2) 65%, var(--f-ink-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- hero (black like NX3's hero) ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate; color: #fff;
  padding: clamp(7rem, 11vw, 8rem) 0 clamp(12rem, 18vw, 14rem);
  background:
    radial-gradient(46rem 28rem at 82% 30%, rgba(237, 239, 247, .14), transparent 62%),
    radial-gradient(40rem 26rem at 0% 0%, rgba(157, 162, 179, .10), transparent 60%),
    var(--feature);
}
.hero::before { /* fine grain, like NX3's surface texture */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1.2px); background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%); -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 { margin: 1.5rem 0 1.75rem; }
.hero .lede { color: var(--f-ink-2); }
.chip {
  display: inline-flex; align-items: center; gap: .6rem; font-size: .8125rem; font-weight: 600; color: #fff;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .22); padding: .42rem .9rem .42rem .75rem; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.chip-logo { height: 12px; width: auto; }
.chip-sep { width: 1px; height: 12px; background: rgba(255,255,255,.3); }
.dot { width: .5rem; height: .5rem; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255, 255, 255, .6); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 .5rem rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.sun { /* silver "moon" */
  position: absolute; width: clamp(14rem, 30vw, 26rem); aspect-ratio: 1; right: clamp(-4rem, 6vw, 10rem); bottom: clamp(6rem, 12vw, 9rem);
  border-radius: 50%; background: radial-gradient(circle at 38% 32%, #ffffff, var(--tint) 30%, var(--tint-2) 58%, var(--f-ink-3) 100%);
  box-shadow: 0 0 90px 10px rgba(237, 239, 247, .16);
  opacity: .42; animation: sunfloat 14s ease-in-out infinite alternate;
}
@keyframes sunfloat { to { transform: translateY(-14px) scale(1.03); } }
.skyline { position: absolute; left: 0; right: 0; bottom: 0; height: 15rem; }
.sun { translate: 0 var(--py, 0); }
@media (max-width: 30rem) { .hide-sm { display: none; } }
.sky-layer { position: absolute; left: 0; bottom: 0; animation: drift var(--dur, 120s) linear infinite; will-change: transform; }
.sky-layer svg { display: block; }
@keyframes drift { to { transform: translateX(calc(var(--tile) * -1)); } }
.skyline::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.25rem; background: #000; }

.hero-paths { display: grid; gap: .875rem; margin-top: 2.5rem; max-width: 42rem; }
@media (min-width: 36rem) { .hero-paths { grid-template-columns: 1fr 1fr; } }
.path {
  display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; border-radius: var(--radius);
  background: rgba(20, 20, 24, .62); border: 1px solid rgba(255, 255, 255, .18); text-decoration: none; color: #fff;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s, color .35s;
}
.path:hover { transform: translateY(-3px); background: #fff; color: #000; border-color: #fff; }
.path-icon { flex: none; display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 12px; background: rgba(255,255,255,.1); color: #fff; transition: background .35s, color .35s; }
.path:hover .path-icon { background: #000; color: #fff; }
.path-icon svg, .icon svg, .ctl svg { width: 1.4rem; height: 1.4rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.path-text { display: flex; flex-direction: column; flex: 1; }
.path-kicker { font-size: .8125rem; color: var(--f-ink-2); transition: color .35s; }
.path:hover .path-kicker { color: var(--muted); }
.path-title { font-weight: 700; font-size: 1.0625rem; letter-spacing: -.01em; }
.arr { width: 1.15rem; height: 1.15rem; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
a:hover > .arr, .btn:hover .arr { transform: translateX(4px); }

/* ---------- ticker (light break after the black hero) ---------- */
.ticker { background: var(--tint); color: var(--ink); overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.ticker-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 2rem; padding: 1rem 0 1rem 2rem; font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.ticker span::after { content: ""; width: .45rem; height: .45rem; background: #000; transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- bands ---------- */
.band { padding-block: clamp(4.5rem, 10vw, 8rem); position: relative; }
.band-cream, .band-paper { background: #fff; }
.band-sand { background: linear-gradient(180deg, var(--tint) 0%, #f6f7fb 100%); }
.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.75rem); max-width: 46rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .eyebrow::after { content: ""; width: 2.25rem; height: 1px; background: currentColor; }
.section-sub { color: var(--ink-2); margin-top: 1rem; font-size: 1.125rem; }

/* focus cards */
.focus-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 40rem) { .focus-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 68rem) { .focus-grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.9rem; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, #000, var(--f-ink-3)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,0,0,.28); }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin: 1.25rem 0 .6rem; }
.card p { color: var(--ink-2); font-size: 1rem; }
.icon { display: inline-grid; place-items: center; width: 3rem; height: 3rem; border-radius: 14px; background: var(--tint); color: #000; transition: transform .4s var(--ease), background .3s, color .3s; }
.icon-warm { background: #000; color: #fff; }
.card:hover .icon { transform: rotate(-6deg) scale(1.08); background: #000; color: #fff; }
.card:hover .icon-warm { background: var(--tint); color: #000; }

/* audiences: one NX3 "feature" (dark) card, one light card */
.audiences { display: grid; gap: 1.25rem; }
@media (min-width: 52rem) { .audiences { grid-template-columns: 1fr 1fr; } }
.audience {
  position: relative; overflow: hidden; border-radius: calc(var(--radius) + 6px); padding: clamp(1.75rem, 4vw, 3rem);
  display: flex; flex-direction: column; border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.audience:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audience-owner { background: var(--feature); color: #fff; border-color: transparent; }
.audience-investor { background: linear-gradient(160deg, #fff 0%, var(--tint) 100%); }
.audience::before { content: ""; position: absolute; width: 18rem; height: 18rem; right: -6rem; top: -6rem; border-radius: 50%; }
.audience-owner::before { background: radial-gradient(circle, rgba(237,239,247,.16), transparent 70%); }
.audience-investor::before { background: radial-gradient(circle, rgba(157,162,179,.28), transparent 70%); }
.audience-owner .eyebrow { color: var(--f-ink-2); }
.audience h2 { font-size: clamp(1.75rem, 3.4vw, 2.4rem); margin-bottom: 1rem; position: relative; }
.audience > p { color: var(--ink-2); position: relative; }
.audience-owner > p { color: var(--f-ink-2); }
.steps { list-style: none; padding: 0; margin: 1.75rem 0 2.25rem; display: grid; gap: .9rem; position: relative; }
.steps li { display: grid; grid-template-columns: 2rem 1fr; gap: .8rem; align-items: start; font-size: 1rem; }
.steps span { display: inline-grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: #000; color: #fff; font-size: .8125rem; font-weight: 700; }
.audience-owner .steps span { background: #fff; color: #000; }
.btn {
  position: relative; margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: .6rem;
  background: #000; color: #fff; text-decoration: none; font-weight: 700; font-size: .975rem; border: 1px solid #000;
  padding: .9rem 1.4rem; border-radius: 999px; box-shadow: 0 10px 22px -12px rgba(0, 0, 0, .7);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); background: var(--ink-2); border-color: var(--ink-2); box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .8); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-warm { background: #fff; color: #000; border-color: #fff; }
.btn-warm:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }

/* about */
.about { display: grid; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
@media (min-width: 52rem) { .about { grid-template-columns: 5fr 7fr; } }
.headshot { position: relative; margin: 0 0 0 .75rem; max-width: 25rem; }
.headshot::before { content: ""; position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem; border-radius: calc(var(--radius) + 6px); background: linear-gradient(160deg, var(--f-ink-2) 0%, var(--ink-3) 45%, var(--f-c) 100%); z-index: 0; transition: transform .5s var(--ease); }
.headshot::after { content: ""; position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem; border-radius: calc(var(--radius) + 6px); z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.2px); background-size: 14px 14px; transition: transform .5s var(--ease); }
.headshot:hover::before, .headshot:hover::after { transform: translate(6px, 6px); }
.headshot img { position: relative; z-index: 1; width: 100%; aspect-ratio: 6 / 7; object-fit: cover; border-radius: calc(var(--radius) + 6px); background: var(--tint); box-shadow: var(--shadow-lg); }
.about-copy h2 { margin-bottom: 1.25rem; }
.about-copy p + p { margin-top: 1rem; }
.about-copy > p:not(.eyebrow) { color: var(--ink-2); max-width: 38rem; }
.facts { margin: 2rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; max-width: 38rem; }
.facts div { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .85rem 1rem; transition: transform .3s var(--ease), border-color .3s; }
.facts div:hover { transform: translateY(-2px); border-color: #000; }
.facts dt { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.facts dd { margin: .2rem 0 0; font-size: .975rem; font-weight: 600; }
@media (max-width: 26rem) { .facts { grid-template-columns: 1fr; } }

/* ---------- game band ---------- */
.band-night {
  background:
    radial-gradient(50rem 24rem at 50% 0%, rgba(237, 239, 247, .10), transparent 60%),
    radial-gradient(40rem 30rem at 50% 100%, rgba(157, 162, 179, .10), transparent 60%),
    linear-gradient(180deg, #000 0%, #121216 100%);
  color: #fff; overflow: hidden;
}
.band-night::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1.2px);
  background-size: 28px 28px; mask-image: linear-gradient(180deg, #000, transparent 70%); -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.band-night .section-sub { color: var(--f-ink-2); }
.band-night h2 { color: #fff; }
.cabinet {
  position: relative; max-width: 46rem; margin-inline: auto; padding: 0 clamp(.6rem, 2vw, 1.1rem) clamp(.6rem, 2vw, 1rem);
  border-radius: 28px; background: linear-gradient(180deg, #2a2b33 0%, var(--f-c) 40%, #0c0c0f 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 40px 80px -30px rgba(0,0,0,.9), 0 0 90px -24px rgba(237,239,247,.22), inset 0 1px 0 rgba(255,255,255,.14);
}
.cabinet-marquee { display: grid; place-items: center; height: 3.25rem; }
.cabinet-marquee span {
  font: 800 .8rem/1 var(--sans); letter-spacing: .38em; text-transform: uppercase; color: #fff; padding-left: .38em;
  text-shadow: 0 0 12px rgba(237, 239, 247, .75), 0 0 2px rgba(255, 255, 255, .9); animation: flicker 6s infinite;
}
@keyframes flicker { 0%, 92%, 100% { opacity: 1; } 93% { opacity: .5; } 94% { opacity: 1; } 96% { opacity: .7; } }
.screen { position: relative; border-radius: 16px; overflow: hidden; background: #0a0a0c; box-shadow: inset 0 0 0 2px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08); }
#game-canvas { display: block; width: 100%; aspect-ratio: 4 / 3; touch-action: none; outline: none; cursor: crosshair; }
@media (max-width: 34rem) { #game-canvas { aspect-ratio: 4 / 5; } }
.screen:focus-within { box-shadow: inset 0 0 0 2px rgba(0,0,0,.6), 0 0 0 2px #fff; }
.overlay {
  position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .78), rgba(0, 0, 0, .93));
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.overlay.is-on { opacity: 1; visibility: visible; }
.ov-card { text-align: center; color: #fff; max-width: 26rem; width: 100%; transform: translateY(10px) scale(.98); transition: transform .45s var(--ease); }
.overlay.is-on .ov-card { transform: none; }
.ov-kicker { font-size: .75rem; color: var(--f-ink-2); letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.ov-title { font-size: clamp(2rem, 6vw, 2.75rem); color: #fff; margin: .4rem 0 1rem; }
.legend { list-style: none; padding: 0; margin: 0 auto 1.25rem; display: grid; gap: .45rem; text-align: left; font-size: .875rem; color: #e3e5ec; width: max-content; max-width: 100%; }
.legend li { display: flex; align-items: center; gap: .6rem; }
.lg { flex: none; display: inline-grid; place-items: center; width: 1.6rem; height: 1.3rem; border-radius: 5px; font: 800 .62rem/1 var(--sans); font-style: normal; color: #000; }
.lg-good { background: linear-gradient(180deg, #40424d 40%, #fff 40%); box-shadow: 0 0 0 1px rgba(255,255,255,.4); }
.lg-bad { background: repeating-linear-gradient(135deg, #40424d 0 3px, #2a2b33 3px 6px); color: #9da2b3; box-shadow: inset 0 0 0 1px #6e7180; }
.lg-1031 { background: #fff; border-radius: 50%; width: 1.4rem; height: 1.4rem; box-shadow: 0 0 8px rgba(255,255,255,.7); }
.lg-mag { background: var(--tint-2); border-radius: 50%; width: 1.4rem; height: 1.4rem; }
.lg-life { background: var(--f-ink-3); color: #000; border-radius: 50%; width: 1.4rem; height: 1.4rem; }
.play-btn {
  font: 800 1rem var(--sans); color: #000; background: linear-gradient(180deg, #fff, var(--tint)); border: 0; border-radius: 999px;
  padding: .85rem 2.1rem; cursor: pointer; box-shadow: 0 6px 0 var(--f-ink-3), 0 14px 30px -10px rgba(237,239,247,.5);
  transition: transform .12s, box-shadow .12s;
}
.play-btn:hover { transform: translateY(-1px); }
.play-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--f-ink-3), 0 8px 20px -10px rgba(237,239,247,.5); }
.ghost-btn { font: 600 .9375rem var(--sans); color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: .8rem 1.3rem; cursor: pointer; transition: background .2s, border-color .2s; }
.ghost-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.ov-best { margin-top: 1rem; font-size: .8125rem; color: var(--f-ink-2); }
.ov-best strong { color: #fff; }
.ov-score { font: 800 clamp(2.5rem, 9vw, 3.75rem)/1 var(--sans); color: #fff; margin-top: .6rem; letter-spacing: -.04em; text-shadow: 0 0 30px rgba(237, 239, 247, .35); }
.ov-score-label { font-size: .75rem; color: var(--f-ink-2); text-transform: uppercase; letter-spacing: .14em; margin-top: .35rem; }
.ov-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin: 1.25rem 0 1rem; }
.ov-stats div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: .55rem .3rem; }
.ov-stats dt { font-size: .66rem; color: var(--f-ink-2); text-transform: uppercase; letter-spacing: .06em; }
.ov-stats dd { margin: .15rem 0 0; font-weight: 700; font-size: 1.05rem; color: #fff; font-variant-numeric: tabular-nums; }
.share-line { font-size: .8125rem; color: #e3e5ec; background: rgba(255,255,255,.06); border-radius: 10px; padding: .55rem .75rem; margin-bottom: 1rem; }
.ov-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; align-items: center; }
@media (max-width: 26rem) {
  .ov-stats { grid-template-columns: repeat(2, 1fr); margin: .9rem 0 .75rem; }
  .ov-title { margin-bottom: .75rem; }
  .legend { font-size: .8125rem; gap: .35rem; margin-bottom: 1rem; }
  .share-line { display: none; }
}
.cabinet-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem .35rem .15rem; }
.game-help { color: var(--f-ink-2); font-size: .8125rem; line-height: 1.9; }
kbd { font: 600 .72rem var(--mono); border: 1px solid rgba(255,255,255,.22); border-bottom-width: 2px; border-radius: 5px; padding: .08rem .38rem; margin: 0 .08rem; background: rgba(255,255,255,.07); color: #fff; }
@media (hover: none) { .kb { display: none; } }
.ctl-btns { display: flex; gap: .5rem; }
.ctl { display: grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #e3e5ec; cursor: pointer; transition: background .2s, transform .2s, color .2s; }
.ctl:hover { background: rgba(255,255,255,.14); transform: translateY(-1px); }
.ctl .wave { display: none; }
.ctl[aria-pressed="true"] { color: #000; background: #fff; }
.ctl[aria-pressed="true"] .wave { display: block; }
.ctl[aria-pressed="true"] .mute { display: none; }
.game-note { text-align: center; color: var(--f-ink-3); font-size: .8125rem; margin-top: 1.5rem; }

/* ---------- contact (light, NX3 surface -> tint) ---------- */
.band-accent {
  background:
    radial-gradient(40rem 24rem at 100% 0%, rgba(157, 162, 179, .28), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--tint) 100%);
  color: var(--ink);
}
.contact-inner { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 56rem) { .contact-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact h2 { font-size: clamp(2.75rem, 8vw, 5rem); color: #000; margin-bottom: 1.25rem; letter-spacing: -.045em; }
.contact .lede { color: var(--ink-2); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.contact-list a {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.15rem; border-radius: var(--radius); text-decoration: none; color: #000;
  background: #fff; border: 1px solid var(--line);
  transition: background .3s, color .3s, transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.contact-list a:hover { background: #000; color: #fff; border-color: #000; transform: translateX(4px); box-shadow: var(--shadow-lg); }
.contact-list .icon { background: #000; color: #fff; flex: none; }
.contact-list a:hover .icon { background: #fff; color: #000; }
.contact-list a > span:nth-child(2) { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.contact-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; transition: color .3s; }
.contact-list a:hover .contact-label { color: var(--f-ink-2); }
.contact-value { font-size: clamp(1.0625rem, 2.4vw, 1.25rem); font-weight: 700; letter-spacing: -.01em; overflow-wrap: anywhere; }

/* ---------- footer ---------- */
.site-footer { background: #000; color: var(--f-ink-3); padding-block: 2.75rem 3.25rem; font-size: .8125rem; }
.footer-inner { display: grid; gap: .75rem; }
.site-footer p:first-child { color: var(--f-ink-2); }
.site-footer a { color: #fff; }
.disclosure { max-width: 62rem; line-height: 1.65; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

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

/* ---------- photos & logos ---------- */
.headshot picture { position: relative; z-index: 1; display: block; }
.headshot img { object-position: 50% 30%; }
.hero-portrait { display: none; }
@media (min-width: 64rem) {
  .hero-portrait {
    display: block; position: absolute; z-index: 1; margin: 0;
    right: var(--pr);
    bottom: 9.5rem; width: var(--pw); aspect-ratio: 4 / 5;
  }
  .hero-portrait::before {
    content: ""; position: absolute; inset: -.9rem; border-radius: 999px 999px 34px 34px;
    background: linear-gradient(160deg, rgba(255,255,255,.85), rgba(211,214,224,.45) 50%, rgba(64,66,77,.35));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
    z-index: -1;
  }
  .hero-portrait img {
    width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%;
    border-radius: 999px 999px 26px 26px; box-shadow: 0 30px 60px -24px rgba(0,0,0,.9);
  }
  .hero { --pr: max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad))); --pw: clamp(17rem, 24vw, 22rem); }
  .hero .sun { right: calc(var(--pr) - 3.5rem); bottom: calc(9.5rem + var(--pw) * 1.25 - 7rem); top: auto; width: clamp(10rem, 14vw, 13rem); opacity: .5; }
}
.fact-firm dd { margin-top: .45rem; }
.firm-logo { display: inline-block; line-height: 0; transition: opacity .2s; }
.firm-logo:hover { opacity: .7; }
.firm-logo img { height: 28px; width: auto; }
.footer-logo { display: inline-block; line-height: 0; margin-bottom: .5rem; opacity: .92; transition: opacity .2s; }
.footer-logo:hover { opacity: 1; }
.footer-logo img { height: 26px; width: auto; }

/* ---------- hero: third path (sell direct) ---------- */
@media (min-width: 36rem) { .path-direct { grid-column: 1 / -1; } }
.path-direct { background: rgba(255, 255, 255, .92); color: #000; border-color: #fff; }
.path-direct .path-kicker { color: var(--muted); }
.path-direct .path-icon { background: #000; color: #fff; }
.path-direct:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.path-direct:hover .path-kicker { color: var(--f-ink-2); }
.path-direct:hover .path-icon { background: #fff; color: #000; }

/* ---------- direct buyer section ---------- */
.band-buying { padding-top: 0; }
.buying {
  position: relative; overflow: hidden; isolation: isolate; display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(1.75rem, 5vw, 4rem); border-radius: calc(var(--radius) + 10px); background: var(--feature); color: #fff;
}
@media (min-width: 56rem) { .buying { grid-template-columns: 7fr 6fr; } }
.buying::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(28rem 20rem at 100% 0%, rgba(237,239,247,.16), transparent 65%),
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1.2px) 0 0 / 22px 22px;
}
.buying h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.25rem); margin-bottom: 1.1rem; font-weight: 800; letter-spacing: -.04em; }
.buying h2 .thin { font-weight: 300; display: block; }
.buying-copy > p:not(.eyebrow) { color: var(--f-ink-2); max-width: 34rem; }
.buying-perks { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.buying-perks li { font-size: .8125rem; font-weight: 600; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: .35rem .8rem; }
.buybox { background: #fff; color: #000; border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); }
.buybox h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.buybox-list { list-style: none; padding: 0; margin: 0; display: grid; }
.buybox-list li { display: grid; grid-template-columns: 1.5rem 1fr; gap: .75rem; align-items: start; padding: .7rem 0; border-top: 1px solid var(--line-soft); font-size: .975rem; color: var(--ink-2); }
.buybox-list li:first-child { border-top: 0; padding-top: 0; }
.buybox-list strong { color: #000; font-weight: 700; }
.tick { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: #000; position: relative; margin-top: .05rem; }
.tick::after { content: ""; position: absolute; left: .5rem; top: .33rem; width: .38rem; height: .66rem; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.ph { background: var(--tint); color: var(--ink-2); border: 1px dashed var(--ink-3); border-radius: 6px; padding: .05rem .4rem; font-size: .9em; font-weight: 600; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.buying-disclosure { margin-top: 1rem; font-size: .8125rem; line-height: 1.8; color: var(--muted); max-width: 62rem; }
.buying-disclosure .ph { font-weight: 500; font-style: italic; background: none; border: 0; border-left: 2px dashed var(--ink-3); border-radius: 0; padding: 0 0 0 .7rem; display: inline-block; }

/* ---------- NX3 firm note ---------- */
.firm-note { margin-top: 1rem; max-width: 38rem; font-size: .8125rem; color: var(--muted); }
.firm-note a { color: var(--ink); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: clamp(1.5rem, 4vw, 4rem); }
@media (min-width: 60rem) { .faq { grid-template-columns: 4fr 8fr; align-items: start; } .faq .section-head { position: sticky; top: 6rem; } }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
@media (min-width: 44rem) { .faq-list { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; } }
.faq-item { padding: 1.4rem 0 1.5rem; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.0625rem; margin-bottom: .5rem; display: flex; gap: .7rem; align-items: baseline; }
.faq-item h3::before { content: ""; flex: none; width: .5rem; height: .5rem; background: #000; transform: rotate(45deg) translateY(-2px); }
.faq-item p { color: var(--ink-2); font-size: .975rem; }

/* Press page */
.press-hero { padding-top: clamp(8rem, 14vw, 10rem); }
.press-hero h1 { color: #fff; }
.press-list { list-style: none; margin: 0; padding: 0; max-width: 52rem; grid-template-columns: 1fr !important; }
.press-list h3 a { color: var(--ink); text-decoration: none; }
.press-list h3 a:hover { text-decoration: underline; }
.press-meta { color: var(--ink-2); font-size: .9375rem; margin-top: .4rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
