/* ============================================
   BEACH BINGO — AAA DEEP SEA SYSTEM
   ============================================ */

:root {
  /* Bg layers */
  --abyss: #01060A;
  --deep:  #04161E;
  --water: #08222E;
  --tide:  #0E3344;
  --surf:  #143F54;

  /* Surfaces */
  --panel: #0A1F2A;
  --panel-2: #0F2A38;
  --panel-3: #143544;

  /* Borders */
  --hairline: rgba(160, 220, 240, 0.08);
  --hairline-2: rgba(160, 220, 240, 0.14);
  --hairline-3: rgba(160, 220, 240, 0.24);

  /* Text */
  --ink: #F2FAFD;
  --ink-2: #C8DDE6;
  --ink-3: #8AA4B0;
  --ink-4: #5B7480;
  --ink-5: #3B4E58;

  /* Accents */
  --bio: #1FE9D4;
  --bio-soft: #5BF5E5;
  --bio-deep: #0FAE9D;
  --coral: #FF6B5B;
  --coral-bright: #FF8470;
  --gold: #FFCD66;
  --magenta: #FF4FA7;
  --violet: #9B7DFF;

  /* Status */
  --live: #4FFFA4;

  /* Type */
  --display: "Big Shoulders Display", "Oswald", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(160,220,240,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(160,220,240,0.08);
  --shadow-xl: 0 48px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(160,220,240,0.10), inset 0 1px 0 rgba(255,255,255,0.06);

  /* Misc */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--abyss);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  background:
    radial-gradient(120% 80% at 50% -10%, #0E3344 0%, var(--abyss) 60%, var(--abyss) 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(31, 233, 212, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(155, 125, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 91, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  animation: ambientPulse 20s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(31,233,212,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
    radial-gradient(circle at 30% 20%, rgba(31,233,212,0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(155,125,255,0.03) 0%, transparent 50%);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 0%, transparent 100%);
  animation: gridFloat 30s ease-in-out infinite;
}

@keyframes gridFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes ambientPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

::selection {
  background: var(--bio);
  color: var(--abyss);
  text-shadow: none;
}

::-webkit-scrollbar { width: 12px; background: var(--abyss); }
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--deep) 0%, var(--abyss) 100%);
  border-left: 1px solid var(--hairline);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bio-deep) 0%, var(--surf) 100%);
  border-radius: 6px;
  border: 2px solid var(--deep);
  transition: background .3s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--bio) 0%, var(--bio-deep) 100%);
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.glass {
  background: rgba(14, 51, 68, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bio);
  margin-right: 8px;
  vertical-align: 1px;
  box-shadow: 0 0 12px var(--bio);
}

.mono { font-family: var(--mono); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
  text-wrap: balance;
}

h2 {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 20px;
  text-transform: uppercase;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--bio) 0%, var(--bio-soft) 50%, transparent 100%);
  opacity: 0.9;
  border-radius: 2px;
  box-shadow: 0 0 24px rgba(31,233,212,0.7);
}

h3 {
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

p { color: var(--ink-2); }

/* ============================================
   TOP NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(1,6,10,0.95) 0%, rgba(1,6,10,0.75) 60%, rgba(1,6,10,0) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(31,233,212,0.08);
  transition: all .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.nav:hover {
  background: linear-gradient(180deg, rgba(1,6,10,0.98) 0%, rgba(1,6,10,0.85) 60%, rgba(1,6,10,0) 100%);
  border-bottom-color: rgba(31,233,212,0.18);
  box-shadow: 0 8px 40px rgba(31,233,212,0.20);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 10px;
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: all .2s ease;
  position: relative;
  padding: 8px 0;
}
.nav-links a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bio), var(--bio-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-links a:hover {
  color: var(--bio);
  transform: translateY(-2px);
}
.nav-links a:hover::before { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--bio) 0%, var(--bio-deep) 100%);
  color: var(--abyss);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--r-md);
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 1px rgba(31,233,212,0.25), 0 8px 30px -8px rgba(31,233,212,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.4), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--bio-soft) 0%, var(--bio) 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(91,245,229,0.5), 0 16px 40px -8px rgba(31,233,212,0.8), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-lg);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
.btn::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s, transform .4s;
}
.btn:hover::before { opacity: 1; transform: scale(1); }

.btn-primary {
  background: linear-gradient(135deg, var(--bio) 0%, var(--bio-deep) 100%);
  color: var(--abyss);
  box-shadow:
    0 0 0 1px rgba(31,233,212,0.3),
    0 12px 40px -10px rgba(31,233,212,0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--bio-soft) 0%, var(--bio) 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(91,245,229,0.5),
    0 20px 60px -10px rgba(31,233,212,0.8),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--bio);
  color: var(--bio);
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 1px var(--bio),
    0 20px 60px -10px rgba(31,233,212,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, #E65A4A 100%);
  color: var(--abyss);
  box-shadow:
    0 0 0 1px rgba(255,107,91,0.3),
    0 14px 40px -12px rgba(255,107,91,0.6),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-coral:hover {
  background: linear-gradient(135deg, var(--coral-bright) 0%, var(--coral) 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(255,136,112,0.5),
    0 20px 60px -10px rgba(255,107,91,0.8),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Donate button */
.btn-donate {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}
.btn-donate-main {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-donate-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--bio);
  font-weight: 400;
}
.btn-donate:hover {
  background: rgba(31,233,212,0.06);
  border-color: rgba(31,233,212,0.4);
  color: var(--bio);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(31,233,212,0.3), 0 20px 60px -10px rgba(31,233,212,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-donate:hover .btn-donate-sub { color: var(--bio-soft); }

/* ============================================
   HERO — CINEMATIC
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px var(--gutter) 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-beach-bg {
  position: absolute;
  inset: 0;
  background: url('uploads/hawaii-illustration-retro-comic-style.jpg') center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  mix-blend-mode: screen;
  filter: saturate(0.8) brightness(0.7);
  animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50% { opacity: 0.22; transform: scale(1.02); }
}

body[data-hero="typo"] .hero-beach-bg { opacity: 0.08; }
body[data-hero="champion"] .hero-beach-bg { opacity: 0.12; }

.hero-rays {
  position: absolute;
  inset: -10% -10% -20% -10%;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
  mix-blend-mode: screen;
  animation: raysPulse 8s ease-in-out infinite;
}

@keyframes raysPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.75; }
}

.ray {
  position: absolute;
  top: -20%;
  width: 18%;
  height: 140%;
  background: linear-gradient(180deg, rgba(31, 233, 212, 0.22) 0%, rgba(31, 233, 212, 0.08) 40%, transparent 100%);
  filter: blur(40px);
  transform-origin: top center;
  animation: rayDrift 18s ease-in-out infinite alternate;
}
.ray:nth-child(1) { left: 5%;  transform: rotate(8deg);   animation-delay: -2s;  }
.ray:nth-child(2) { left: 22%; transform: rotate(-4deg);  animation-delay: -6s; background: linear-gradient(180deg, rgba(155, 125, 255, 0.20) 0%, rgba(155, 125, 255, 0.06) 40%, transparent 100%); }
.ray:nth-child(3) { left: 42%; transform: rotate(6deg);   animation-delay: -10s; }
.ray:nth-child(4) { left: 62%; transform: rotate(-7deg);  animation-delay: -4s; background: linear-gradient(180deg, rgba(31, 233, 212, 0.26) 0%, rgba(31, 233, 212, 0.08) 40%, transparent 100%); }
.ray:nth-child(5) { left: 78%; transform: rotate(3deg);   animation-delay: -8s; background: linear-gradient(180deg, rgba(255, 107, 91, 0.14) 0%, rgba(255, 107, 91, 0.04) 40%, transparent 100%); }

@keyframes rayDrift {
  0%   { transform: rotate(var(--r, 5deg)) translateX(0) scaleX(1); opacity: 0.45; }
  100% { transform: rotate(calc(var(--r, 5deg) * -0.6)) translateX(40px) scaleX(1.15); opacity: 0.7; }
}

.hero-caustics {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(31, 233, 212, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(155, 125, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 90% 50%, rgba(255, 107, 91, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: causticShift 18s ease-in-out infinite;
}

@keyframes causticShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-balls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.ball {
  position: absolute;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 900;
  color: var(--abyss);
  animation: ballFloat 14s ease-in-out infinite;
  box-shadow:
    inset 0 -8px 16px rgba(0,0,0,0.25),
    inset 0 8px 14px rgba(255,255,255,0.45),
    0 0 28px var(--ball-glow, rgba(31,233,212,0.6)),
    0 35px 70px -10px rgba(0,0,0,0.7);
  transition: transform .3s ease;
}
.ball:hover {
  transform: scale(1.08) rotate(5deg);
  animation-play-state: paused;
}
.ball::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 18%;
  width: 30%;
  height: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.7), transparent 70%);
  border-radius: 50%;
}

.ball.b1 { width: 120px; height: 120px; top: 18%;  left: 8%;  background: radial-gradient(circle at 35% 30%, #6CFFEE 0%, #1FE9D4 50%, #0B8C7E 100%); --ball-glow: rgba(31,233,212,0.7); font-size: 38px;   animation-delay: -2s; filter: blur(0.4px); }
.ball.b2 { width: 80px;  height: 80px;  top: 65%;  left: 12%; background: radial-gradient(circle at 35% 30%, #FFB0A6 0%, #FF6B5B 50%, #962E22 100%); --ball-glow: rgba(255,107,91,0.6); color: #fff; font-size: 26px; animation-delay: -7s; filter: blur(0.6px) opacity(0.85); }
.ball.b3 { width: 60px;  height: 60px;  top: 28%;  right: 14%; background: radial-gradient(circle at 35% 30%, #C8B6FF 0%, #9B7DFF 50%, #4A3597 100%); --ball-glow: rgba(155,125,255,0.6); color: #fff; font-size: 20px; animation-delay: -4s; filter: blur(0.8px) opacity(0.75); }
.ball.b4 { width: 140px; height: 140px; bottom: 8%; right: 6%; background: radial-gradient(circle at 35% 30%, #FFE89E 0%, #FFCD66 50%, #9B6F12 100%); --ball-glow: rgba(255,205,102,0.6); font-size: 42px;  animation-delay: -10s; }
.ball.b5 { width: 44px;  height: 44px;  top: 12%; left: 38%; background: radial-gradient(circle at 35% 30%, #6CFFEE 0%, #1FE9D4 50%, #0B8C7E 100%); --ball-glow: rgba(31,233,212,0.5); font-size: 14px;  animation-delay: -5s; filter: blur(1.2px) opacity(0.5); }
.ball.b6 { width: 36px;  height: 36px;  bottom: 22%; left: 36%; background: radial-gradient(circle at 35% 30%, #FFB0A6 0%, #FF6B5B 50%, #962E22 100%); color: #fff; font-size: 11px; animation-delay: -3s; filter: blur(1.4px) opacity(0.45); }

@keyframes ballFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(20px, -30px) rotate(8deg); }
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(79, 255, 164, 0.12) 0%, rgba(79, 255, 164, 0.06) 100%);
  border: 1.5px solid rgba(79, 255, 164, 0.3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--live);
  margin-bottom: 32px;
  box-shadow: 0 0 20px rgba(79, 255, 164, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all .3s ease;
}
.hero-status:hover {
  border-color: rgba(79, 255, 164, 0.5);
  box-shadow: 0 0 30px rgba(79, 255, 164, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.hero-status .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 12px var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(80px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.hero-title .l1 {
  display: block;
  color: var(--ink);
  text-shadow:
    0 0 80px rgba(31,233,212,0.25),
    0 4px 8px rgba(0,0,0,0.5);
  position: relative;
}
.hero-title .l1::before {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(31,233,212,0.18) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(6px);
  filter: blur(3px);
}
.hero-title .l1::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  z-index: -2;
  background: linear-gradient(180deg, transparent 0%, rgba(31,233,212,0.12) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(14px);
  filter: blur(8px);
}
.hero-title .l2 {
  display: block;
  background: linear-gradient(180deg, var(--bio-soft) 0%, var(--bio) 40%, var(--bio-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 70px rgba(31, 233, 212, 0.8)) drop-shadow(0 0 35px rgba(31, 233, 212, 0.6)) drop-shadow(0 4px 8px rgba(0,0,0,0.7));
  font-style: italic;
  letter-spacing: -0.03em;
  animation: titleGlow 4s ease-in-out infinite;
  position: relative;
}
.hero-title .l2::after {
  content: "Bingo.";
  position: absolute;
  left: 0; top: 0;
  background: linear-gradient(180deg, var(--bio) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(24px);
  opacity: 0.7;
  z-index: -1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.04); }
}
@keyframes titleGlow {
  0%, 100% { filter: drop-shadow(0 0 60px rgba(31, 233, 212, 0.7)) drop-shadow(0 0 30px rgba(31, 233, 212, 0.5)) drop-shadow(0 4px 8px rgba(0,0,0,0.6)); }
  50% { filter: drop-shadow(0 0 80px rgba(31, 233, 212, 0.9)) drop-shadow(0 0 40px rgba(31, 233, 212, 0.7)) drop-shadow(0 4px 8px rgba(0,0,0,0.6)); }
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
  justify-content: center;
}

.hero-version {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-version .sep { color: var(--ink-5); }
.hero-version .v { color: var(--bio); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: linear-gradient(135deg, var(--hairline-2), var(--hairline));
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 880px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,233,212,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-stats .stat {
  background: linear-gradient(135deg, rgba(8, 34, 46, 0.8) 0%, rgba(4, 22, 30, 0.9) 100%);
  backdrop-filter: blur(12px);
  padding: 26px 28px;
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.hero-stats .stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(31,233,212,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.hero-stats .stat:hover::before { opacity: 1; }
.hero-stats .stat:hover {
  background: linear-gradient(135deg, rgba(14, 51, 68, 0.9) 0%, rgba(8, 34, 46, 0.95) 100%);
  transform: translateY(-4px) scale(1.02);
  z-index: 10;
  box-shadow: 0 12px 32px rgba(31,233,212,0.2);
}
.stat-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stat-value .unit { color: var(--ink-3); font-size: 0.5em; margin-left: 4px; }
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ============================================
   HERO — CARD/CHAMPION VARIANT
   ============================================ */
body[data-hero="champion"] .hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}
body[data-hero="champion"] .hero-title { font-size: clamp(64px, 8vw, 128px); }
body[data-hero="champion"] .hero-balls { display: none; }
body[data-hero="champion"] .champion-card { display: block; }

.champion-card {
  display: none;
  position: relative;
  aspect-ratio: 3/4;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, rgba(31, 233, 212, 0.15) 0%, rgba(14, 51, 68, 0.6) 40%, rgba(1, 6, 10, 0.9) 100%);
  border: 2px solid rgba(31, 233, 212, 0.35);
  padding: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(91,245,229,0.2),
    0 60px 140px -30px rgba(31, 233, 212, 0.7),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
  body[data-hero="champion"] .hero-inner { grid-template-columns: 1fr; }
  .champion-card { display: none !important; }
}

/* ============================================
   SECTION SCAFFOLD
   ============================================ */
.section {
  position: relative;
  padding: 120px var(--gutter);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 820px;
}
.section-head .eyebrow {
  color: var(--bio);
  position: relative;
  display: inline-block;
}
.section-head .eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--bio), transparent);
  opacity: 0.4;
}
.section-head h2 .accent {
  background: linear-gradient(180deg, var(--bio-soft) 0%, var(--bio) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-3) 20%, var(--hairline-3) 80%, transparent);
  margin: 0 var(--gutter);
  position: relative;
}
.divider-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bio) 50%, transparent);
  opacity: 0.3;
}

/* ============================================
   INVESTMENT CTA
   ============================================ */
.investment-cta {
  position: relative;
  padding: 0 var(--gutter) 120px;
  margin-top: -60px;
}

.investment-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 205, 102, 0.12) 0%, rgba(155, 125, 255, 0.10) 100%);
  border: 1px solid rgba(255, 205, 102, 0.25);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 205, 102, 0.15),
    0 30px 60px -20px rgba(255, 205, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.investment-card:hover {
  border-color: rgba(255, 205, 102, 0.5);
  box-shadow:
    0 0 0 2px rgba(255, 205, 102, 0.3),
    0 40px 90px -20px rgba(255, 205, 102, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.01);
}

.investment-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 205, 102, 0.2) 0%, transparent 60%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.investment-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.investment-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(255, 205, 102, 0.4));
  flex-shrink: 0;
}
.investment-text { flex: 1; }
.investment-text h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.investment-text p { font-size: 15px; color: var(--ink-2); line-height: 1.5; }

.btn-invest {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, #D9A52C 100%);
  color: var(--abyss);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all .25s;
  box-shadow:
    0 0 0 1px rgba(255, 205, 102, 0.3),
    0 8px 24px -8px rgba(255, 205, 102, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.btn-invest:hover {
  background: linear-gradient(135deg, #FFD97A 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 205, 102, 0.5),
    0 12px 32px -8px rgba(255, 205, 102, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-invest::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform .6s;
}
.btn-invest:hover::before { transform: translateX(100%); }

/* ============================================
   PLAYER DASHBOARD
   ============================================ */
.section-dashboard {
  background:
    radial-gradient(circle at 80% 50%, rgba(31, 233, 212, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(155, 125, 255, 0.05) 0%, transparent 40%);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.dashboard-copy h2 { margin-bottom: 24px; }
.dashboard-copy p { font-size: 17px; max-width: 480px; margin-bottom: 14px; }
.dashboard-copy p strong { color: var(--bio-soft); font-weight: 600; }

.dashboard-bullets {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dashboard-bullets li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.dashboard-bullets .check {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(31,233,212,0.15);
  color: var(--bio);
  font-size: 10px;
}

.profile-card {
  background: linear-gradient(135deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1.5px solid var(--hairline-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  transition: all .45s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(24px);
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(31,233,212,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(31,233,212,0.10) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.profile-card:hover::after { opacity: 1; }
.profile-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 70px 140px -20px rgba(0,0,0,0.9),
    0 0 0 1.5px rgba(31,233,212,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10);
  border-color: rgba(31,233,212,0.30);
}

.profile-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  z-index: 2;
}
.profile-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.profile-tag .bio { color: var(--bio); }
.profile-disconnect {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 10px;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-sm);
}

.profile-id {
  padding: 32px 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.profile-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bio) 0%, var(--violet) 100%);
  position: relative;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  color: var(--abyss);
  box-shadow:
    0 0 0 3px var(--gold),
    0 0 0 5px rgba(255,205,102,0.3),
    0 0 30px rgba(31,233,212,0.5);
  transition: all .3s ease;
  overflow: hidden;
}
.profile-card:hover .profile-avatar {
  transform: scale(1.08) rotate(5deg);
  box-shadow:
    0 0 0 3px var(--gold),
    0 0 0 6px rgba(255,205,102,0.5),
    0 0 40px rgba(31,233,212,0.7);
}
.profile-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.profile-name .domain { color: var(--bio); }
.profile-addr {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  margin-top: 8px;
  position: relative; z-index: 2;
}
.profile-stat {
  padding: 22px 28px;
  background: rgba(10, 31, 42, 0.6);
}
.profile-stat-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.profile-stat-value.bio { color: var(--bio); }
.profile-stat-value.coral { color: var(--coral); }
.profile-stat-value.gold { color: var(--gold); }
.profile-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

.profile-genesis {
  margin: 20px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255, 205, 102, 0.12) 0%, rgba(255, 107, 91, 0.08) 100%);
  border: 1px solid rgba(255, 205, 102, 0.25);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative; z-index: 2;
}
.profile-genesis .gem {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--gold), #C8860D);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--abyss);
  flex-shrink: 0;
}
.profile-genesis .title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.profile-genesis .desc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

.profile-foot {
  padding: 20px 28px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  position: relative; z-index: 2;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: linear-gradient(135deg, var(--hairline-2), var(--hairline));
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature {
  background: linear-gradient(135deg, rgba(14, 51, 68, 0.5) 0%, rgba(4, 22, 30, 0.8) 100%);
  backdrop-filter: blur(12px);
  padding: 48px 36px;
  position: relative;
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bio), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(31,233,212,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.feature:hover::before { opacity: 0.4; }
.feature:hover::after { opacity: 1; }
.feature:hover {
  background: linear-gradient(135deg, rgba(14, 51, 68, 0.8) 0%, rgba(4, 22, 30, 0.95) 100%);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31,233,212,0.15);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(31, 233, 212, 0.15) 0%, rgba(31, 233, 212, 0.08) 100%);
  border: 1.5px solid rgba(31, 233, 212, 0.30);
  display: grid; place-items: center;
  color: var(--bio);
  margin-bottom: 28px;
  transition: all .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 26px;
}
.feature:hover .feature-icon {
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg, rgba(31, 233, 212, 0.22) 0%, rgba(31, 233, 212, 0.12) 100%);
  border-color: rgba(31, 233, 212, 0.5);
  box-shadow: 0 12px 32px rgba(31,233,212,0.4);
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-4);
}

.feature h3 { font-size: 22px; margin-bottom: 12px; letter-spacing: 0.01em; }
.feature p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }

/* ============================================
   GAME MODES
   ============================================ */
.section-modes {
  background: linear-gradient(180deg, var(--abyss) 0%, #021018 50%, var(--abyss) 100%);
  position: relative;
  overflow: hidden;
}
.section-modes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(31,233,212,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(155,125,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.mode-card {
  position: relative;
  aspect-ratio: 3/4.2;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--panel-2) 0%, var(--abyss) 100%);
  border: 1.5px solid var(--hairline-2);
  padding: 28px 24px;
  overflow: hidden;
  transition: all .5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}
.mode-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--mode-glow, rgba(31,233,212,0.18)) 0%, transparent 60%);
  opacity: 0.7;
  transition: opacity .3s;
}
.mode-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, var(--mode-glow, rgba(31,233,212,0.15)) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s;
}
.mode-card:hover::after { opacity: 1; }
.mode-card:hover::before { opacity: 1; }
.mode-card:hover {
  transform: translateY(-12px) scale(1.04);
  border-color: var(--mode-color, var(--bio));
  box-shadow:
    0 45px 90px -20px var(--mode-glow, rgba(31,233,212,0.7)),
    0 0 0 1.5px var(--mode-color, var(--bio)),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.mode-glyph {
  position: relative;
  z-index: 2;
  width: 70px; height: 70px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--mode-bright, #6CFFEE), var(--mode-color, #1FE9D4) 50%, color-mix(in srgb, var(--mode-color, #1FE9D4) 50%, #000) 100%);
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: var(--abyss);
  box-shadow:
    inset 0 -8px 12px rgba(0,0,0,0.3),
    inset 0 6px 10px rgba(255,255,255,0.45),
    0 0 30px var(--mode-glow, rgba(31,233,212,0.4));
  transition: all .3s ease;
}
.mode-card:hover .mode-glyph {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    inset 0 -8px 12px rgba(0,0,0,0.3),
    inset 0 6px 10px rgba(255,255,255,0.45),
    0 0 45px var(--mode-glow, rgba(31,233,212,0.6));
}
.mode-info { position: relative; z-index: 2; }
.mode-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.mode-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 10px;
  color: var(--ink);
}
.mode-name .glyph { color: var(--mode-color, var(--bio)); font-style: italic; }
.mode-desc { font-size: 12px; color: var(--ink-3); line-height: 1.5; }
.mode-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  color: var(--ink-3);
  border: 1px solid var(--hairline);
}

/* ============================================
   DOWNLOAD / BETA
   ============================================ */
.download-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--panel-2) 0%, var(--panel) 100%);
  border: 1.5px solid var(--hairline-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  transition: all .4s ease;
  backdrop-filter: blur(20px);
}
.download-grid:hover {
  box-shadow:
    0 80px 160px -30px rgba(0,0,0,0.9),
    0 0 0 1px rgba(31,233,212,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(31,233,212,0.25);
  transform: translateY(-4px);
}
.download-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 100%, rgba(31,233,212,0.18) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(155,125,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.download-main {
  padding: 56px 48px;
  position: relative;
  z-index: 2;
}
.download-main h2 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; }
.download-main p { font-size: 16px; color: var(--ink-2); margin-bottom: 32px; max-width: 460px; }

.download-meta {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.download-meta .item { padding-right: 28px; }
.download-meta .item:not(:last-child) {
  border-right: 1px solid var(--hairline);
  margin-right: 28px;
}
.download-meta .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.download-meta .l {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
}

.download-side {
  padding: 56px 48px;
  background: rgba(1, 6, 10, 0.5);
  position: relative; z-index: 2;
  border-left: 1px solid var(--hairline);
}
.download-side .eyebrow { color: var(--coral); margin-bottom: 16px; }
.download-side h3 { font-size: 24px; margin-bottom: 12px; }
.download-side p { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }

.code-input {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.code-input input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline-2);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-radius: var(--r-md);
  outline: none;
}
.code-input input:focus { border-color: var(--bio); box-shadow: 0 0 0 3px rgba(31,233,212,0.15); }
.code-input button {
  padding: 14px 18px;
  background: var(--coral);
  color: var(--abyss);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--r-md);
  cursor: pointer;
}

.connect-wallet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--hairline-2);
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all .2s;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}
.connect-wallet:hover { border-color: var(--bio); color: var(--bio); }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-10px); }
  40%      { transform: translateX(10px); }
  60%      { transform: translateX(-7px); }
  80%      { transform: translateX(7px); }
}
.download-side.shake {
  animation: shake 0.55s ease;
  outline: 1px solid var(--coral);
  outline-offset: -1px;
}

#downloadBtn.locked {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.3);
}
#downloadBtn.locked:hover {
  transform: none;
  box-shadow:
    0 0 0 1px rgba(31,233,212,0.3),
    0 12px 40px -10px rgba(31,233,212,0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ============================================
   CHANGELOG
   ============================================ */
.changelog-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
}

.changelog-rail {
  position: sticky;
  top: 100px;
  align-self: start;
}

.cl-entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.cl-entry:first-child { border-top: 0; padding-top: 0; }

.cl-meta .ver {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cl-meta .ver.current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cl-meta .ver .now {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--abyss);
  background: var(--bio);
  padding: 3px 7px;
  border-radius: var(--r-sm);
}
.cl-meta .date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 6px;
}
.cl-meta .build {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}

.cl-items { display: flex; flex-direction: column; gap: 10px; }
.cl-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
  padding: 6px 0;
}
.cl-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  text-align: center;
  align-self: start;
  transition: all .3s ease;
}
.cl-tag:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.cl-tag.feature { background: rgba(31,233,212,0.12); color: var(--bio); border: 1px solid rgba(31,233,212,0.25); }
.cl-tag.fix { background: rgba(255,205,102,0.10); color: var(--gold); border: 1px solid rgba(255,205,102,0.22); }
.cl-tag.security { background: rgba(255,107,91,0.10); color: var(--coral-bright); border: 1px solid rgba(255,107,91,0.22); }
.cl-tag.ux { background: rgba(155,125,255,0.10); color: var(--violet); border: 1px solid rgba(155,125,255,0.22); }
.cl-text { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.cl-text strong { color: var(--ink); font-weight: 600; }
.cl-tag.polish { background: rgba(155,125,255,0.10); color: var(--violet); border: 1px solid rgba(155,125,255,0.22); }
.cl-tag.improvement { background: rgba(255,205,102,0.08); color: var(--gold); border: 1px solid rgba(255,205,102,0.18); }

/* ── Changelog gate & lock ─────────────────────────────── */
.cl-locked {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.cl-locked.cl-revealed {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.cl-gate {
  border-top: 1px solid var(--hairline);
  padding: 40px 0 36px;
  text-align: center;
}
.cl-gate-lock {
  font-size: 32px; margin-bottom: 14px; line-height: 1;
}
.cl-gate-count {
  font-family: var(--display); font-weight: 800;
  font-size: 28px; color: var(--ink); margin-bottom: 8px;
}
.cl-gate-sub {
  font-size: 13px; color: var(--ink-3); line-height: 1.6;
  max-width: 380px; margin: 0 auto 24px;
}
.cl-gate-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.cl-gate-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r-md);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  transition: all .2s; border: none;
}
.cl-gate-wallet {
  background: var(--bio); color: #01060A;
}
.cl-gate-wallet:hover { opacity: 0.85; }
.cl-gate-wallet:disabled { opacity: 0.5; cursor: not-allowed; }
.cl-gate-code {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: var(--ink-2);
}
.cl-gate-code:hover { border-color: rgba(255,255,255,0.25) !important; color: var(--ink); }

.cl-gate-code-row {
  display: flex; align-items: center; gap: 10px;
  max-width: 340px; margin: 0 auto;
}
.cl-gate-input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(160,220,240,0.16); border-radius: var(--r-md);
  padding: 11px 14px; color: var(--ink); font-family: var(--mono);
  font-size: 13px; outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.cl-gate-input:focus { border-color: var(--bio); box-shadow: 0 0 0 3px rgba(31,233,212,0.08); }
.cl-gate-input::placeholder { color: var(--ink-5); }
.cl-gate-submit {
  padding: 11px 18px; background: var(--bio); color: #01060A;
  border: none; border-radius: var(--r-md); font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; transition: opacity .2s; white-space: nowrap;
}
.cl-gate-submit:hover { opacity: 0.85; }
.cl-gate-submit:disabled { opacity: 0.45; cursor: not-allowed; }
.cl-gate-msg {
  margin-top: 12px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.cl-gate-msg.ok  { color: var(--bio); }
.cl-gate-msg.err { color: var(--coral); }

.cl-more {
  margin-top: 40px;
  text-align: center;
}
.cl-more a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bio);
  padding: 14px 24px;
  border: 1px solid rgba(31,233,212,0.3);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .2s;
}
.cl-more a:hover { background: rgba(31,233,212,0.06); border-color: var(--bio); }

.cl-show-more {
  display: block;
  width: 100%;
  margin: 8px 0 0;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid rgba(31,233,212,0.2);
  border-radius: var(--r-md);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.cl-show-more:hover {
  border-color: rgba(31,233,212,0.5);
  color: var(--bio);
  background: rgba(31,233,212,0.04);
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
  border-top: 1px solid var(--hairline-2);
  padding: 60px var(--gutter) 40px;
  background: var(--abyss);
}
.foot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto 40px;
}
.foot-brand-text {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.85;
  display: flex;
  flex-direction: column;
}
.foot-beach { color: var(--ink); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.foot-bingo {
  background: linear-gradient(180deg, var(--bio-soft) 0%, var(--bio) 50%, var(--bio-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 0 20px rgba(31, 233, 212, 0.4));
}
.foot-links { display: flex; gap: 40px; flex-wrap: wrap; }
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}
.foot-col .h {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.foot-col a { font-size: 13px; color: var(--ink-2); }
.foot-col a:hover { color: var(--bio); }

.foot-bot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.foot-bot .accent { color: var(--bio); }

/* ============================================
   ICONS
   ============================================ */
.icon-stroke { stroke: currentColor; stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .dashboard-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .changelog-grid { grid-template-columns: 1fr; gap: 30px; }
  .changelog-rail { position: static; }
  .cl-entry { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 1100px) {
  .modes-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { font-size: 10px; padding: 8px 14px; }
  .nav-logo-img { height: 34px; }
  .hero { padding: 110px var(--gutter) 56px; min-height: auto; }
  .hero-title { font-size: clamp(48px, 14vw, 96px); margin-bottom: 20px; }
  .hero-sub { font-size: 17px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
  .btn { width: 100%; justify-content: center; padding: 14px 24px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .hero-stats .stat { padding: 20px 16px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  h2 { font-size: clamp(40px, 10vw, 72px); padding-bottom: 16px; }
  .download-grid { grid-template-columns: 1fr; }
  .download-side { border-left: 0; border-top: 1px solid var(--hairline); }
  .download-main { padding: 28px 24px; }
  .download-side { padding: 28px 24px; }
  .download-meta { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .investment-card { padding: 28px 20px; }
  .investment-content { flex-direction: column; gap: 20px; }
  .foot { padding: 56px var(--gutter) 32px; }
  .foot-top { gap: 40px; padding-bottom: 32px; }
}

@media (max-width: 720px) {
  .modes-grid { grid-template-columns: repeat(2, 1fr); }
  .download-meta { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 620px) {
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav { padding: 12px var(--gutter); }
  .nav-logo-img { height: 30px; }
  .nav-cta { font-size: 9px; padding: 7px 12px; }
  .hero { padding: 96px 20px 48px; }
  .hero-title { font-size: clamp(40px, 12vw, 72px); }
  .hero-sub { font-size: 15px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  h2 { font-size: clamp(32px, 10vw, 56px); }
  .download-meta { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .download-main { padding: 24px 20px; }
  .download-side { padding: 24px 20px; }
  .modes-grid { grid-template-columns: 1fr; gap: 12px; }
  .mode-card { aspect-ratio: auto; padding: 24px 20px; }
  .mode-glyph { width: 52px; height: 52px; font-size: 22px; }
  .foot { padding: 48px var(--gutter) 28px; }
  .foot-links { flex-direction: column; gap: 28px; }
  .investment-cta { padding: 0 var(--gutter) 56px; }
}

@media (hover: none) and (pointer: coarse) {
  .btn:active { transform: scale(0.96); }
  .feature:active { transform: scale(0.98); }
  .mode-card:active { transform: scale(0.98); }
}

/* ============================================
   SECTION: APP SCREENSHOTS SHOWCASE
   ============================================ */

.section-screens {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

.section-screens::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 50%, rgba(14,51,68,0.45) 0%, transparent 100%);
  pointer-events: none;
}

/* Ambient color bloom behind stage */
.scr-bg-glow {
  position: absolute;
  width: 800px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: background 0.7s ease, opacity 0.7s ease;
}

.section-screens .container { position: relative; z-index: 1; }

/* Centered heading override */
.scr-centered-head {
  text-align: center;
  align-items: center;
  margin-bottom: 48px;
}
.scr-centered-head h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ── TABS ──────────────────────────────────── */
.scr-theme-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.scr-theme-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.13);
  background: transparent;
  color: var(--ink-4, rgba(255,255,255,0.35));
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.scr-theme-pill.active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: var(--ink, #fff);
}
.scr-theme-pill:hover:not(.active) {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}

.scr-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.scrtab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--hairline-2);
  background: transparent;
  color: var(--ink-4);
  cursor: pointer;
  transition: all 0.22s ease;
  outline: none;
}
.scrtab:hover:not(.active) {
  border-color: var(--hairline-3);
  color: var(--ink-2);
  background: rgba(255,255,255,0.03);
}
.scrtab.active {
  background: rgba(31,233,212,0.07);
  border-color: rgba(31,233,212,0.35);
  color: var(--bio);
  box-shadow: 0 0 14px rgba(31,233,212,0.1);
}

/* ── STAGE ─────────────────────────────────── */
.scr-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 0 24px;
}

/* Ghost side screens */
.scr-ghost {
  flex-shrink: 0;
  opacity: 0.18;
  filter: blur(1.5px) saturate(0.5);
  cursor: pointer;
  transition: opacity 0.35s ease, filter 0.35s ease;
}
.scr-ghost:hover {
  opacity: 0.34;
  filter: blur(0px) saturate(0.8);
}

/* Main screen wrap */
.scr-main-wrap {
  position: relative;
  flex-shrink: 0;
}

/* Ambient halo */
.scr-halo {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  transition: background 0.65s ease;
}

/* Shared window base */
.scr-window {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: #EDE8E2; /* fallback matches phone cream bg */
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.09),
    0 6px 28px rgba(0,0,0,0.45),
    0 24px 72px rgba(0,0,0,0.55);
}
.scr-window::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.04) 0%,
    transparent 5%,
    transparent 87%,
    rgba(0,0,0,0.1) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/*
 * Crop values — screenshots are 502 × 1035 px (full-bleed portrait phone).
 * No horizontal offset — image fills container width exactly.
 * Clip only the home indicator at the very bottom.
 *
 * Main (280px wide):  scale = 280/502 = 0.5578
 *   bg-size: 100% auto  →  displayed height = 577px
 *   bg-pos:  0 0  →  show from top, crops home indicator
 *   height:  545px  (nav bar bottom at ~540px scaled)
 *
 * Ghost (160px wide): scale = 160/502 = 0.3187
 *   bg-size: 100% auto  →  displayed height = 330px
 *   height:  310px
 */
.scr-lg {
  width: 280px;
  height: 545px;
  background-size: 100% auto;
  background-position: 0 0;
}

.scr-sm {
  width: 160px;
  height: 310px;
  background-size: 100% auto;
  background-position: 0 0;
  border-radius: 12px;
}

/* Entrance animation for active screen swap */
@keyframes scrSlideIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.scr-anim {
  animation: scrSlideIn 0.42s cubic-bezier(0.34, 1.12, 0.64, 1) forwards;
}

/* ── DOTS ──────────────────────────────────── */
.scr-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 28px;
}

.sdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--ink-5);
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  padding: 0;
  outline: none;
}
.sdot.sdot-on {
  background: var(--bio);
  width: 28px;
  border-radius: 3.5px;
  box-shadow: 0 0 10px rgba(31,233,212,0.45);
}

/* ── META INFO ─────────────────────────────── */
.scr-meta {
  text-align: center;
  margin-top: 28px;
}

.scr-meta-label {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 7px;
  transition: opacity 0.18s ease;
}

.scr-meta-desc {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-3);
  max-width: 320px;
  margin: 0 auto;
  transition: opacity 0.18s ease;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 720px) {
  .scr-ghost { display: none; }
  .scr-stage { padding: 16px 0 12px; gap: 0; }
  .section-screens { padding: 72px 0 52px; }
}

@media (max-width: 380px) {
  .scr-lg {
    width: 240px;
    height: 467px;
    background-size: 100% auto;
    background-position: 0 0;
  }
}
