/* ============================================================
   GTA6ify — design system v2 (cinematic Vice City)
   Palette: night #0B0E16 · surface #141826 · magenta #FF3D7F
            teal #2FE0C4 · amber #FFB93D · coral #FF6B4A
   Patterns borrowed from 21st.dev: spotlight card, container
   scroll animation (trailer frame), scroll-expanding media hero.
   ============================================================ */
:root {
  --night: #0B0E16;
  --night-2: #070910;
  --surface: #141826;
  --surface-2: #1B2033;
  --magenta: #FF3D7F;
  --teal: #2FE0C4;
  --amber: #FFB93D;
  --coral: #FF6B4A;
  --violet: #7C4DFF;
  --text: #F4F3EF;
  --muted: #8B92A8;
  --line: rgba(244, 243, 239, 0.09);
  --display: 'Chakra Petch', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --body: 'Inter', sans-serif;
  --r: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--night);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}
/* film grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--magenta); color: var(--night); }
a { color: var(--magenta); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============ NAV ============ */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(11,14,22,0.92), rgba(11,14,22,0.7));
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; gap: 1rem; }
.logo {
  font-family: var(--display); font-weight: 700; font-size: 1.3rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
  text-decoration: none; white-space: nowrap; display: flex; align-items: center; gap: 0.5rem;
}
.logo em { color: var(--magenta); font-style: normal; text-shadow: 0 0 18px rgba(255,61,127,0.6); }
.logo .mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: conic-gradient(from 200deg, var(--amber), var(--coral), var(--magenta), var(--violet), var(--amber));
  box-shadow: 0 0 16px rgba(255,61,127,0.5);
  position: relative;
}
.logo .mark::after { content:''; position:absolute; inset:7px; border-radius:50%; background: var(--night); }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a:not(.btn) { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; position: relative; }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a.active { color: var(--teal); }
.nav-links a.live-link::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta); margin-right: 0.4rem; box-shadow: 0 0 8px var(--magenta);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (max-width: 900px) { .nav-links a:not(.btn):not(.active):not(.live-link) { display: none; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; font-size: 0.9rem; padding: 0.9rem 1.7rem; border-radius: 6px;
  border: 1px solid transparent; cursor: pointer; color: var(--text); background: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative; overflow: hidden;
}
.btn-primary { background: linear-gradient(135deg, var(--magenta), var(--coral)); color: var(--night); box-shadow: 0 0 0 rgba(255,61,127,0); }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,61,127,0.45); transform: translateY(-2px); }
.btn-ghost { background: rgba(244,243,239,0.03); border-color: rgba(244,243,239,0.2); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); box-shadow: 0 0 20px rgba(47,224,196,0.2); }
.btn-amber { background: linear-gradient(135deg, var(--amber), #FF8F3D); color: var(--night); }
.btn-amber:hover { box-shadow: 0 8px 30px rgba(255,185,61,0.45); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--night); }
.btn-teal:hover { box-shadow: 0 8px 30px rgba(47,224,196,0.45); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ============ TYPE ============ */
.kicker {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 0.6rem;
}
.kicker::before { content: ''; width: 22px; height: 1px; background: currentColor; opacity: 0.7; }
.kicker.m { color: var(--magenta); }
.kicker.a { color: var(--amber); }
h1, h2, h3 { font-family: var(--display); text-transform: uppercase; line-height: 1.05; }
.h-xl { font-weight: 700; font-size: clamp(2.6rem, 6.6vw, 5.2rem); letter-spacing: -0.01em; }
.h-lg { font-weight: 700; font-size: clamp(2rem, 4.8vw, 3.4rem); }
.h-md { font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.grad-text {
  background: linear-gradient(90deg, var(--magenta), var(--coral) 45%, var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--muted); font-size: 1.12rem; max-width: 56ch; }
section { padding: clamp(4rem, 10vh, 7.5rem) 0; position: relative; }
.section-head { margin-bottom: 2.8rem; max-width: 760px; }
.section-head p { margin-top: 1rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .kicker { justify-content: center; }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; } .reveal.d2 { transition-delay: 0.2s; } .reveal.d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(20,24,38,0.6); overflow: hidden; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--night), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--night), transparent); }
.ticker-track { display: flex; gap: 3rem; width: max-content; padding: 0.8rem 0; animation: marquee 40s linear infinite; }
.ticker-track span { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ticker-track span b { color: var(--teal); font-weight: 700; }
.ticker-track span i { color: var(--magenta); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ============ HERO (cinematic) ============ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(4rem, 9vh, 7rem); overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 30%; transform: scale(1.04); animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.04) translateX(0); } to { transform: scale(1.12) translateX(-1.5%); } }
@media (prefers-reduced-motion: reduce) { .hero-bg img { animation: none; } }
.hero-shade {
  position: absolute; inset: -4px; z-index: -2;
  background:
    linear-gradient(90deg, rgba(11,14,22,0.96) 0%, rgba(11,14,22,0.88) 34%, rgba(11,14,22,0.45) 58%, rgba(11,14,22,0.08) 100%),
    linear-gradient(180deg, rgba(11,14,22,0.55) 0%, rgba(11,14,22,0) 30%, rgba(11,14,22,0.35) 70%, var(--night) 94%);
}
.hero-grid {
  position: absolute; left: -10%; right: -10%; bottom: -2px; height: 34%; z-index: -1;
  background-image:
    linear-gradient(rgba(47,224,196,0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,61,127,0.28) 1px, transparent 1px);
  background-size: 100% 44px, 80px 100%;
  transform: perspective(600px) rotateX(64deg);
  transform-origin: top; opacity: 0.55;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, #000 85%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 40%, #000 85%, transparent);
  animation: gridmove 6s linear infinite;
}
@keyframes gridmove { from { background-position: 0 0, 0 0; } to { background-position: 0 44px, 0 0; } }
@media (prefers-reduced-motion: reduce) { .hero-grid { animation: none; } }
.hero-inner { max-width: 900px; }
.hero .sub { margin-top: 1.5rem; color: rgba(244,243,239,0.92); font-weight: 500; text-shadow: 0 1px 2px rgba(11,14,22,0.9), 0 2px 18px rgba(11,14,22,0.85); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.2rem; }
.badge {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(11,14,22,0.55); color: var(--muted); backdrop-filter: blur(6px);
}
.badge.t { color: var(--teal); border-color: rgba(47,224,196,0.4); }
.badge.m { color: var(--magenta); border-color: rgba(255,61,127,0.4); }
.badge.a { color: var(--amber); border-color: rgba(255,185,61,0.4); }
.hero-disclaimer { margin-top: 1.4rem; font-size: 0.82rem; color: var(--muted); max-width: 54ch; }

/* ============ COUNTDOWN ============ */
.countdown {
  margin-top: 2.4rem; display: inline-block; padding: 1.3rem 1.5rem 1.1rem;
  background: rgba(11,14,22,0.6); border: 1px solid rgba(47,224,196,0.25); border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 60px rgba(255,61,127,0.12), inset 0 0 30px rgba(11,14,22,0.8);
}
.countdown-label {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.8rem; display: flex; justify-content: space-between; gap: 2rem;
}
.countdown-label .live-dot { color: var(--magenta); animation: pulse 1.6s infinite; }
.countdown-grid { display: flex; gap: clamp(0.5rem, 2vw, 1rem); align-items: flex-start; }
.cd-unit { text-align: center; }
.cd-digits { display: flex; gap: 4px; }
.cd-flap {
  position: relative; font-family: var(--mono); font-weight: 700; font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  line-height: 1; color: var(--magenta);
  background: linear-gradient(180deg, #1B2033 0%, #10141F 48%, #0B0E18 52%, #141826 100%);
  border: 1px solid rgba(255,61,127,0.2); border-radius: 6px; padding: 0.45em 0.28em; min-width: 1.35em;
  text-shadow: 0 0 16px rgba(255,61,127,0.6); overflow: hidden;
}
.cd-flap::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(11,14,22,0.9); }
.cd-flap.flip { animation: flapTick 0.35s ease; }
@keyframes flapTick { 0% { transform: rotateX(0); } 45% { transform: rotateX(-78deg); filter: brightness(1.6); } 100% { transform: rotateX(0); } }
@media (prefers-reduced-motion: reduce) { .cd-flap.flip { animation: none; } }
.cd-caption { margin-top: 0.5rem; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.cd-sep { font-family: var(--mono); font-size: clamp(1.4rem, 3.2vw, 2.1rem); color: rgba(139,146,168,0.5); padding-top: 0.5em; }

/* ============ GLASS + SPOTLIGHT CARDS ============ */
.glass {
  position: relative; background: rgba(20,24,38,0.65); border-radius: var(--r);
  border: 1px solid var(--line); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
.glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,61,127,0.35), rgba(47,224,196,0.05) 40%, rgba(255,185,61,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.7;
}
.spot { position: relative; }
.spot::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(47,224,196,0.14), transparent 45%);
  transition: opacity 0.25s ease;
}
.spot:hover::after { opacity: 1; }
.card { padding: 1.6rem; }
.card h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.03em; }
.card p { color: var(--muted); font-size: 0.93rem; margin-top: 0.5rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.flip-order > :first-child { order: 2; } }

/* ============ BENTO (what you get) ============ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.bento > * { padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
.b-2 { grid-column: span 2; } .b-3 { grid-column: span 3; } .b-4 { grid-column: span 4; } .b-6 { grid-column: span 6; }
.r-2 { grid-row: span 2; }
@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } .b-2, .b-3, .b-4, .b-6 { grid-column: span 2; } .r-2 { grid-row: span 1; } .bento > .r-2 { min-height: 260px; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; grid-auto-rows: auto; } .b-2, .b-3, .b-4, .b-6 { grid-column: span 1; } .bento > * { min-height: 180px; } }
.bento .ico {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  margin-bottom: auto; font-size: 1.2rem; background: rgba(47,224,196,0.1); border: 1px solid rgba(47,224,196,0.3); color: var(--teal);
}
.bento .ico.m { background: rgba(255,61,127,0.1); border-color: rgba(255,61,127,0.35); color: var(--magenta); }
.bento .ico.a { background: rgba(255,185,61,0.1); border-color: rgba(255,185,61,0.35); color: var(--amber); }
.bento h3 { font-size: 1.1rem; }
.bento p { color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem; }
.bento .tier-tag { position: absolute; top: 1rem; right: 1rem; }
.bento .bg-img { position: absolute; inset: 0; z-index: -1; }
.bento .bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.bento .bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,14,22,0.1), rgba(11,14,22,0.92)); }
.tier-tag {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.28rem 0.55rem; border-radius: 4px; border: 1px solid; display: inline-block;
}
.tier-tag.free { color: var(--teal); border-color: rgba(47,224,196,0.5); background: rgba(47,224,196,0.08); }
.tier-tag.insider { color: var(--magenta); border-color: rgba(255,61,127,0.5); background: rgba(255,61,127,0.08); }
.tier-tag.vip { color: var(--amber); border-color: rgba(255,185,61,0.5); background: rgba(255,185,61,0.08); }

/* ============ TRAILER "TV" FRAME (container scroll animation) ============ */
.tv-stage { perspective: 1400px; }
.tv-frame {
  position: relative; border-radius: 18px; padding: 10px;
  background: linear-gradient(135deg, rgba(255,61,127,0.5), rgba(47,224,196,0.35), rgba(255,185,61,0.45));
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 80px rgba(255,61,127,0.18);
  transform: rotateX(var(--tilt, 14deg)) scale(var(--tscale, 0.94));
  transform-origin: center top; transition: transform 0.12s linear;
}
@media (prefers-reduced-motion: reduce) { .tv-frame { transform: none !important; } }
.tv-screen { position: relative; aspect-ratio: 16/9; background: var(--night-2); border-radius: 12px; overflow: hidden; }
.tv-screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tv-screen .placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 2rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,61,127,0.18), transparent 60%);
}
.tv-screen .placeholder p { color: var(--muted); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; }
.tv-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.tv-bar button {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem;
  color: var(--muted); background: rgba(20,24,38,0.7); border: 1px solid var(--line); border-radius: 8px;
  padding: 0.65rem 1rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
}
.tv-bar button.on { color: var(--text); border-color: var(--magenta); box-shadow: 0 0 18px rgba(255,61,127,0.3); }
.tv-bar button span { font-family: var(--mono); font-size: 0.6rem; color: var(--teal); letter-spacing: 0.15em; }

/* ============ TWITCH ============ */
.twitch-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 1rem; }
@media (max-width: 980px) { .twitch-wrap { grid-template-columns: 1fr; } }
.twitch-player { aspect-ratio: 16/9; background: var(--night-2); border-radius: 12px; overflow: hidden; position: relative; }
.twitch-player iframe, .twitch-chat iframe { width: 100%; height: 100%; border: 0; }
.twitch-chat { min-height: 420px; border-radius: 12px; overflow: hidden; background: var(--night-2); }
.offline {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; gap: 0.8rem;
  background: radial-gradient(ellipse at 50% 40%, rgba(124,77,255,0.25), transparent 60%), var(--night-2);
}
.offline .big { font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.offline p { color: var(--muted); font-size: 0.9rem; max-width: 40ch; }
.live-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); background: var(--magenta);
  padding: 0.35rem 0.8rem; border-radius: 4px;
}
.live-pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.2s infinite; }
.schedule { display: grid; gap: 0.7rem; }
.schedule .row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1rem; border-radius: 10px; background: rgba(20,24,38,0.7); border: 1px solid var(--line); }
.schedule .row b { font-family: var(--display); font-size: 0.95rem; text-transform: uppercase; }
.schedule .row span { font-family: var(--mono); font-size: 0.72rem; color: var(--teal); letter-spacing: 0.12em; }

/* ============ VIDEO CARDS ============ */
.video-card { display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none; color: inherit; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.video-thumb { aspect-ratio: 16/9; position: relative; background: var(--surface-2); overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.06); }
.video-thumb::after {
  content: '▶'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.1rem;
  color: var(--night); pointer-events: none;
}
.video-thumb .play {
  position: absolute; left: 50%; top: 50%; width: 54px; height: 54px; transform: translate(-50%, -50%);
  border-radius: 50%; background: rgba(255,61,127,0.9); box-shadow: 0 0 30px rgba(255,61,127,0.6);
}
.video-thumb .dur { position: absolute; right: 0.6rem; bottom: 0.6rem; font-family: var(--mono); font-size: 0.65rem; background: rgba(11,14,22,0.85); padding: 0.2rem 0.45rem; border-radius: 4px; }
.vt-news { background: linear-gradient(135deg, var(--magenta), var(--coral)); }
.vt-guides { background: linear-gradient(135deg, var(--teal), #157A6A); }
.vt-comm { background: linear-gradient(135deg, var(--amber), var(--coral)); }
.vt-stream { background: linear-gradient(135deg, var(--violet), var(--magenta)); }
.vc-body { padding: 1rem 1.15rem 1.2rem; }
.vc-body h3 { font-size: 0.98rem; font-weight: 600; line-height: 1.35; text-transform: none; }
.vc-body p { font-size: 0.84rem; color: var(--muted); margin-top: 0.35rem; }
.vc-meta { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.55rem; flex-wrap: wrap; }

/* tabs */
.tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.tabs button {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem;
  color: var(--muted); background: rgba(20,24,38,0.7); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.6rem 1.1rem; cursor: pointer;
}
.tabs button.on { color: var(--night); background: var(--teal); border-color: var(--teal); }
.tab-panel { display: none; } .tab-panel.on { display: block; }

/* ============ TIERS v2 ============ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: end; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; align-items: stretch; } }
.tier { padding: 1.9rem 1.7rem; display: flex; flex-direction: column; transition: transform 0.2s ease; }
.tier:hover { transform: translateY(-5px); }
.tier .lvl { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.tier .lvl .bar { display: flex; gap: 3px; }
.tier .lvl .bar i { width: 14px; height: 6px; border-radius: 2px; background: rgba(139,146,168,0.25); }
.tier h3 { font-size: 1.6rem; margin-top: 0.8rem; }
.tier .price { font-family: var(--mono); font-size: 2.3rem; margin: 0.6rem 0 0.2rem; line-height: 1; }
.tier .price small { font-size: 0.8rem; color: var(--muted); }
.tier .tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.3rem; }
.tier ul { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.8rem; flex: 1; }
.tier li { font-size: 0.92rem; color: var(--muted); padding-left: 1.6rem; position: relative; }
.tier li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; }
.tier li.dim { opacity: 0.45; } .tier li.dim::before { content: '–'; }
.tier li b { color: var(--text); font-weight: 600; }
.tier-free { min-height: 400px; }
.tier-free li::before { color: var(--teal); }
.tier-free .bar i:nth-child(1) { background: var(--teal); }
.tier-insider { min-height: 470px; }
.tier-insider::before { background: linear-gradient(135deg, rgba(255,61,127,0.9), rgba(255,107,74,0.3), rgba(255,61,127,0.6)); opacity: 1; }
.tier-insider li::before, .tier-insider .price { color: var(--magenta); }
.tier-insider .bar i:nth-child(-n+2) { background: var(--magenta); }
.tier-insider { box-shadow: 0 0 60px rgba(255,61,127,0.14); }
.tier-vip { min-height: 540px; box-shadow: 0 0 70px rgba(255,185,61,0.16); }
.tier-vip::before { background: linear-gradient(135deg, rgba(255,185,61,0.9), rgba(255,107,74,0.35), rgba(255,185,61,0.7)); opacity: 1; background-size: 200% 200%; animation: shimmer 4s linear infinite; }
@keyframes shimmer { 0% { background-position: 0% 0%; } 100% { background-position: 200% 200%; } }
.tier-vip li::before, .tier-vip .price { color: var(--amber); }
.tier-vip .bar i { background: var(--amber); }
.tier .ribbon {
  position: absolute; top: 1.1rem; right: -2.2rem; transform: rotate(38deg); font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 3rem; color: var(--night);
}
.tier-insider .ribbon { background: var(--magenta); }
.tier-vip .ribbon { background: var(--amber); }
@media (max-width: 900px) { .tier-free, .tier-insider, .tier-vip { min-height: 0; } }

/* comparison */
.compare-scroll { overflow-x: auto; border-radius: var(--r); }
table.compare { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 0.92rem; }
.compare th, .compare td { padding: 0.9rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare th { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; background: rgba(20,24,38,0.9); }
.compare td:first-child, .compare th:first-child { text-align: left; }
.compare td:first-child { color: var(--text); }
.compare .grp td { background: rgba(47,224,196,0.05); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); }
.compare .yes-m { color: var(--magenta); } .compare .yes-t { color: var(--teal); } .compare .yes-a { color: var(--amber); }
.compare .no { color: rgba(139,146,168,0.4); }

/* ============ VAULT ============ */
.lockgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .lockgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lockgrid { grid-template-columns: 1fr; } }
.lock { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; min-height: 190px; }
.lock .code {
  font-family: var(--mono); font-size: 1.1rem; letter-spacing: 0.14em; color: var(--text);
  filter: blur(6px); user-select: none; transition: filter 0.3s ease;
}
.lock:hover .code { filter: blur(4px); }
.lock .name { font-family: var(--display); text-transform: uppercase; font-size: 0.95rem; font-weight: 600; }
.lock .state { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.lock .padlock { position: absolute; top: 1rem; right: 1rem; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: rgba(11,14,22,0.8); border: 1px solid var(--line); font-size: 0.85rem; }
.map-stage { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9; background: var(--night-2); }
.map-stage img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.map-stage::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(11,14,22,0.85)); pointer-events: none; }
.map-stage .grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(47,224,196,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(47,224,196,0.12) 1px, transparent 1px); background-size: 60px 60px; mix-blend-mode: screen; }
.pin { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 6px rgba(255,61,127,0.25), 0 0 20px var(--magenta); animation: pulse 2s infinite; cursor: pointer; }
.pin.t { background: var(--teal); box-shadow: 0 0 0 6px rgba(47,224,196,0.25), 0 0 20px var(--teal); }
.pin.a { background: var(--amber); box-shadow: 0 0 0 6px rgba(255,185,61,0.25), 0 0 20px var(--amber); }
.pin .tip {
  position: absolute; bottom: 150%; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text);
  background: rgba(11,14,22,0.92); border: 1px solid var(--line); padding: 0.35rem 0.6rem; border-radius: 4px; opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.pin:hover .tip { opacity: 1; }
.map-legend { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.map-hud { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); background: rgba(11,14,22,0.8); padding: 0.4rem 0.7rem; border-radius: 4px; border: 1px solid rgba(47,224,196,0.35); }

/* ============ STOREFRONT ============ */
.product { display: flex; flex-direction: column; transition: transform 0.2s ease; }
.product:hover { transform: translateY(-4px); }
.product-art { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 2.2rem; color: rgba(11,14,22,0.85); }
.product-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-art .lbl { position: relative; z-index: 1; background: rgba(11,14,22,0.7); color: var(--text); font-size: 1rem; padding: 0.5rem 0.9rem; border-radius: 6px; letter-spacing: 0.08em; }
.p-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.p-body h3 { font-size: 1.05rem; font-weight: 600; }
.p-body p { font-size: 0.88rem; color: var(--muted); margin-top: 0.4rem; flex: 1; }
.p-price { font-family: var(--mono); font-size: 1.4rem; margin: 0.9rem 0; }
.p-price s { color: var(--muted); font-size: 0.85rem; margin-left: 0.4rem; }
.badge-soon { display: inline-block; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); border: 1px solid rgba(255,185,61,0.45); padding: 0.25rem 0.6rem; border-radius: 3px; margin-bottom: 0.7rem; align-self: flex-start; }

/* ============ REFERRAL ============ */
.code-box { display: flex; align-items: center; gap: 1rem; background: rgba(11,14,22,0.8); border: 1px dashed rgba(47,224,196,0.5); border-radius: 10px; padding: 1.1rem 1.4rem; font-family: var(--mono); font-size: 1.3rem; letter-spacing: 0.12em; color: var(--teal); flex-wrap: wrap; }
.progress-track { height: 12px; background: rgba(11,14,22,0.9); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; margin-top: 0.8rem; }
.progress-fill { height: 100%; width: 66%; border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--magenta)); }
.step-num { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--magenta); margin-bottom: 0.7rem; }

/* ============ PAGE HERO (subpages, with art) ============ */
.page-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; padding: clamp(5rem, 12vh, 8rem) 0 clamp(2.5rem, 6vh, 4rem); overflow: hidden; isolation: isolate; }
.page-hero .hero-bg { z-index: -3; }
.page-hero .hero-bg img { object-position: 50% 40%; }
.page-hero .hero-shade { background: linear-gradient(90deg, rgba(11,14,22,0.95) 0%, rgba(11,14,22,0.6) 50%, rgba(11,14,22,0.25) 100%), linear-gradient(180deg, rgba(11,14,22,0.5), rgba(11,14,22,0.1) 35%, rgba(11,14,22,0.75) 72%, var(--night) 90%); }
.page-hero .hero-bg { bottom: -12%; }
.page-hero .hero-bg img { animation: none; transform: none; }
.page-hero::after, .hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 4px; background: var(--night); z-index: 1; }
.page-hero .lead { margin-top: 1.2rem; }

/* ============ SPONSOR / WAITLIST / DISCLAIMER ============ */
.sponsor-slot { border: 1px dashed rgba(139,146,168,0.4); border-radius: var(--r); padding: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; background: rgba(20,24,38,0.5); }
.sponsor-slot .s-label { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.sponsor-slot strong { font-family: var(--display); font-weight: 600; }
.waitlist-box { padding: clamp(2.2rem, 5vw, 3.8rem); text-align: center; }
.waitlist-box::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,61,127,0.16), transparent 70%); pointer-events: none; }
.waitlist-box > * { position: relative; z-index: 1; }
.waitlist-form { display: flex; gap: 0.8rem; max-width: 480px; margin: 1.8rem auto 0; }
@media (max-width: 560px) { .waitlist-form { flex-direction: column; } }
.waitlist-form input { flex: 1; background: rgba(11,14,22,0.85); border: 1px solid rgba(244,243,239,0.18); border-radius: 6px; color: var(--text); font-family: var(--body); font-size: 1rem; padding: 0.9rem 1.1rem; }
.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form input:focus-visible { outline-color: var(--magenta); border-color: var(--magenta); }
.waitlist-success { display: none; margin-top: 1.8rem; padding: 1rem 1.4rem; border: 1px solid rgba(47,224,196,0.4); background: rgba(47,224,196,0.08); border-radius: 6px; color: var(--teal); font-weight: 500; }
.waitlist-success.show { display: inline-block; }
.waitlist-note { margin-top: 1rem; font-size: 0.8rem; color: var(--muted); }
.disclaimer-box { margin-top: 2rem; padding: 1.3rem 1.5rem; border: 1px solid rgba(255,185,61,0.45); border-left-width: 4px; border-radius: 8px; background: rgba(255,185,61,0.05); font-size: 0.95rem; }
.disclaimer-box strong { color: var(--amber); }
.legal-body h2 { font-size: 1.4rem; margin: 2.8rem 0 1rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 0.97rem; margin-bottom: 0.9rem; }
.legal-body ul { padding-left: 1.3rem; }
.legal-note { font-family: var(--mono); font-size: 0.78rem; color: var(--amber); border: 1px dashed rgba(255,185,61,0.4); border-radius: 6px; padding: 0.9rem 1.1rem; margin-bottom: 2.2rem; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 1.3rem 1.4rem; }
.stat b { font-family: var(--mono); font-size: 1.7rem; display: block; color: var(--text); }
.stat span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; isolation: isolate; }
.cta-band .hero-bg img { object-position: 50% 35%; }
.cta-band .hero-shade { background: linear-gradient(180deg, rgba(11,14,22,0.7), rgba(11,14,22,0.88)); }

/* ============ CHAT WIDGET ============ */
.chat-fab { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 95; width: 58px; height: 58px; border-radius: 50%; border: none; background: var(--teal); color: var(--night); font-size: 1.5rem; cursor: pointer; box-shadow: 0 4px 28px rgba(47,224,196,0.45); display: grid; place-items: center; }
.chat-fab:hover { transform: scale(1.06); }
.chat-widget { position: fixed; right: 1.4rem; bottom: 5.8rem; z-index: 95; width: min(370px, calc(100vw - 2.8rem)); background: rgba(11,14,22,0.97); border: 1px solid rgba(47,224,196,0.35); border-radius: 14px; overflow: hidden; box-shadow: 0 12px 50px rgba(0,0,0,0.6); display: none; }
.chat-widget.open { display: block; }
.chat-head { display: flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line); background: rgba(47,224,196,0.06); }
.chat-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.chat-head strong { font-family: var(--display); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.ai-badge { margin-left: auto; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--night); background: var(--teal); padding: 0.22rem 0.5rem; border-radius: 3px; font-weight: 700; }
.chat-body { padding: 1.1rem; display: grid; gap: 0.8rem; max-height: 320px; overflow-y: auto; }
.msg { max-width: 90%; padding: 0.65rem 0.9rem; border-radius: 10px; font-size: 0.88rem; line-height: 1.5; }
.msg-user { justify-self: end; background: rgba(255,61,127,0.16); border: 1px solid rgba(255,61,127,0.3); border-bottom-right-radius: 3px; }
.msg-ai { justify-self: start; background: rgba(47,224,196,0.09); border: 1px solid rgba(47,224,196,0.25); border-bottom-left-radius: 3px; }
.msg-ai .msg-tag { display: block; font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem; }
.chat-foot { padding: 0.75rem 1.1rem; border-top: 1px solid var(--line); font-size: 0.74rem; color: var(--muted); }
.chat-foot input { width: 100%; background: rgba(20,24,38,0.9); border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font-family: var(--body); font-size: 0.85rem; padding: 0.6rem 0.8rem; margin-bottom: 0.5rem; }

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--line); padding: 3rem 0 3.2rem; font-size: 0.85rem; color: var(--muted); background: linear-gradient(180deg, var(--night), var(--night-2)); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.9rem; }
.foot-grid nav { display: grid; gap: 0.5rem; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
.foot-disclaimer { margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: 0.8rem; max-width: 80ch; }

/* ============ AUTH ============ */
.auth-in { display: none !important; }
body.is-auth .auth-in { display: inline-flex !important; }
body.is-auth .auth-out { display: none !important; }
.auth-wrap { position: relative; min-height: 88vh; display: flex; align-items: center; padding: 3rem 0; overflow: hidden; isolation: isolate; }
.auth-wrap .hero-bg { z-index: -3; } .auth-wrap .hero-bg img { animation: none; transform: none; object-position: 50% 30%; }
.auth-wrap .hero-shade { z-index: -2; background: linear-gradient(180deg, rgba(11,14,22,0.75), rgba(11,14,22,0.92)); }
.auth-card { max-width: 460px; margin: 0 auto; padding: 2.2rem 2rem; }
.field { display: grid; gap: 0.4rem; }
.field span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.field input, .field select { background: rgba(11,14,22,0.85); border: 1px solid rgba(244,243,239,0.18); border-radius: 6px; color: var(--text); font-family: var(--body); font-size: 1rem; padding: 0.85rem 1rem; width: 100%; }
.field input:focus-visible, .field select:focus-visible { outline-color: var(--magenta); border-color: var(--magenta); }
.form-err { color: var(--coral); font-size: 0.88rem; min-height: 1.2em; }
.gate-banner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1rem 1.3rem; margin-bottom: 1.3rem; }
.gate-banner p { color: var(--muted); font-size: 0.92rem; }
.lock.unlocked .code { filter: none; color: var(--teal); font-size: 0.8rem; letter-spacing: 0.18em; }
.lock.unlocked .padlock { background: rgba(47,224,196,0.15); border-color: rgba(47,224,196,0.5); }
.video-card.locked .video-thumb img { filter: grayscale(0.6) brightness(0.55); }
.video-card.locked .play { background: rgba(139,146,168,0.6); box-shadow: none; }

/* ============ LOGO IMAGE ============ */
.logo-img { height: 50px; width: auto; display: block; filter: drop-shadow(0 0 10px rgba(255,61,127,0.3)); }
.nav { padding: 0.55rem 0; }
footer .logo-img { height: 44px; }
@media (max-width: 560px) { .logo-img { height: 36px; } }

/* ============ WAITLIST GRID + TM ============ */
.waitlist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; max-width: 560px; text-align: left; }
.waitlist-grid .field:nth-child(3), .waitlist-grid .btn { grid-column: 1 / -1; }
@media (max-width: 560px) { .waitlist-grid { grid-template-columns: 1fr; } }
.logo { position: relative; }
.tm { font-family: var(--body); font-size: 0.55rem; font-weight: 600; color: var(--muted); margin-left: 3px; align-self: flex-start; line-height: 1; }
