/* Mind Boot Studios — gaming platform marketing site */
@import url("style.css");
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,600;0,700;0,800;1,600&family=Inter:wght@400;500;600;700&display=swap");

/* ── Tokens ── */
:root {
  --studio-font: "Inter", system-ui, sans-serif;
  --studio-display: "Exo 2", system-ui, sans-serif;
  --studio-bg: #070b14;
  --studio-bg-elevated: #0f1629;
  --studio-surface: #141c32;
  --studio-accent: #42d392;
  --studio-accent-2: #5eb8ff;
  --studio-accent-3: #7c9cff;
  --studio-glass: rgba(10, 14, 28, 0.82);
  --studio-glass-border: rgba(94, 184, 255, 0.18);
  --studio-glow: linear-gradient(135deg, #42d392 0%, #3ecfb6 48%, #7c9cff 100%);
  --studio-rainbow: linear-gradient(120deg, #42d392 0%, #3ecfb6 35%, #7c9cff 70%, #42d392 100%);
  --studio-max: 1280px;
  --studio-gutter: clamp(20px, 4vw, 40px);
  --space: var(--studio-gutter);
}

/* ── Keyframes ── */
@keyframes studio-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes studio-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes studio-pulse-ring {
  0% { transform: scale(0.85); opacity: 0.7; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes studio-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes studio-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes studio-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes studio-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -16px) scale(1.04); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}
@keyframes studio-loader-bar {
  0% { width: 0%; }
  50% { width: 75%; }
  100% { width: 100%; }
}
@keyframes studio-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}
@keyframes hero-art-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

/* ── Base / scroll ── */
html:has(body.studio-body) {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--safe-top, 0px) + 80px);
  height: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(94, 184, 255, 0.5) rgba(7, 11, 20, 0.65);
}

html:has(body.studio-body)::-webkit-scrollbar {
  width: 11px;
}

html:has(body.studio-body)::-webkit-scrollbar-track {
  background: rgba(7, 11, 20, 0.55);
}

html:has(body.studio-body)::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(66, 211, 146, 0.55), rgba(94, 184, 255, 0.5));
  border-radius: 999px;
  border: 2px solid rgba(7, 11, 20, 0.55);
}

html:has(body.studio-body)::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(66, 211, 146, 0.78), rgba(94, 184, 255, 0.72));
}

body.studio-body {
  min-height: 100dvh;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
  display: block;
  overscroll-behavior-y: none;
  user-select: text;
  -webkit-user-select: text;
  touch-action: pan-y;
  background: var(--studio-bg);
  color: #eef2ff;
  font-family: var(--studio-font);
  font-size: var(--font-base);
  line-height: 1.6;
  --text: #eef2ff;
  --muted: #94a3b8;
  --border: rgba(94, 184, 255, 0.14);
  --surface-subtle: rgba(20, 28, 56, 0.55);
  --surface-chip: rgba(24, 34, 64, 0.82);
  --card-gradient: linear-gradient(145deg, #1a2444 0%, #141c38 100%);
  --shadow: rgba(0, 0, 0, 0.45);
  --green: #42d392;
  --blue: #5eb8ff;
  --pink: #f472b6;
}

.studio-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  height: 3px;
  width: 0;
  pointer-events: none;
  background: var(--studio-glow);
  box-shadow: 0 0 12px rgba(66, 211, 146, 0.45);
  transition: width 0.12s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.studio-body) {
    scroll-behavior: auto;
  }
  .studio-scroll-progress {
    display: none;
  }
}

body.studio-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 8% -5%, rgba(62, 207, 182, 0.14), transparent 52%),
    radial-gradient(ellipse 60% 45% at 95% 5%, rgba(124, 156, 255, 0.12), transparent 48%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(66, 211, 146, 0.08), transparent 52%),
    linear-gradient(168deg, #070b14 0%, #0c1224 40%, #0e1428 100%);
}

#studio-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}

.studio-container {
  width: 100%;
  max-width: var(--studio-max);
  margin-inline: auto;
  padding-inline: var(--studio-gutter);
}

/* ── Loader ── */
.studio-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: linear-gradient(135deg, #070b14, #0f1629);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.studio-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.studio-loader-logo {
  font-family: var(--studio-display);
  font-weight: 800;
  font-size: clamp(1rem, 3.5vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--studio-rainbow);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: studio-shimmer 2.5s linear infinite;
}
.studio-loader-mark {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 24px rgba(66, 211, 146, 0.45));
  animation: studio-logo-float 3s ease-in-out infinite;
}
.studio-loader-bar-wrap {
  width: min(240px, 60vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.studio-loader-bar {
  height: 100%;
  background: var(--studio-rainbow);
  background-size: 200% 100%;
  border-radius: 999px;
  animation: studio-loader-bar 2s ease-in-out infinite, studio-shimmer 1.5s linear infinite;
}

/* ── Nav ── */
.studio-nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(var(--safe-top, 0px) + 14px) 0 14px;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.studio-nav-fixed.is-scrolled {
  background: var(--studio-glass);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--studio-glass-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  padding-top: calc(var(--safe-top, 0px) + 10px);
  padding-bottom: 10px;
}
.studio-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.studio-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.studio-nav-logo-mark {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(66, 211, 146, 0.35));
  animation: studio-logo-float 4s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.studio-nav-logo:hover .studio-nav-logo-mark {
  animation: none;
  transform: scale(1.08) rotate(-4deg);
}
.studio-nav-logo-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
  font-family: var(--studio-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}
.studio-nav-logo-mind { color: var(--studio-accent); }
.studio-nav-logo-boot { color: var(--studio-accent-2); }
.studio-nav-logo-studios { color: #eef2ff; opacity: 0.9; }
.studio-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.studio-nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.studio-nav-links a:hover,
.studio-nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.studio-nav-cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  background: linear-gradient(135deg, #42d392, #2bb8a8) !important;
  color: #070b14 !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(66, 211, 146, 0.35) !important;
}
.studio-nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #42d392, #2bb8a8) !important;
}
.studio-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-chip);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
}
.studio-mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--safe-top, 0px) + 68px);
  left: var(--studio-gutter);
  right: var(--studio-gutter);
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: var(--studio-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--studio-glass-border);
  border-radius: 16px;
  box-shadow: 0 24px 60px var(--shadow);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.studio-mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.studio-mobile-menu a {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
}
.studio-mobile-menu a:hover { background: var(--surface-subtle); }

@media (max-width: 900px) {
  .studio-nav-links { display: none; }
  .studio-menu-btn { display: grid; place-items: center; }
  .studio-mobile-menu { display: flex; }
  .studio-nav-logo-text { display: none; }
}

/* ── Hero (asymmetric platform layout) ── */
.studio-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--safe-top, 0px) + 96px) 0 clamp(72px, 10vh, 96px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  top: 20%;
  right: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 211, 146, 0.18), transparent 68%);
  filter: blur(60px);
  animation: studio-orb-drift 14s ease-in-out infinite;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  animation: studio-orb-drift 16s ease-in-out infinite;
}
.hero-orb-1 { width: 280px; height: 280px; top: 10%; left: -5%; background: rgba(62, 207, 182, 0.14); }
.hero-orb-2 { width: 220px; height: 220px; bottom: 15%; right: 8%; background: rgba(124, 156, 255, 0.12); animation-delay: -4s; }
.hero-orb-3 { width: 160px; height: 160px; top: 40%; left: 35%; background: rgba(94, 184, 255, 0.1); animation-delay: -7s; }
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 184, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 184, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  text-align: left;
  animation: studio-fade-up 0.8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ee7b7;
  border: 1px solid rgba(66, 211, 146, 0.35);
  background: rgba(66, 211, 146, 0.1);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--studio-accent);
  box-shadow: 0 0 10px var(--studio-accent);
  animation: studio-pulse-ring 2s ease infinite;
}
.hero-title {
  font-family: var(--studio-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.hero-title-line {
  display: block;
  color: #f8fafc;
}
.hero-title-accent {
  display: block;
  margin-top: 0.08em;
  background: var(--studio-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #94a3b8;
  max-width: 32em;
  margin: 0 0 32px;
  line-height: 1.7;
}
.hero-lead strong { color: #e2e8f0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-platforms li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}
.hero-platform-icon { font-size: 1rem; }

/* Hero spotlight card */
.hero-spotlight {
  animation: studio-fade-up 0.9s ease 0.15s both;
}
.hero-spotlight-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(94, 184, 255, 0.22);
  background: var(--studio-surface);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 60px rgba(66, 211, 146, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-spotlight-frame:hover {
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(66, 211, 146, 0.12);
}
.hero-spotlight-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #070b14;
  background: var(--studio-accent);
}
.hero-spotlight-art {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #134e4a 45%, #1e1b4b 100%);
}
.hero-game-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94, 184, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 184, 255, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
}
.hero-game-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 22%, 120px);
  height: auto;
  filter: drop-shadow(0 0 32px rgba(66, 211, 146, 0.45));
  animation: hero-art-float 5s ease-in-out infinite;
  z-index: 2;
}
.hero-game-snake {
  position: absolute;
  bottom: 22%;
  left: 12%;
  width: 42%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #42d392, #5eb8ff);
  box-shadow: 0 0 20px rgba(66, 211, 146, 0.5);
  transform: rotate(-8deg);
  z-index: 1;
}
.hero-game-snake::before {
  content: "";
  position: absolute;
  right: -8px;
  top: -6px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #7cfff0;
  box-shadow: 0 0 12px rgba(124, 255, 240, 0.6);
}
.hero-game-coin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.6);
  z-index: 1;
}
.hero-game-coin-1 { top: 28%; right: 18%; }
.hero-game-coin-2 { bottom: 32%; right: 28%; width: 14px; height: 14px; opacity: 0.85; }
.hero-game-combo {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--studio-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--studio-accent);
  z-index: 3;
}
.game-spotlight-preview {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0f172a 0%, #134e4a 45%, #1e1b4b 100%);
}
.game-spotlight-preview .hero-game-logo {
  width: clamp(64px, 18%, 96px);
}
.hero-spotlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.6), rgba(10, 14, 28, 0.95));
  border-top: 1px solid var(--border);
}
.hero-spotlight-title {
  font-family: var(--studio-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.hero-spotlight-tag {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-spotlight-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66, 211, 146, 0.06), transparent 50%, rgba(124, 156, 255, 0.06));
  pointer-events: none;
}

.hero-scroll-hint {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  padding: 12px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}
.hero-scroll-hint:hover { color: var(--studio-accent-2); }
.hero-scroll-label {
  font-family: var(--studio-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-platforms { justify-content: center; }
  .hero-spotlight { order: -1; max-width: 520px; margin-inline: auto; width: 100%; }
}

/* ── Buttons ── */
.studio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--studio-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  position: relative;
  overflow: hidden;
}
.studio-btn-lg {
  padding: 16px 28px;
  font-size: 0.98rem;
  border-radius: 12px;
}
.studio-btn-primary {
  background: linear-gradient(135deg, #42d392, #2bb8a8);
  color: #070b14;
  box-shadow: 0 6px 24px rgba(66, 211, 146, 0.32);
}
.studio-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(66, 211, 146, 0.42);
  filter: brightness(1.05);
}
.studio-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.studio-btn-ghost:hover {
  border-color: var(--studio-accent-2);
  background: rgba(94, 184, 255, 0.08);
  transform: translateY(-2px);
}
.btn-icon { font-size: 0.85em; }

/* ── Marquee ── */
.studio-marquee-wrap {
  overflow: hidden;
  border-block: 1px solid rgba(62, 207, 182, 0.14);
  background: rgba(10, 14, 28, 0.9);
  padding: 16px 0;
}
.studio-marquee {
  display: flex;
  width: max-content;
  animation: studio-marquee 32s linear infinite;
}
.studio-marquee span {
  flex-shrink: 0;
  padding: 0 28px;
  font-family: var(--studio-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
}
.studio-marquee span em {
  font-style: normal;
  color: var(--studio-accent);
}

/* ── Stats band ── */
.studio-stats-band {
  padding: clamp(48px, 8vw, 72px) 0;
  border-bottom: 1px solid var(--border);
}
.studio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .studio-stats { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  background: rgba(20, 28, 56, 0.5);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 211, 146, 0.35);
}
.stat-value {
  font-family: var(--studio-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  background: var(--studio-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Sections ── */
.studio-section {
  padding: clamp(64px, 10vw, 100px) 0;
  scroll-margin-top: 88px;
}
.studio-section-alt {
  background: linear-gradient(180deg, transparent, rgba(20, 28, 56, 0.35), transparent);
  border-block: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-label {
  display: block;
  font-family: var(--studio-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--studio-accent-2);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--studio-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: #f8fafc;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36em;
  margin: 12px 0 0;
}
.section-desc-tight { margin-bottom: 0; }
.section-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--studio-accent-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.section-link:hover { color: var(--studio-accent); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-stagger > *.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.26s; }

/* ── Game spotlight row ── */
.game-spotlight-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .game-spotlight-row { grid-template-columns: 1fr; }
}
.game-spotlight {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(66, 211, 146, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.game-spotlight:hover {
  box-shadow: 0 24px 60px rgba(66, 211, 146, 0.12);
}
.game-spotlight-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.game-spotlight-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.game-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-spotlight:hover .game-spotlight-media img {
  transform: scale(1.04);
}
.game-spotlight-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 11, 20, 0.92) 100%);
}
.game-spotlight-overlay h3 {
  font-family: var(--studio-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 12px 0 8px;
}
.game-spotlight-overlay p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0 0 16px;
  max-width: 28em;
}
.game-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--studio-accent);
  font-size: 0.95rem;
}

.game-side-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.game-card-compact {
  flex: 1;
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: var(--card-gradient);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.game-card-compact:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 156, 255, 0.35);
}
.game-card-compact.soon { border-color: rgba(124, 156, 255, 0.25); }
.game-card-compact.teaser { opacity: 0.85; }
.game-card-compact-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.game-card-compact-body h3 {
  font-family: var(--studio-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 8px 0 6px;
}
.game-card-compact-body p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 12px;
  line-height: 1.55;
}

.studio-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.studio-pill.live {
  background: rgba(66, 211, 146, 0.15);
  color: var(--studio-accent);
}
.studio-pill.soon {
  background: rgba(94, 184, 255, 0.12);
  color: var(--studio-accent-2);
}

/* ── Features ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(20, 28, 56, 0.45);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 184, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(66, 211, 146, 0.1);
  border: 1px solid rgba(66, 211, 146, 0.2);
}
.feature-card h3 {
  font-family: var(--studio-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Platforms ── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .platform-grid { grid-template-columns: 1fr; }
}
.platform-tile {
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--card-gradient);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.platform-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 184, 255, 0.35);
}
.platform-tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.platform-tile-icon { font-size: 1.75rem; }
.platform-tile h3 {
  font-family: var(--studio-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}
.platform-tile p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.55;
}
.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.platform-tags li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  border: 1px solid var(--border);
}

/* ── About ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
}
.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 16px;
  line-height: 1.7;
}
.about-copy .studio-btn { margin-top: 8px; }
.studio-timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(62, 207, 182, 0.28);
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--studio-accent);
  box-shadow: 0 0 16px rgba(66, 211, 146, 0.4);
}
.timeline-item.soon::before {
  background: var(--studio-accent-2);
  box-shadow: 0 0 16px rgba(94, 184, 255, 0.35);
}
.timeline-item h4 {
  font-family: var(--studio-display);
  font-weight: 700;
  margin: 0 0 6px;
}
.timeline-item p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ── CTA band ── */
.studio-cta-band {
  margin-bottom: clamp(48px, 8vw, 80px);
  padding: clamp(40px, 6vw, 56px) 0;
  border-block: 1px solid rgba(62, 207, 182, 0.18);
  background:
    linear-gradient(135deg, rgba(66, 211, 146, 0.08), transparent 50%),
    linear-gradient(225deg, rgba(124, 156, 255, 0.06), transparent 50%),
    rgba(14, 20, 40, 0.6);
}
.studio-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.studio-cta-copy h2 {
  font-family: var(--studio-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 8px;
}
.studio-cta-copy p {
  margin: 0;
  color: var(--muted);
}

/* ── Footer ── */
.studio-footer-full {
  border-top: 1px solid var(--border);
  padding: 56px 0 calc(var(--safe-bottom, 0px) + 32px);
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.98));
}
.studio-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .studio-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .studio-footer-logo-row { justify-content: center; }
}
.studio-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.studio-footer-logo-row img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px rgba(66, 211, 146, 0.3));
}
.studio-footer-brand {
  font-family: var(--studio-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.studio-footer-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 28em;
  margin: 0;
  line-height: 1.6;
}
.studio-footer-tagline a { color: var(--studio-accent-2); }
.studio-footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.studio-footer-col a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.studio-footer-col a:hover { color: var(--studio-accent-2); }
.studio-footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  #studio-particles { display: none; }
}

/* ── Legacy aliases ── */
.studio-wrap { max-width: var(--studio-max); margin: 0 auto; padding: var(--studio-gutter); }
.studio-footer a { color: var(--blue); }
.studio-tagline { color: var(--muted); }
.legal-page { max-width: 640px; margin: 0 auto; padding: 24px 16px 48px; }
.legal-page h1 { font-size: 1.5rem; margin-bottom: 8px; }
.legal-page h2 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal-page p, .legal-page li { color: var(--muted); margin-bottom: 10px; }
.legal-page ul { padding-left: 1.2rem; }
.legal-page a { color: var(--blue); }

/* Arrow Shoot page compat */
.arrow-hero {
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--safe-top, 0px) + 100px) var(--studio-gutter) 60px;
}
