/* ============================================================
   LEGENDIA GAMES — house of brands
   Ink monochrome holding frame · per-brand color breakthrough
   Display: Chakra Petch · Body: Schibsted Grotesk · Data: IBM Plex Mono
   ============================================================ */

@font-face {
  font-family: 'Chakra Petch';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/ChakraPetch-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/ChakraPetch-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('fonts/ChakraPetch-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal; font-weight: 300 900; font-display: swap;
  src: url('fonts/SchibstedGrotesk-var.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/IBMPlexMono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/IBMPlexMono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/IBMPlexMono-600.woff2') format('woff2');
}

/* ---------- tokens ---------- */
:root {
  --ink: #0a0b10;          /* page */
  --ink-2: #0e1017;        /* raised panel */
  --ink-3: #12141d;        /* cards */
  --paper: #f4f5f7;        /* primary text */
  --steel: #9aa0af;        /* secondary text */
  --line: rgba(244, 245, 247, 0.09);
  --gold: #e2c685;         /* holding accent — used sparingly */

  --venom: #3be372;        /* Viper Royale */
  --luxe-1: #a855f7;       /* Luxeya */
  --luxe-2: #ff5ea8;
  --sol-1: #9945ff;        /* Solana lottery */
  --sol-2: #14f195;
  --slot-1: #ffb01f;       /* Slots */
  --slot-2: #ff3d5a;

  --display: 'Chakra Petch', 'Arial Narrow', sans-serif;
  --body: 'Schibsted Grotesk', 'Helvetica Neue', sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', monospace;

  --cut: 16px;             /* facet cut size, echoes the logomark */
  --gutter: clamp(20px, 5vw, 72px);
  --measure: 62ch;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* height:auto lets the width/height attrs act as an aspect-ratio hint (reserving
   space against CLS) instead of being applied as a literal, stretching height. */
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; }

::selection { background: var(--gold); color: var(--ink); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* faint structural grid over the whole page */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 160px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 160px 100%;
  opacity: 0.22;
  z-index: 0;
}

/* ---------- shared atoms ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding-inline: var(--gutter); position: relative; }

.cut {
  clip-path: polygon(
    0 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% 100%,
    var(--cut) 100%,
    0 calc(100% - var(--cut))
  );
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.h-display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.02;
}

.lede { color: var(--steel); max-width: var(--measure); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  --cut: 12px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--paper); }
.btn--ghost:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn .arr { font-family: var(--body); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(10, 11, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--steel);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--paper); }
.nav .btn { padding: 11px 20px; font-size: 11px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  isolation: isolate;
  overflow: hidden;
}
/* giant faceted mark, clipped on the right */
.hero-mark {
  position: absolute;
  z-index: -1;
  right: -6vw;
  top: 50%;
  transform: translateY(-56%);
  width: clamp(340px, 46vw, 780px);
  opacity: 0.1;
  filter: drop-shadow(0 0 90px rgba(226, 198, 133, 0.18));
  pointer-events: none;
}
/* facet scanlines echoing the mark's diagonal */
.hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  background: repeating-linear-gradient(
    118deg,
    transparent 0 90px,
    rgba(244, 245, 247, 0.025) 90px 91px
  );
  -webkit-mask-image: linear-gradient(100deg, transparent 30%, #000 75%);
          mask-image: linear-gradient(100deg, transparent 30%, #000 75%);
}
.hero::after {
  content: '';
  position: absolute;
  z-index: -3;
  inset: 0;
  background: radial-gradient(900px 520px at 78% 42%, rgba(226, 198, 133, 0.07), transparent 65%);
}
.hero-body { padding-bottom: clamp(48px, 8vh, 110px); }
.hero-title {
  font-size: clamp(46px, 8.6vw, 128px);
  margin: 26px 0 30px;
}
.hero-title .row { display: block; }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}
.hero-title .dot { color: var(--gold); }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }

/* signature: odds-board ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(14, 16, 23, 0.6);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-set span {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 16px 0;
  white-space: nowrap;
}
.ticker-set span strong { color: var(--paper); font-weight: 600; }
.ticker-set i {
  font-style: normal;
  color: var(--gold);
  padding: 0 28px;
  font-size: 10px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- operator umbrella band ---------- */
.op-band {
  position: relative;
  padding: clamp(72px, 10vh, 130px) 0 clamp(76px, 11vh, 140px);
  overflow: hidden;
}
.op-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 400px at 50% -12%, rgba(226, 198, 133, 0.08), transparent 70%);
  pointer-events: none;
}
.op-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vh, 64px);
}
.op-head .eyebrow { justify-content: center; }
.op-head .eyebrow::before { display: none; }
.op-head .h-display { font-size: clamp(34px, 4.8vw, 62px); margin-top: 20px; }
.op-head .h-display em { font-style: normal; color: var(--gold); }
.op-head .lede { margin: 18px auto 0; }

.op-tree { display: flex; flex-direction: column; align-items: center; }
.op-root {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px 14px 18px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  background: var(--ink-2);
  --cut: 12px;
  box-shadow: 0 24px 60px -28px rgba(226, 198, 133, 0.5);
}
.op-root img { height: 34px; width: auto; }
.op-root b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.op-root span {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.op-stem {
  width: 1px;
  height: 30px;
  background: linear-gradient(rgba(226, 198, 133, 0.65), rgba(226, 198, 133, 0.3));
}
.op-nodes {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 26px 0 0;
  margin: 0;
  list-style: none;
}
/* branch line spanning from first to last node center */
.op-nodes::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc((100% - 42px) / 8);
  right: calc((100% - 42px) / 8);
  height: 1px;
  background: rgba(226, 198, 133, 0.35);
}
.op-nodes li { position: relative; }
/* drop line from branch to each node */
.op-nodes li::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 50%;
  width: 1px;
  height: 26px;
  background: rgba(226, 198, 133, 0.35);
}
.op-nodes a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid color-mix(in srgb, var(--n) 38%, var(--line));
  background: var(--ink-2);
  text-decoration: none;
  --cut: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.op-nodes a:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--n) 75%, transparent);
}
.op-nodes .role {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--n) 85%, var(--paper));
}
.op-nodes b {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 19px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.12;
  margin-top: 6px;
}
.op-nodes .st {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.op-nodes .st i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
}
.op-nodes a.is-live .st { color: var(--paper); }
.op-nodes a.is-live .st i { background: var(--venom); box-shadow: 0 0 9px var(--venom); }

/* ---------- sections ---------- */
.section { padding: clamp(84px, 12vh, 150px) 0; position: relative; }

.section-head { margin-bottom: clamp(40px, 6vh, 72px); }
.section-head .h-display { font-size: clamp(32px, 4.6vw, 58px); margin-top: 22px; }
.section-head .lede { margin-top: 20px; }

/* ---------- holding ---------- */
.holding { border-top: 1px solid var(--line); }
.holding-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}
.holding-sticky { position: sticky; top: 120px; }
.holding-sticky .h-display { font-size: clamp(34px, 4.2vw, 56px); margin-top: 22px; }
.holding-copy p { color: var(--steel); font-size: clamp(16px, 1.5vw, 18.5px); }
.holding-copy p + p { margin-top: 1.2em; }
.holding-copy p strong { color: var(--paper); font-weight: 600; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}
.fact {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 24px 22px 26px;
  --cut: 12px;
}
.fact h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.fact p { font-size: 14px; color: var(--steel); line-height: 1.55; }
.fact .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ---------- portfolio brands ---------- */
.portfolio { border-top: 1px solid var(--line); }

.brand {
  --b1: var(--paper);
  --b2: var(--paper);
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(64px, 9vh, 120px) 0;
  isolation: isolate;
}
.brand::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(720px 480px at var(--glow-x, 82%) 30%, var(--b1), transparent 70%);
  opacity: 0.07;
}
.brand.alt { --glow-x: 18%; }

.brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.brand.alt .brand-grid > .brand-info { order: 2; }
.brand.alt .brand-grid > .brand-media { order: 1; }

.brand-idx {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--b1) 80%, var(--paper));
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-idx::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--b1);
}
.brand-name {
  font-size: clamp(38px, 5.2vw, 72px);
  margin: 20px 0 6px;
}
.brand-name .thin { font-weight: 500; opacity: 0.6; }
.brand-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}
.brand-roles li {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--b1) 45%, transparent);
  color: color-mix(in srgb, var(--b1) 85%, var(--paper));
  --cut: 8px;
}
.brand-copy { color: var(--steel); max-width: 56ch; }
.brand-copy strong { color: var(--paper); font-weight: 600; }
.brand-copy p + p { margin-top: 1em; }

.brand-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0;
  margin: 32px 0 6px;
  border: 1px solid var(--line);
  background: rgba(14, 16, 23, 0.55);
  --cut: 12px;
}
.brand-stats .stat {
  padding: 18px 18px 16px;
  border-right: 1px solid var(--line);
}
.brand-stats .stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
  color: var(--paper);
}
.stat small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.stat b .up { color: var(--b1); }

.brand-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--b1);
  padding: 14px 22px;
  border: 1px solid color-mix(in srgb, var(--b1) 55%, transparent);
  --cut: 10px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.brand-link:hover { background: var(--b1); color: var(--ink); transform: translateY(-2px); }
.brand-soon {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px dashed color-mix(in srgb, var(--b1) 40%, transparent);
  padding: 14px 22px;
  --cut: 10px;
}

/* media panels */
.brand-media { position: relative; }
.media-frame {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--b1) 30%, var(--line));
  background: var(--ink-2);
  box-shadow: 0 30px 80px -30px color-mix(in srgb, var(--b1) 35%, transparent);
}
.media-frame > video, .media-frame > img { width: 100%; height: 100%; object-fit: cover; }
.media-label {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--b1);
  padding: 6px 10px;
}

/* viper: video + floating phone */
.vr-video { aspect-ratio: 16 / 10; }
.vr-video .media-label { top: auto; bottom: 14px; }
.vr-phone {
  position: absolute;
  right: -14px;
  bottom: -34px;
  width: clamp(150px, 15vw, 210px);
  border: 1px solid color-mix(in srgb, var(--b1) 40%, var(--line));
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.8);
  --cut: 12px;
}
.vr-logo-float {
  position: absolute;
  left: -18px;
  top: -40px;
  width: clamp(110px, 11vw, 168px);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
  z-index: 3;
}

.lux-name-mark {
  height: 0.94em;
  width: auto;
  display: inline-block;
  vertical-align: -0.05em;
  margin-right: 0.16em;
  filter:
    drop-shadow(0 0 14px rgba(168, 85, 247, 0.5))
    drop-shadow(0 0 34px rgba(255, 94, 168, 0.28));
}

/* shared: app phone in a device bezel, accent from the brand color */
.app-phone {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%) rotate(2.5deg);
  width: min(38%, 210px);
  border-radius: 30px;
  padding: 8px;
  background: #0c0e15;
  border: 1px solid color-mix(in srgb, var(--b1) 45%, var(--line));
  box-shadow: 0 40px 90px -25px color-mix(in srgb, var(--b1) 50%, transparent);
  z-index: 3;
}
.app-phone img { width: 100%; border-radius: 22px; }

/* luxeya: app hero + game status chips */
.lux-stage {
  position: relative;
  aspect-ratio: 16 / 13;
  background:
    radial-gradient(440px 320px at 22% 16%, rgba(168, 85, 247, 0.18), transparent 65%),
    radial-gradient(460px 340px at 82% 88%, rgba(255, 94, 168, 0.13), transparent 65%),
    var(--ink-2);
  overflow: hidden;
}
.lux-chips {
  position: absolute;
  left: clamp(16px, 4%, 30px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lux-chips .lbl {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--b1) 80%, var(--paper));
  margin: 10px 0 3px;
}
.lux-chips .lbl:first-child { margin-top: 0; }
.lux-chips li:not(.lbl) {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 6px 11px;
  border: 1px solid var(--line);
  background: rgba(12, 14, 21, 0.72);
  --cut: 8px;
}
.lux-chips li:not(.lbl)::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--steel);
}
.lux-chips li.on { color: var(--paper); border-color: color-mix(in srgb, var(--b1) 45%, transparent); }
.lux-chips li.on::before { background: var(--sol-2); box-shadow: 0 0 9px var(--sol-2); }

/* solana: on-chain ticket artifact */
.sol-stage {
  aspect-ratio: 16 / 12;
  display: grid;
  place-items: center;
  background:
    radial-gradient(420px 300px at 30% 20%, rgba(153, 69, 255, 0.16), transparent 65%),
    radial-gradient(420px 300px at 75% 85%, rgba(20, 241, 149, 0.12), transparent 65%),
    var(--ink-2);
  overflow: hidden;
}
.sol-ticket {
  position: relative;
  width: min(78%, 420px);
  padding: 26px 28px 22px;
  background: linear-gradient(120deg, rgba(153, 69, 255, 0.22), rgba(20, 241, 149, 0.14));
  border: 1px solid color-mix(in srgb, var(--sol-1) 55%, transparent);
  transform: rotate(-4deg);
  --cut: 14px;
  box-shadow: 0 40px 90px -30px rgba(153, 69, 255, 0.45);
}
.sol-ticket::after {           /* perforation */
  content: '';
  position: absolute;
  top: 8%; bottom: 8%;
  right: 64px;
  width: 1px;
  background: repeating-linear-gradient(var(--paper) 0 5px, transparent 5px 11px);
  opacity: 0.4;
}
.sol-ticket .t-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sol-2);
  margin-bottom: 12px;
}
.sol-ticket .t-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 25px);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 78%;
}
.sol-ticket .t-bar {           /* barcode */
  margin-top: 20px;
  height: 30px;
  width: 55%;
  background: repeating-linear-gradient(90deg, var(--paper) 0 2px, transparent 2px 5px, var(--paper) 5px 6px, transparent 6px 10px);
  opacity: 0.75;
}
.sol-ticket .t-chain {
  position: absolute;
  right: 18px; top: 26px; bottom: 22px;
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
}

/* slots: two cabinets */
.slot-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cab {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  --cut: 14px;
}
.cab .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cab:has(.bg)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 11, 16, 0.88));
}
.cab .genre, .cab h4, .cab .art {
  position: relative;
  z-index: 2;
}
.cab:has(.bg) .genre, .cab:has(.bg) h4 { z-index: 3; }
.cab .genre {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.8;
  margin-bottom: 8px;
}
.cab h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.04;
  text-transform: uppercase;
}
.cab .art {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px dashed rgba(244, 245, 247, 0.4);
  padding: 5px 8px;
  background: rgba(10, 11, 16, 0.45);
}
.cab.fruits {
  background:
    radial-gradient(190px 190px at 78% 18%, rgba(255, 176, 31, 0.5), transparent 70%),
    radial-gradient(230px 230px at 12% 55%, rgba(255, 61, 90, 0.42), transparent 70%),
    radial-gradient(170px 170px at 66% 88%, rgba(59, 227, 114, 0.3), transparent 70%),
    var(--ink-2);
}
.cab.horror {
  background:
    radial-gradient(260px 200px at 50% 0%, rgba(255, 61, 90, 0.32), transparent 70%),
    radial-gradient(300px 240px at 85% 90%, rgba(90, 8, 30, 0.75), transparent 75%),
    var(--ink-2);
}
.cab.horror h4 { color: #ff8296; text-shadow: 0 0 26px rgba(255, 61, 90, 0.55); }
.cab .reel {                       /* faint reel strips */
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 calc(33.33% - 1px), rgba(244, 245, 247, 0.09) calc(33.33% - 1px) 33.33%);
  pointer-events: none;
}

/* ---------- vision band ---------- */
.vision {
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 420px at 50% 110%, rgba(226, 198, 133, 0.08), transparent 70%);
}
.vision .eyebrow { justify-content: center; }
.vision .eyebrow::before { display: none; }
.vision-line {
  font-size: clamp(34px, 5.4vw, 74px);
  margin: 26px auto 24px;
  max-width: 18ch;
}
.vision-line em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.vision .lede { margin: 0 auto; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(56px, 8vh, 96px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-bottom: 64px;
}
.footer-logo img { height: 54px; width: auto; }
.footer-pitch { margin-top: 26px; color: var(--steel); max-width: 44ch; }
.invest-note {
  margin-top: 26px;
  max-width: 52ch;
  padding: 20px 22px 18px;
  border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
  background: rgba(226, 198, 133, 0.05);
  --cut: 12px;
}
.invest-note .tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.invest-note p { font-size: 14px; color: var(--steel); line-height: 1.6; }
.invest-note strong { color: var(--paper); font-weight: 600; }
.footer-cta { margin-top: 30px; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a {
  text-decoration: none;
  color: var(--steel);
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--paper); }
.footer-col .ext {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--steel);
  opacity: 0.7;
  margin-left: 6px;
}
.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--steel);
}
.footer-base .rg { display: flex; gap: 18px; }
.footer-base .badge18 {
  border: 1px solid var(--steel);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: inline-grid;
  place-items: center;
  font-size: 9px;
  font-weight: 600;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; width: auto; }
  .ticker-set[aria-hidden="true"] { display: none; }
  .ticker-set { flex-wrap: wrap; }
  .btn:hover, .brand-link:hover, .op-nodes a:hover { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .brand-grid, .holding-grid, .footer-grid { grid-template-columns: 1fr; }
  .brand.alt .brand-grid > .brand-info { order: 1; }
  .brand.alt .brand-grid > .brand-media { order: 2; }
  .holding-sticky { position: static; }
  .brand-media { margin-top: 8px; }
  .vr-phone { right: 6px; bottom: -26px; }
  .vr-logo-float { left: -6px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .fact-row { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-mark { right: -30vw; opacity: 0.07; }
  .op-stem { display: none; }
  .op-nodes { grid-template-columns: 1fr; gap: 10px; padding-top: 0; margin-top: 22px; }
  .op-nodes::before { left: 50%; right: auto; top: -22px; bottom: 54px; width: 1px; height: auto; }
  .op-nodes li::before { display: none; }
  .lux-stage { aspect-ratio: auto; padding: 22px 18px; }
  .lux-chips { position: static; transform: none; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 6px; }
  .lux-chips .lbl { width: 100%; margin: 10px 0 2px; }
  .app-phone { position: static; transform: rotate(0deg); margin: 20px auto 0; width: min(70%, 230px); }
  .slot-row { gap: 10px; }
  .cab { padding: 14px; }
  .brand-stats { grid-template-columns: 1fr 1fr; }
  .brand-stats .stat { border-bottom: 1px solid var(--line); }
}
