/* =====================================================================
   JUICE — Brand System v2 ("Charged for what's next")
   From JUICE Brand Proposal 26/06/10
   Primary    #FFFF00  Electric Yellow
   Secondary  #FA2D92  Hot Pink
   Tertiary   #111111  Deep Black
   Additional #07AAF7  Cyan Blue
   Type: Neue Machina (display, self-host later) → Space Grotesk fallback
   Voice: Fresh & Fast · Genuine & Unexpected · Tech & Culture
   ===================================================================== */

:root {
  --yellow:      #FFFF00;
  --yellow-dim:  #E8E800;
  --pink:        #FA2D92;
  --pink-light:  #FB6DB5;
  --cyan:        #07AAF7;
  --ink:         #111111;
  --black:       #0B0B0B;
  --panel:       #181818;
  --panel-2:     #1F1F1F;
  --line:        #2B2B2B;
  --line-soft:   #1E1E1E;

  --text:        #FFFFFF;
  --text-2:      #D7D7D7;
  --muted:       #9A9A9A;
  --dim:         #8C8C8C;   /* WCAG AA on all panel backgrounds */

  --on-yellow:   #111111;

  --display: 'Space Grotesk', 'Neue Machina', sans-serif;
  --body: 'DM Sans', 'Space Grotesk', -apple-system, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --max-w: 1280px;
  --pad-x: clamp(20px, 4vw, 48px);

  --shadow-card: 0 20px 60px rgba(0,0,0,0.55);
  --glow-yellow: 0 10px 44px rgba(255,255,0,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--ink); color: var(--text); }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

/* ------- display type: the italic JUICE voice ------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.94;
}
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -0.02em; }

.shell { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav-bar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--yellow); flex-shrink: 0; }
.nav-logo .bolt { height: 30px; width: auto; }
.nav-logo .word { height: 30px; width: auto; }
.nav-logo:hover { color: #fff; transition: color .18s; }

.nav-links { display: flex; gap: 4px; margin: 0 auto; }
.nav-links a {
  font-family: var(--display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted);
  padding: 9px 14px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--yellow); }

.nav-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  place-items: center; color: var(--text);
}

/* mobile menu */
.nav-mobile {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--black);
  padding: 12px var(--pad-x) 20px;
}
.nav-mobile a {
  display: block; padding: 12px 4px;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 15px;
  color: var(--text-2); border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-open .nav-mobile { display: block; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.03em;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  transition: transform .15s, box-shadow .2s, background .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-yellow { background: var(--yellow); color: var(--on-yellow); box-shadow: var(--glow-yellow); }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 16px 56px rgba(255,255,0,0.4); }
.btn-black { background: var(--ink); color: var(--yellow); }
.btn-black:hover { transform: translateY(-2px); background: #000; }
.btn-line { border: 1px solid var(--line); color: var(--text-2); background: transparent; }
.btn-line:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(250,45,146,0.4); }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding: clamp(60px, 9vh, 110px) 0 56px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(255,255,0,0.07), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(250,45,146,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: 48px; align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 26px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,0,0.35);
  border-radius: var(--r-pill);
}
.hero-kicker .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,0,0.5); }
  50%     { box-shadow: 0 0 0 8px rgba(255,255,0,0); }
}
.hero h1 {
  font-size: clamp(46px, 7.4vw, 104px);
  font-weight: 700; font-style: italic;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.hero h1 .y { color: var(--yellow); }
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
}
.hero .lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero .lead b { color: var(--text); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* bolt visual */
.hero-bolt {
  position: relative;
  display: grid; place-items: center;
  min-height: 320px;
}
.hero-bolt .glow {
  position: absolute; width: 75%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,0,0.28), rgba(250,45,146,0.10) 60%, transparent);
  filter: blur(46px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: .6; transform: scale(.95); }
  to   { opacity: 1;  transform: scale(1.1); }
}
.hero-bolt svg.bolt-art, .hero-bolt img.bolt-art {
  position: relative; width: min(76%, 430px); height: auto;
  color: var(--yellow);
  filter: drop-shadow(0 24px 60px rgba(255,255,0,0.25));
  animation: boltFloat 7s ease-in-out infinite;
}
.hero-bolt img.bolt-art { width: min(94%, 520px); filter: none; }
@keyframes boltFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ---- charge-up cycle (7s loop, shared timeline) ----
   0–55%  juice rises, electric pulse runs the outline
   57–72% full charge: flash + flicker + shockwave ring
   72–90% holds bright
   90–100% drains, cycle restarts                       */
.bolt-charge .bolt-base {
  fill: rgba(255,255,0,0.04);
  stroke: rgba(255,255,0,0.45);
  stroke-width: 2.5;
}
.bolt-charge .mark-shadow { animation: shadowRise 7s linear infinite; }
@keyframes shadowRise {
  0%, 8%   { opacity: .12; }
  55%      { opacity: 1; }
  88%      { opacity: 1; }
  96%,100% { opacity: .12; }
}
.bolt-charge .juice-rise { animation: juiceRise 7s cubic-bezier(.25,.1,.25,1) infinite; }
@keyframes juiceRise {
  0%, 6%    { transform: translateY(400px); }
  55%, 100% { transform: translateY(-20px); }
}
.bolt-charge .juice-fade { animation: juiceFade 7s linear infinite; }
@keyframes juiceFade {
  0%, 88%  { opacity: 1; }
  96%,100% { opacity: 0; }
}
.bolt-charge .juice-wave { animation: waveX 1.4s linear infinite; }
@keyframes waveX {
  from { transform: translateX(0); }
  to   { transform: translateX(-96px); }
}
.bolt-charge .bolt-runner {
  stroke: #FFFFFF;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 5 45;   /* two pulses per subpath via pathLength=100 */
  animation: runnerDash 7s linear infinite;
}
@keyframes runnerDash {
  0%       { stroke-dashoffset: 0;    opacity: .9; }
  50%      { stroke-dashoffset: -150; opacity: .9; }
  57%      { stroke-dashoffset: -171; opacity: 0; }
  100%     { stroke-dashoffset: -171; opacity: 0; }
}
.bolt-charge .bolt-flash {
  fill: #FFFFC2;
  opacity: 0;
  animation: boltFlash 7s linear infinite;
}
@keyframes boltFlash {
  0%, 56% { opacity: 0; }
  58%     { opacity: 1; }    /* hit */
  61%     { opacity: .25; }  /* flicker */
  64%     { opacity: .85; }
  67%     { opacity: .4; }
  72%     { opacity: .6; }   /* settle bright-ish */
  88%     { opacity: .45; }
  96%,100%{ opacity: 0; }
}
.bolt-charge .charge-ring {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 3;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: ringPing 7s ease-out infinite;
}
@keyframes ringPing {
  0%, 56%  { opacity: 0; transform: scale(.55); }
  58%      { opacity: .9; transform: scale(.6); }
  76%      { opacity: 0; transform: scale(1.12); }
  100%     { opacity: 0; transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bolt svg.bolt-art, .hero-bolt .glow, .marquee-track,
  .bolt-charge .juice-rise, .bolt-charge .juice-fade, .bolt-charge .juice-wave,
  .bolt-charge .mark-shadow,
  .bolt-charge .bolt-runner, .bolt-charge .bolt-flash, .bolt-charge .charge-ring {
    animation: none !important;
  }
  /* static fallback: show the bolt fully charged */
  .bolt-charge .juice-rise { transform: translateY(-20px); }
  .bolt-charge .mark-shadow { opacity: 1; }
  .bolt-charge .bolt-runner { opacity: 0; }
}

/* hero stats */
.hero-stats {
  position: relative;
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero-stats .stat {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .n {
  font-family: var(--display);
  font-weight: 700; font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1; color: var(--yellow);
}
.hero-stats .stat:nth-child(2) .n { color: var(--pink); }
.hero-stats .stat:nth-child(3) .n { color: var(--cyan); }
.hero-stats .stat:nth-child(4) .n { color: #fff; }
.hero-stats .l {
  margin-top: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================================
   MARQUEE — yellow ticker band
   ===================================================================== */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(0deg);
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: clamp(15px, 1.7vw, 20px);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-right: 18px;
}
.marquee-track .sep { color: var(--ink); padding-right: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee.pink { background: var(--pink); color: var(--ink); }

/* =====================================================================
   SECTIONS
   ===================================================================== */
section.block { padding: clamp(64px, 9vw, 110px) 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.kicker::before { content: ''; width: 26px; height: 3px; background: var(--yellow); }
.kicker.pink { color: var(--pink); } .kicker.pink::before { background: var(--pink); }
.kicker.cyan { color: var(--cyan); } .kicker.cyan::before { background: var(--cyan); }

.section-h {
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.02em;
  max-width: 18ch;
}
.section-sub {
  margin-top: 18px;
  color: var(--text-2);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 640px; line-height: 1.65;
}
.section-head { margin-bottom: clamp(32px, 4vw, 52px); }
.section-head.split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}

/* =====================================================================
   GAME SHELF (This week)
   ===================================================================== */
.game-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.game-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 16px; align-items: center;
  padding: 12px 18px 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  transition: border-color .15s, transform .15s, background .15s;
}
.game-row:hover { border-color: var(--yellow); transform: translateX(4px); }
.game-row .tile {
  width: 60px; height: 80px; border-radius: 8px;
  background-size: cover; background-position: center;
  background-color: var(--panel-2);
}
.game-row .nm { font-family: var(--display); font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.game-row .sub { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-row .sub b { color: var(--text-2); }
.game-row .install {
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.04em;
  padding: 9px 16px; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--ink);
}
.game-row:hover .install { box-shadow: var(--glow-yellow); }

/* =====================================================================
   WHY JUICE — numbered cards
   ===================================================================== */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pillar {
  position: relative;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
  overflow: hidden;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.pillar .num {
  font-family: var(--display);
  font-weight: 700; font-style: italic;
  font-size: 44px; line-height: 1;
  color: var(--yellow);
  margin-bottom: 18px;
  transition: color .2s;
}
.pillar h3 {
  font-size: 21px; font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.pillar p { color: var(--text-2); font-size: 14.5px; line-height: 1.65; transition: color .2s; }
.pillar:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); transform: translateY(-4px); }
.pillar:hover .num { color: var(--ink); }
.pillar:hover p { color: rgba(17,17,17,0.82); }
.pillar .corner-bolt {
  position: absolute; right: -22px; bottom: -28px;
  width: 100px; height: auto; color: rgba(255,255,255,0.05);
  transition: color .2s;
}
.pillar:hover .corner-bolt { color: rgba(17,17,17,0.12); }

/* =====================================================================
   VERTICALS
   ===================================================================== */
.verticals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.vertical {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 560px;
  display: grid; grid-template-rows: 360px 1fr;
  transition: transform .22s, border-color .22s;
}
.vertical:hover { transform: translateY(-6px); border-color: var(--yellow); }
.vertical.slots {
  background: radial-gradient(600px 400px at 30% 15%, rgba(250,45,146,0.25), transparent 55%), linear-gradient(180deg, #181028 0%, #0D0916 100%);
}
.vertical.burst {
  background: radial-gradient(600px 400px at 60% 25%, rgba(255,255,0,0.16), transparent 55%), linear-gradient(180deg, #1A1505 0%, #0F0C03 100%);
}
.vertical.boxes {
  background: radial-gradient(600px 400px at 40% 20%, rgba(7,170,247,0.22), transparent 55%), linear-gradient(180deg, #07182A 0%, #040E1A 100%);
}
.v-art { position: relative; overflow: hidden; }
.v-art img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom;
  transition: transform .3s;
}
.vertical:hover .v-art img { transform: scale(1.04); }
.v-tag {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--ink);
}
.vertical.slots .v-tag { background: var(--pink); color: #fff; }
.vertical.boxes .v-tag { background: var(--cyan); color: #fff; }
.v-content {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.v-content h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  line-height: 1; margin-bottom: 12px;
}
.v-content p { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.6; margin-bottom: 22px; flex: 1; }
.v-cta {
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 12.5px; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--yellow);
}
.v-cta::after { content: '→'; transition: transform .15s; }
.vertical:hover .v-cta::after { transform: translateX(4px); }

/* coming-soon verticals (not yet clickable) */
.vertical.coming { cursor: default; }
.vertical.coming:hover { transform: none; border-color: var(--line); }
.vertical.coming .v-art img { filter: grayscale(0.55) brightness(0.65); opacity: 0.7; }
.vertical.coming:hover .v-art img { transform: none; }
.v-soon {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: var(--r-sm);
  background: rgba(17,17,17,0.66); color: #fff; border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
}
.vertical.coming .v-cta { color: var(--muted); }
.vertical.coming .v-cta::after { content: ''; }

/* =====================================================================
   STUDIOS STRIP
   ===================================================================== */
.studios-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  padding: 34px 0 8px;
}
.studios-strip img {
  height: 44px; width: auto;
  opacity: 0.65;
  filter: grayscale(1) brightness(1.4);
  transition: opacity .2s, filter .2s, transform .2s;
}
.studios-strip img:hover { opacity: 1; filter: none; transform: translateY(-3px); }
.studio-juice {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; opacity: 0.65;
  transition: opacity .2s, color .2s, transform .2s;
}
.studio-juice:hover { opacity: 1; color: var(--yellow); transform: translateY(-3px); }
.studio-juice em {
  font-family: var(--display);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.1em;
}
.studios-note {
  text-align: center;
  margin-top: 26px;
  font-family: var(--display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================================
   PARTNERS — yellow / black split
   ===================================================================== */
.partners-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.partner-panel {
  position: relative;
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.partner-panel.for-operators { background: var(--yellow); color: var(--ink); }
.partner-panel.for-studios { background: var(--panel); border: 1px solid var(--line); }
.partner-panel .ribbon {
  align-self: flex-start;
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.16em;
  padding: 6px 14px; border-radius: var(--r-sm);
  margin-bottom: 22px;
}
.for-operators .ribbon { background: var(--ink); color: var(--yellow); }
.for-studios .ribbon { background: var(--pink); color: #fff; }
.partner-panel h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  line-height: 0.98; margin-bottom: 14px;
}
.partner-panel .lead { font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
.for-operators .lead { color: rgba(17,17,17,0.8); }
.for-studios .lead { color: var(--text-2); }
.partner-list { list-style: none; display: grid; gap: 9px; margin-bottom: 26px; }
.partner-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13.5px; line-height: 1.55;
  padding: 12px 14px; border-radius: var(--r-sm);
}
.for-operators .partner-list li { background: rgba(17,17,17,0.07); color: rgba(17,17,17,0.88); }
.for-studios .partner-list li { background: rgba(255,255,255,0.03); color: var(--text-2); }
.partner-list .tick {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; margin-top: 1px;
}
.for-operators .tick { background: var(--ink); color: var(--yellow); }
.for-studios .tick { background: rgba(250,45,146,0.2); color: var(--pink); }
.partner-panel .cta-row { margin-top: auto; }

/* =====================================================================
   TECHNOLOGY
   ===================================================================== */
.tech { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: stretch; }
.tech-pts { list-style: none; display: grid; gap: 10px; margin-top: 24px; }
.tech-pts li {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--panel);
  transition: border-color .15s;
}
.tech-pts li:hover { border-color: var(--yellow); }
.tech-pts .ic {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(255,255,0,0.1); color: var(--yellow);
  font-weight: 800; font-size: 16px;
}
.tech-pts b { display: block; font-family: var(--display); font-weight: 700; font-size: 14.5px; margin-bottom: 3px; }
.tech-pts span { color: var(--text-2); font-size: 13.5px; line-height: 1.55; }

.tech-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(420px 240px at 90% 0%, rgba(255,255,0,0.06), transparent 60%),
    radial-gradient(420px 240px at 0% 100%, rgba(250,45,146,0.06), transparent 60%),
    var(--panel);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.tc-head { display: flex; align-items: center; justify-content: space-between; }
.tc-title { display: flex; align-items: center; gap: 9px; }
.tc-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #00D88C;
  animation: pulse 2.4s ease-in-out infinite;
}
.tc-name { font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 15px; }
.tc-tag { color: var(--muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.tc-region { font-size: 11px; color: var(--muted); font-weight: 600; padding: 5px 12px; border-radius: var(--r-pill); border: 1px solid var(--line); }
.tc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.tc-stat {
  padding: 16px 14px 13px;
  border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  background: var(--panel-2);
}
.tc-stat b {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: clamp(20px, 2vw, 26px); line-height: 1;
  display: flex; align-items: baseline; gap: 2px;
}
.tc-stat b .u { font-size: 12px; color: var(--muted); font-style: normal; }
.tc-stat .l { margin-top: 7px; font-size: 9.5px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.tc-stats .tc-stat:nth-child(1) b { color: var(--yellow); }
.tc-stats .tc-stat:nth-child(2) b { color: var(--cyan); }
.tc-stats .tc-stat:nth-child(3) b { color: var(--pink); }
.tc-block { padding: 14px 16px; border: 1px solid var(--line-soft); border-radius: var(--r-sm); background: var(--panel-2); }
.tc-block-h {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700;
  margin-bottom: 10px;
}
.tc-count { margin-left: auto; padding: 2px 8px; border-radius: var(--r-pill); background: rgba(0,216,140,0.14); color: #00D88C; font-weight: 700; letter-spacing: 0; }
.tc-time { margin-left: auto; color: var(--dim); font-weight: 500; letter-spacing: 0.04em; }
.tc-flags { display: flex; flex-wrap: wrap; gap: 6px; }
.tc-flags span {
  font-size: 11px; font-weight: 600; color: var(--text-2);
  padding: 5px 10px; border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  background: var(--panel);
}
.tc-release { display: flex; align-items: center; gap: 12px; }
.tc-rel-art {
  width: 48px; height: 64px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background-size: cover; background-position: center;
  background-color: var(--panel); border: 1px solid var(--line);
}
.tc-rel-name { font-family: var(--display); font-size: 14px; font-weight: 700; }
.tc-rel-sub { font-size: 11px; color: var(--muted); }
.tc-rel-tag {
  margin-left: auto; padding: 4px 11px; border-radius: var(--r-pill);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  background: rgba(0,216,140,0.14); color: #00D88C;
}
.tc-foot {
  margin-top: auto; padding-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: var(--muted); font-size: 12px;
}
.tc-foot .dot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2.4s ease-in-out infinite; }

/* =====================================================================
   NEWS
   ===================================================================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; background: var(--panel);
  transition: transform .18s, border-color .18s;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.news-art { height: 180px; background-size: cover; background-position: center; background-color: var(--panel-2); }
.news-body { padding: 20px 22px 24px; }
.news-eyebrow {
  font-family: var(--display);
  font-size: 10px; color: var(--yellow); font-weight: 700; font-style: italic;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.news-card:nth-child(2) .news-eyebrow { color: var(--pink); }
.news-card:nth-child(3) .news-eyebrow { color: var(--cyan); }
.news-title { font-family: var(--display); font-size: 16px; font-weight: 700; margin: 10px 0 10px; line-height: 1.3; }
.news-date { font-size: 11.5px; color: var(--muted); }

/* =====================================================================
   PARTNERS — REGISTRATION FUNNEL
   ===================================================================== */
.role-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.role-card {
  padding: 30px 26px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--panel);
  cursor: pointer; text-align: left;
  transition: border-color .18s, transform .18s, background .18s;
}
.role-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.role-card.is-on { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.role-card .r-ic { margin-bottom: 16px; color: var(--yellow); transition: color .18s; }
.role-card .r-ic svg { display: block; }
.role-card.is-on .r-ic { color: var(--ink); }
.role-card h3 {
  font-size: 18px; font-weight: 700; font-style: italic; text-transform: uppercase;
  margin-bottom: 8px;
}
.role-card p { font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.role-card.is-on p { color: rgba(17,17,17,0.75); }

/* stepper */
.stepper { display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }
.step-pill {
  font-family: var(--display);
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 10px 16px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  color: var(--muted);
}
.step-pill .n {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--panel-2); font-size: 10.5px;
}
.step-pill.is-on { border-color: var(--yellow); color: var(--yellow); font-style: italic; }
.step-pill.is-on .n { background: var(--yellow); color: var(--ink); }
.step-pill.is-done { border-color: rgba(0,216,140,0.5); color: #00D88C; }
.step-pill.is-done .n { background: rgba(0,216,140,0.18); color: #00D88C; }
.step-pill.is-locked { opacity: 0.55; }

.fieldset-h {
  font-family: var(--display);
  font-size: 12px; font-weight: 700; font-style: italic; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--yellow);
  margin: 26px 0 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-soft);
}
.fieldset-h:first-of-type { margin-top: 0; }

/* file / upload fields */
.upload-field {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px;
  border: 1px dashed var(--line); border-radius: var(--r-sm);
  background: var(--panel-2);
  color: var(--muted); font-size: 13px;
  cursor: pointer;
  transition: border-color .15s;
}
.upload-field:hover { border-color: var(--yellow); }
.upload-field input[type="file"] { display: none; }
.upload-field .uf-ic { color: var(--yellow); flex-shrink: 0; }
.upload-field.has-file { border-style: solid; border-color: rgba(0,216,140,0.5); color: #00D88C; }

/* commercials */
.comm-list { display: grid; gap: 12px; margin: 0 0 24px; }
.comm-item {
  display: grid; grid-template-columns: 42px 1fr; gap: 14px;
  padding: 18px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--panel-2);
}
.comm-item .ic {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(255,255,0,0.09); color: var(--yellow); font-size: 16px;
}
.comm-item b { display: block; font-family: var(--display); font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.comm-item span { color: var(--text-2); font-size: 13px; line-height: 1.55; }

.agree-box {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--panel-2);
  font-size: 13.5px; color: var(--text-2); line-height: 1.6;
}
.agree-box input[type="checkbox"] { width: 18px; height: 18px; accent-color: #FFFF00; margin-top: 2px; flex-shrink: 0; }
.agree-box a { color: var(--yellow); text-decoration: underline; }

/* status / contract card */
.status-card {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(0,216,140,0.4); border-radius: var(--r-md);
  background: rgba(0,216,140,0.05);
  margin-bottom: 18px;
}
.status-card .ic {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,216,140,0.15); color: #00D88C; font-size: 22px;
}
.status-card b { display: block; font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 16px; margin-bottom: 5px; }
.status-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; }
.status-card p code { color: #00D88C; font-family: 'JetBrains Mono', monospace; font-size: 12px; }

/* locked integration gates */
.locked-wrap { position: relative; }
.locked-overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: rgba(11,11,11,0.72);
  backdrop-filter: blur(3px);
  border-radius: var(--r-lg);
  text-align: center; padding: 24px;
}
.locked-overlay .lock-ic {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line);
  color: var(--yellow); font-size: 22px;
}
.locked-overlay b {
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 17px;
}
.locked-overlay p { color: var(--text-2); font-size: 13.5px; max-width: 440px; line-height: 1.6; }
.locked-content { filter: saturate(0.6); pointer-events: none; user-select: none; }

.int-steps { list-style: none; display: grid; gap: 8px; }
.int-steps li {
  display: flex; gap: 14px; align-items: center;
  padding: 13px 16px;
  border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  background: var(--panel-2);
  font-size: 13.5px; color: var(--text-2);
}
.int-steps .sn {
  font-family: 'JetBrains Mono', monospace;
  width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--panel); border: 1px solid var(--line);
  font-size: 11px; color: var(--muted);
}

.wizard-nav { display: flex; gap: 12px; align-items: center; margin-top: 26px; flex-wrap: wrap; }
.wizard-nav .note { font-size: 12px; color: var(--muted); }
.btn-back { color: var(--muted); font-family: var(--display); font-weight: 600; font-size: 13px; text-transform: uppercase; }
.btn-back:hover { color: var(--text); }

@media (max-width: 1024px) { .role-pick { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .role-pick { grid-template-columns: 1fr; } }

/* =====================================================================
   CONNECT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 290px 1fr; gap: 24px; align-items: start; }
.contact-nav { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 6px; }
.contact-nav a {
  font-family: var(--display);
  font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.03em;
  padding: 14px 18px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--text-2);
  display: flex; justify-content: space-between; align-items: center;
  transition: all .15s;
}
.contact-nav a:hover { color: var(--text); border-color: var(--muted); }
.contact-nav a.is-on {
  background: var(--yellow); border-color: var(--yellow);
  color: var(--ink); font-style: italic; font-weight: 700;
}
.contact-nav a .ar { opacity: 0.5; }

.contact-form {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--panel);
  padding: clamp(26px, 3.4vw, 40px);
}
.contact-form h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-form p.sub { color: var(--text-2); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.contact-form h3 {
  font-size: 15px; font-weight: 700; font-style: italic; text-transform: uppercase;
  margin: 8px 0 14px;
}
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label {
  display: block;
  font-family: var(--display);
  font-size: 10.5px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px;
  border-radius: var(--r-sm);
  background: var(--panel-2); border: 1px solid var(--line); color: var(--text);
  font-size: 14px; font-family: var(--body);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,255,0,0.1);
}
.field textarea { resize: vertical; min-height: 96px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 4px; }
.submit-row { display: flex; gap: 14px; align-items: center; margin-top: 18px; flex-wrap: wrap; }
.submit-row .note { font-size: 12px; color: var(--muted); }
.confirm {
  margin-top: 14px;
  padding: 13px 16px; border-radius: var(--r-sm);
  background: rgba(0,216,140,0.1); border: 1px solid rgba(0,216,140,0.4);
  color: #00D88C; font-size: 13.5px;
  display: none;
}
.confirm.show { display: block; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-nav { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .contact-nav a { white-space: nowrap; }
  .field-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   NEWS PAGE
   ===================================================================== */
.news-featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--panel);
  overflow: hidden;
  margin-bottom: 18px;
  transition: border-color .18s;
}
.news-featured:hover { border-color: var(--yellow); }
.news-featured .nf-art {
  min-height: 340px;
  background-size: cover; background-position: center;
  background-color: var(--panel-2);
}
.news-featured .nf-body {
  padding: clamp(28px, 3.4vw, 44px);
  display: flex; flex-direction: column; justify-content: center;
}
.news-featured .nf-tag {
  align-self: flex-start;
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.1em;
  padding: 6px 12px; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--ink);
  margin-bottom: 18px;
}
.news-featured h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  line-height: 1.02; margin-bottom: 14px;
}
.news-featured p { color: var(--text-2); font-size: 14.5px; line-height: 1.65; margin-bottom: 18px; }
.news-featured .nf-date { font-size: 12px; color: var(--muted); }
.news-featured:hover h2 { color: var(--yellow); }

.news-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

.news-card .news-art.grad-1 { background-image: radial-gradient(300px 200px at 30% 30%, rgba(255,255,0,0.25), transparent 65%), radial-gradient(280px 200px at 80% 80%, rgba(250,45,146,0.22), transparent 65%), linear-gradient(135deg, #1C1C1C, #131313); }
.news-card .news-art.grad-2 { background-image: radial-gradient(300px 200px at 30% 30%, rgba(7,170,247,0.25), transparent 65%), radial-gradient(280px 200px at 80% 80%, rgba(255,255,0,0.18), transparent 65%), linear-gradient(135deg, #16191C, #101213) }
.news-card .news-art.grad-3 { background-image: radial-gradient(300px 200px at 30% 30%, rgba(250,45,146,0.25), transparent 65%), radial-gradient(280px 200px at 80% 80%, rgba(7,170,247,0.2), transparent 65%), linear-gradient(135deg, #1C161A, #131013); }

/* subscribe form on yellow band */
.cta-band .band-form { display: flex; gap: 8px; position: relative; flex-wrap: wrap; }
.cta-band .band-form input {
  flex: 1; min-width: 220px;
  padding: 13px 18px; border-radius: var(--r-sm);
  border: 2px solid var(--ink);
  background: rgba(255,255,255,0.65); color: var(--ink);
  font-size: 14px; outline: none;
}
.cta-band .band-form input::placeholder { color: rgba(17,17,17,0.55); }
.cta-band .band-form button {
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 13px; padding: 13px 24px; border-radius: var(--r-sm);
  background: var(--ink); color: var(--yellow);
  transition: transform .15s;
}
.cta-band .band-form button:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .nf-art { min-height: 220px; }
}

/* =====================================================================
   CTA BAND — big yellow block
   ===================================================================== */
.cta-band {
  position: relative;
  margin: 0 0 clamp(64px, 8vw, 100px);
  padding: clamp(44px, 6vw, 80px) clamp(28px, 5vw, 72px);
  border-radius: var(--r-lg);
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.cta-band h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.02em;
}
.cta-band p { margin-top: 14px; font-size: 16px; color: rgba(17,17,17,0.78); max-width: 480px; }
.cta-band .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; position: relative; }
.cta-band .band-bolt {
  position: absolute; right: -40px; top: 50%;
  width: 230px; height: auto;
  transform: translateY(-50%) rotate(8deg);
  color: rgba(17,17,17,0.08);
  pointer-events: none;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer.site {
  border-top: 1px solid var(--line-soft);
  background: var(--black);
  padding: clamp(48px, 6vw, 72px) 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 36px; }
.footer-logo { display: flex; align-items: center; gap: 12px; color: var(--yellow); margin-bottom: 16px; }
.footer-logo .bolt { height: 28px; width: auto; }
.footer-logo .word { height: 26px; width: auto; }
.footer-tagline {
  font-family: var(--display);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--text-2);
}
.footer-sub { color: var(--muted); font-size: 13px; margin-top: 10px; max-width: 300px; line-height: 1.6; }
.footer-col h5, .footer-col .fh5 {
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 14px; font-weight: 700;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col a { color: var(--text-2); font-size: 13.5px; transition: color .15s; }
.footer-col a:hover { color: var(--yellow); }
.footer-form { display: flex; gap: 8px; margin-top: 14px; }
.footer-form input {
  flex: 1; padding: 11px 16px; border-radius: var(--r-sm);
  background: var(--panel); border: 1px solid var(--line); color: var(--text);
  font-size: 13px; outline: none;
}
.footer-form input:focus { border-color: var(--yellow); }
.footer-form button {
  background: var(--yellow); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  padding: 0 18px; border-radius: var(--r-sm); font-size: 12px;
}
.footer-bottom {
  margin-top: 44px; padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--dim); font-size: 11.5px;
}
.footer-bottom a { color: var(--dim); }
.footer-bottom a:hover { color: var(--text-2); }

/* =====================================================================
   CATALOGUE PAGE
   ===================================================================== */
.page-hero { padding: clamp(44px, 6vw, 72px) 0 8px; }
.page-hero h1 {
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  line-height: 0.94; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero h1 .y { color: var(--yellow); }
.page-hero .sub { color: var(--text-2); font-size: clamp(15px, 1.4vw, 17px); max-width: 620px; }

.cat-search {
  margin: 28px 0 0;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--panel);
  padding: 4px 6px 4px 20px;
  max-width: 640px;
  transition: border-color .15s;
}
.cat-search:focus-within { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,255,0,0.12); }
.cat-search svg { color: var(--muted); flex-shrink: 0; }
.cat-search input {
  flex: 1; background: none; border: 0; outline: none;
  color: var(--text); font-size: 15px; padding: 13px 0;
}
.cat-search input::placeholder { color: var(--dim); }
.cat-search .count {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink); background: var(--yellow);
  padding: 9px 14px; border-radius: var(--r-sm);
  white-space: nowrap;
}

/* --- coming soon carousel --- */
.cs-wrap { padding: clamp(36px, 4.5vw, 56px) 0 0; }
.cs-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; gap: 16px; }
.cs-head h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: -0.01em;
}
.cs-arrows { display: flex; gap: 8px; }
.cs-arrows button {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1px solid var(--line); color: var(--text-2);
  display: grid; place-items: center;
  transition: all .15s;
}
.cs-arrows button:hover { border-color: var(--yellow); color: var(--yellow); }
.cs-track { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 6px; scrollbar-width: none; }
.cs-track::-webkit-scrollbar { display: none; }
.cs-card {
  flex: 0 0 218px; height: 290px;
  border-radius: var(--r-md); position: relative; overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .18s, border-color .18s;
}
.cs-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.cs-card .cs-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cs-card .cs-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.82) 100%); }
.cs-card .cs-pill {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 10px; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--ink);
}
.cs-card .cs-cta {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--display); font-weight: 700; font-size: 10px; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-sm);
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2); color: #fff;
  backdrop-filter: blur(6px);
}
.cs-card:hover .cs-cta { background: var(--pink); border-color: var(--pink); }
.cs-card .cs-foot { position: absolute; left: 14px; right: 14px; bottom: 13px; }
.cs-card .cs-foot .nm {
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 15px; line-height: 1.15; color: #fff;
}
.cs-card .cs-foot .sb { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 3px; }

/* --- filter chips --- */
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; align-items: center; }
.chip-group { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.chip-group .label {
  font-family: var(--display);
  font-size: 10px; color: var(--dim); letter-spacing: 0.18em; text-transform: uppercase;
  margin-right: 8px; font-weight: 700; min-width: 64px;
}
.chip {
  font-family: var(--display);
  padding: 8px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: transparent;
  font-size: 12px; color: var(--text-2); font-weight: 600;
  cursor: pointer; user-select: none;
  transition: all .15s;
}
.chip:hover { color: var(--text); border-color: var(--muted); }
.chip.is-on {
  background: var(--yellow); border-color: var(--yellow);
  color: var(--ink); font-style: italic; font-weight: 700;
}

/* --- toolbar (sort + view) --- */
.cat-toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sort-select {
  font-family: var(--display);
  padding: 10px 14px; border-radius: var(--r-sm);
  background: var(--panel); border: 1px solid var(--line);
  color: var(--text-2); font-size: 12px; font-weight: 600;
  outline: none; cursor: pointer;
}
.sort-select:focus { border-color: var(--yellow); }
.view-toggle {
  display: inline-flex; gap: 3px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 3px;
}
.view-toggle button {
  font-family: var(--display);
  padding: 7px 14px; border-radius: 4px;
  font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase;
}
.view-toggle button.is-on { background: var(--yellow); color: var(--ink); font-style: italic; }

/* --- game grid cards --- */
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.game-card {
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; background: var(--panel);
  display: flex; flex-direction: column;
  transition: transform .18s, border-color .18s;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.gc-tile { aspect-ratio: 3 / 4; background-size: cover; background-position: center; position: relative; background-color: var(--panel-2); }
.gc-tile .gc-tag {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 9.5px; letter-spacing: 0.08em;
  padding: 4px 9px; border-radius: 4px;
  background: rgba(0,0,0,0.62); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.16);
}
.gc-tile .gc-tag.t-slots { color: var(--yellow); }
.gc-tile .gc-tag.t-burst { color: var(--pink-light); }
.gc-tile .gc-tag.t-boxes { color: var(--cyan); }
.gc-body { padding: 14px 16px 16px; }
.gc-name { font-family: var(--display); font-size: 14.5px; font-weight: 700; }
.gc-meta { display: flex; gap: 6px; font-size: 11px; color: var(--muted); margin-top: 6px; flex-wrap: wrap; }
.gc-meta .brand { color: var(--text-2); font-weight: 600; }
.gc-mechs { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.gc-mech {
  font-size: 9px; padding: 3px 8px; border-radius: 4px;
  border: 1px solid var(--line-soft);
  color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600;
}

/* --- empty + data banner --- */
.empty {
  grid-column: 1 / -1;
  text-align: center; padding: 64px 24px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
}
.empty a { color: var(--yellow); text-decoration: underline; }
.data-banner {
  margin-top: 36px; padding: 16px 20px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--panel);
  color: var(--text-2); font-size: 12.5px;
  display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.data-banner a { color: var(--yellow); text-decoration: underline; }
.data-banner code { color: var(--cyan); }

/* =====================================================================
   TECHNOLOGY PAGE
   ===================================================================== */
.gates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gate {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--panel);
  transition: border-color .2s, transform .2s;
}
.gate:hover { border-color: var(--yellow); transform: translateY(-4px); }
.gate .g-step {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.gate h3 {
  font-size: 20px; font-weight: 700; font-style: italic; text-transform: uppercase;
  margin-bottom: 10px;
}
.gate p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
.gate ul { list-style: none; display: grid; gap: 7px; }
.gate ul li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 12.5px; color: var(--muted); line-height: 1.5;
}
.gate ul li::before { content: '⚡'; flex-shrink: 0; font-size: 10px; margin-top: 2px; }
.gate ul li code {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--cyan);
  background: rgba(7,170,247,0.08);
  padding: 1px 6px; border-radius: 4px;
}

/* endpoint chips */
.endpoints { display: flex; flex-wrap: wrap; gap: 8px; }
.endpoint {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--panel); color: var(--text-2);
}
.endpoint .verb { color: var(--yellow); font-weight: 700; font-size: 10.5px; }

/* code panel */
.code-panel {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: #0D0D0D;
  overflow: hidden;
}
.code-tabs {
  display: flex; gap: 2px; align-items: center;
  padding: 10px 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.code-tabs button {
  font-family: var(--display); font-weight: 700; font-size: 12px; text-transform: uppercase;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 6px 6px 0 0;
  transition: color .15s, background .15s;
}
.code-tabs button.is-on { color: var(--yellow); background: rgba(255,255,0,0.06); box-shadow: inset 0 -2px 0 var(--yellow); }
.code-tabs .code-ep {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--dim);
  padding-bottom: 6px;
}
.code-body { padding: 20px 22px; overflow-x: auto; }
.code-body pre {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; line-height: 1.75;
  color: #D7D7D7;
  white-space: pre;
}
.code-body .c-kw  { color: var(--pink-light); }
.code-body .c-str { color: var(--yellow); }
.code-body .c-fn  { color: var(--cyan); }
.code-body .c-cm  { color: #6B6B6B; font-style: italic; }

/* security list */
.sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sec-item {
  display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--panel);
}
.sec-item .ic {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(255,255,0,0.09); color: var(--yellow);
  font-size: 17px;
}
.sec-item b { display: block; font-family: var(--display); font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.sec-item span { color: var(--text-2); font-size: 13px; line-height: 1.55; }

/* client-area gate band */
.gate-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
  padding: 22px 28px;
  border: 1px dashed rgba(255,255,0,0.45); border-radius: var(--r-md);
  background: rgba(255,255,0,0.04);
}
.gate-band .txt { font-size: 14px; color: var(--text-2); max-width: 640px; line-height: 1.6; }
.gate-band .txt b { color: var(--yellow); }

/* jurisdiction strip */
.juris-strip { display: flex; flex-wrap: wrap; gap: 9px; }
.juris {
  font-family: var(--display);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--panel);
  font-size: 13px; font-weight: 600; color: var(--text-2);
}
.juris em { font-style: italic; font-weight: 700; font-size: 10.5px; color: var(--yellow); letter-spacing: 0.08em; }

@media (max-width: 900px) {
  .gates { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   GAME DETAIL PAGE
   ===================================================================== */
.detail-hero {
  padding: clamp(40px, 5.5vw, 64px) 0 0;
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 48px);
  align-items: flex-start;
}
.tile-big {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  background-size: cover; background-position: center;
  background-color: var(--panel);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.tile-big .tile-pill {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: var(--r-sm);
  background: var(--yellow); color: var(--ink);
}
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a:hover { color: var(--text-2); }
.detail-h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: -0.02em; line-height: 0.95;
}
.detail-meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.meta-pill {
  font-family: var(--display);
  padding: 7px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--line);
  font-size: 12px; color: var(--text-2); font-weight: 600;
}
.meta-pill b { color: var(--text); }
.meta-pill.brand { color: var(--cyan); border-color: rgba(7,170,247,0.45); }
.meta-pill.type  { color: var(--yellow); border-color: rgba(255,255,0,0.45); }
.meta-pill.fair  { color: var(--ink); background: var(--yellow); border-color: var(--yellow); font-style: italic; font-weight: 700; text-transform: uppercase; }
.ctas-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* characteristics strip */
.char-strip {
  margin: clamp(32px, 4vw, 48px) 0 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
}
.char-strip .stat { padding: 22px 24px; border-right: 1px solid var(--line); background: rgba(255,255,255,0.015); }
.char-strip .stat:last-child { border-right: 0; }
.char-strip .n {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: clamp(20px, 2vw, 28px); line-height: 1; color: var(--yellow);
}
.char-strip .stat:nth-child(2) .n { color: var(--pink); }
.char-strip .stat:nth-child(3) .n { color: var(--cyan); }
.char-strip .stat:nth-child(4) .n { color: #fff; }
.char-strip .stat:nth-child(5) .n { color: var(--yellow); }
.char-strip .l { margin-top: 9px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* demo embed */
.demo-panel {
  margin-top: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--panel);
}
.demo-stage { position: relative; aspect-ratio: 16 / 9; background: #000; }
.demo-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.demo-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background-size: cover; background-position: center;
}
.demo-poster::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(17,17,17,0.55), rgba(11,11,11,0.88));
}
.demo-poster > * { position: relative; }
.demo-play {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 12px 50px rgba(255,255,0,0.4);
  transition: transform .15s;
}
.demo-play:hover { transform: scale(1.08); }
.demo-poster .hint {
  font-family: var(--display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 14px; letter-spacing: 0.06em; color: #fff;
}
.demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--muted);
}
.demo-bar a { color: var(--yellow); text-decoration: underline; }

/* body */
.detail-body { display: grid; grid-template-columns: 1fr 400px; gap: 18px; margin: 18px 0 clamp(64px, 8vw, 96px); align-items: flex-start; }
.panel {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
  margin-bottom: 18px;
}
.panel-h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.panel-h h2 {
  font-size: 17px; font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: 0.01em;
}
.panel-h .sub { font-size: 12px; color: var(--muted); text-align: right; }

/* spec list */
.spec-list { list-style: none; display: grid; gap: 2px; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list li span { color: var(--muted); }
.spec-list li b { color: var(--text); text-align: right; }

/* distribution chart */
.dist-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 200px; padding: 12px 4px 0;
  border-bottom: 1px solid var(--line-soft);
}
.dist-bar {
  flex: 1; min-width: 0;
  background: linear-gradient(180deg, var(--yellow) 0%, rgba(255,255,0,0.25) 100%);
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: opacity 0.2s;
  min-height: 2px;
}
.dist-bar:hover { opacity: 0.75; }
.dist-bar .tip {
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  background: var(--ink); border: 1px solid var(--line);
  padding: 4px 8px; border-radius: 5px;
  font-size: 11px; color: var(--text); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  margin-bottom: 4px; z-index: 2;
}
.dist-bar:hover .tip { opacity: 1; }
.dist-axis { display: flex; gap: 8px; padding-top: 8px; font-size: 10.5px; color: var(--muted); }
.dist-axis span { flex: 1; text-align: center; overflow: hidden; text-overflow: ellipsis; }
.dist-totals { display: flex; gap: 18px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.dist-totals .lblval { flex: 1; min-width: 100px; }
.dist-totals .lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.dist-totals .val { font-family: var(--display); font-size: 17px; font-weight: 700; font-style: italic; margin-top: 4px; }

/* mode chips */
.mode-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mode-chips .chip { text-decoration: none; }

/* certifications */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.cert-chip {
  padding: 11px 12px; border-radius: var(--r-sm);
  border: 1px solid var(--line);
  text-align: center; font-size: 12px; font-weight: 600; color: var(--text-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  line-height: 1.2;
}
.cert-chip .cs { font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); }
.cert-chip.live { color: #00D88C; border-color: rgba(0,216,140,0.45); background: rgba(0,216,140,0.07); }
.cert-chip.live .cs { color: #00D88C; }
.cert-chip.flight { color: var(--yellow); border-color: rgba(255,255,0,0.35); background: rgba(255,255,0,0.05); }
.cert-chip.flight .cs { color: var(--yellow); }
.cert-chip.pipeline { color: var(--cyan); border-color: rgba(7,170,247,0.35); background: rgba(7,170,247,0.05); }
.cert-chip.pipeline .cs { color: var(--cyan); }
.cert-empty { padding: 12px; color: var(--dim); font-size: 12px; grid-column: 1 / -1; text-align: center; border: 1px dashed var(--line); border-radius: var(--r-sm); }

/* volatility pips */
.volatility { display: inline-flex; gap: 4px; vertical-align: middle; }
.vol-pip { width: 14px; height: 8px; border-radius: 2px; background: var(--panel-2); border: 1px solid var(--line-soft); }
.vol-pip.on { background: var(--pink); border-color: var(--pink); }

@media (max-width: 980px) {
  .detail-hero, .detail-body { grid-template-columns: 1fr; }
  .tile-big { max-width: 280px; }
  .char-strip { grid-template-columns: repeat(2, 1fr); }
  .char-strip .stat { border-bottom: 1px solid var(--line); }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bolt { order: -1; min-height: 200px; }
  .hero-bolt svg.bolt-art { width: 180px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat:nth-child(2) { border-right: 0; }
  .hero-stats .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .verticals { grid-template-columns: 1fr; }
  .vertical { min-height: auto; grid-template-rows: 300px 1fr; }
  .tech { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .partners-split { grid-template-columns: 1fr; }
  .game-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-ctas .btn-line { display: none; }
  .nav-burger { display: grid; }
}
@media (max-width: 700px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .nav-inner { height: 64px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   FX — scroll reveal + quick search palette (juice-fx.js)
   ===================================================================== */
.fx-hide {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .65s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.fx-hide.fx-in { opacity: 1; transform: none; }

.qk-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 12px; border-radius: var(--r-sm);
  border: 1px solid var(--line); color: var(--muted);
  transition: all .15s; cursor: pointer;
}
.qk-trigger:hover { color: var(--text); border-color: var(--muted); }
.qk-trigger kbd { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--dim); }
@media (max-width: 900px) { .qk-trigger kbd { display: none; } }

.qk-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(11,11,11,0.7); backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 12vh 20px 20px;
}
.qk-overlay.open { display: flex; }
.qk-panel {
  width: 100%; max-width: 560px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  overflow: hidden;
}
.qk-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
}
.qk-bar input {
  flex: 1; background: none; border: 0; outline: none;
  color: var(--text); font-size: 15px; font-family: var(--body);
}
.qk-bar kbd {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--dim);
  border: 1px solid var(--line); border-radius: 4px; padding: 3px 6px;
}
.qk-list { max-height: 330px; overflow-y: auto; padding: 8px; }
.qk-item {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 11px 13px; border-radius: var(--r-sm);
  color: var(--text-2);
}
.qk-item .qk-t { font-weight: 600; color: var(--text); font-size: 14px; }
.qk-item .qk-s { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.qk-item.is-sel { background: var(--yellow); }
.qk-item.is-sel .qk-t, .qk-item.is-sel .qk-s { color: var(--ink); }
.qk-none { padding: 22px; text-align: center; color: var(--dim); font-size: 13px; }
