/* ============================================================
   GG HOBBY — premium dark theme
   Palette pulled from the brand logo: electric blue on black.
   ============================================================ */

:root {
  --bg: #04070c;
  --bg-2: #080d16;
  --bg-3: #0c1320;
  --panel: rgba(13, 20, 33, 0.66);
  --line: rgba(78, 130, 200, 0.16);
  --blue: #1156f0;
  --cyan: #19c8ff;
  --grad: linear-gradient(100deg, #1156f0 0%, #19c8ff 100%);
  /* darker gradient for surfaces carrying white text — keeps AA contrast across the full run */
  --grad-ui: linear-gradient(100deg, #0d3fb8 0%, #0d7fb0 100%);
  --white: #f2f7ff;
  --muted: #8fa0b8;
  --red: #ff3b4d;
  --radius: 18px;
  --font-display: "Saira", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; scroll-margin-top: calc(var(--nav-h) + 10px); }

/* visible focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 200;
  background: var(--grad-ui);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus-visible { transform: translateY(0); }

::selection { background: rgba(25, 200, 255, 0.35); }

/* ---------- type helpers ---------- */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 17px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad-ui);
  color: #fff;
  box-shadow: 0 8px 32px rgba(17, 110, 240, 0.38);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(25, 170, 255, 0.5);
}

.btn--ghost {
  border-color: rgba(120, 170, 230, 0.35);
  color: var(--white);
  background: rgba(15, 25, 42, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(25, 200, 255, 0.25);
  transform: translateY(-2px);
}

.btn--sm { padding: 11px 22px; font-size: 13px; }

/* ---------- live dot ---------- */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 59, 77, 0.6);
  animation: pulse 1.6s infinite;
  flex: none;
}
.live-dot--lg { width: 10px; height: 10px; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 77, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 59, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 77, 0); }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--grad-ui);
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.announce:hover .announce__track,
.announce:focus-within .announce__track { animation-play-state: paused; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.announce__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: slide 22s linear infinite;
  padding: 8px 0;
}
.announce__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: #fff;
  white-space: nowrap;
}
.announce .live-dot { background: #fff; animation: none; }

@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(4, 8, 14, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 26px;
}
.nav__links a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.25s ease;
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--white); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 34px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 110px;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero__glow--1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(17, 86, 240, 0.55), transparent 65%);
  top: -240px; right: -160px;
  animation: drift 14s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(25, 200, 255, 0.35), transparent 65%);
  bottom: -200px; left: -140px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 50px) scale(1.12); }
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(80, 140, 220, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 140, 220, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
}

/* floating grail cards — real scans + holo-foil shader */
.hero__cards { position: absolute; inset: 0; pointer-events: none; perspective: 900px; }

.holo-card {
  position: absolute;
  width: 190px;
  --foil-x: 50%;
  --foil-y: 50%;
  --foil-o: 0;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 30px rgba(25, 140, 255, 0.35));
  transition: transform 0.25s ease-out;
  transform-style: preserve-3d;
}
.holo-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4.5% / 3.2%; /* clips the scan's square corners to the card's real radius */
}
.holo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4.5% / 3.2%;
  pointer-events: none;
  opacity: var(--foil-o);
  transition: opacity 0.35s ease;
  background:
    radial-gradient(circle at var(--foil-x) var(--foil-y), rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(115deg,
      transparent 20%,
      rgba(255, 80, 200, 0.25) 36%,
      rgba(80, 255, 220, 0.28) 46%,
      rgba(120, 160, 255, 0.28) 55%,
      rgba(255, 220, 90, 0.22) 64%,
      transparent 80%);
  background-position: var(--foil-x) var(--foil-y), calc(var(--foil-x) * 1.4) 0;
  background-size: 160% 160%, 220% 100%;
  mix-blend-mode: color-dodge;
}
@keyframes holo { to { transform: rotate(360deg) scale(1.6); } }

.holo-card--1 { top: 14%; right: 10%; rotate: 9deg; animation: float 7s ease-in-out infinite; }
.holo-card--2 { bottom: 12%; right: 23%; rotate: -7deg; width: 150px; animation: float 9s ease-in-out infinite 1.2s; }
.holo-card--3 { top: 28%; left: 5%; rotate: -12deg; width: 140px; animation: float 8s ease-in-out infinite 0.5s; opacity: 0.92; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -22px; }
}

.hero__content { position: relative; z-index: 2; }

.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 59, 77, 0.1);
  border: 1px solid rgba(255, 59, 77, 0.35);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.hero__live:hover {
  box-shadow: 0 0 30px rgba(255, 59, 77, 0.3);
  transform: translateY(-1px);
}

.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  margin-bottom: 26px;
}
.hero__line { display: block; }
.hero__line--grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(25, 160, 255, 0.45));
}

.hero__sub {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  margin-bottom: 38px;
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: -68px;
  translate: -50% 0;
  width: 26px; height: 42px;
  border: 2px solid rgba(130, 170, 220, 0.35);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 8px;
  translate: -50% 0;
  border-radius: 4px;
  background: var(--cyan);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  animation: slide 30s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: rgba(190, 215, 245, 0.5);
  white-space: nowrap;
}
.ticker__track i { color: var(--cyan); font-style: normal; opacity: 0.7; }

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: clamp(56px, 7vw, 90px) 0; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat {
  text-align: center;
  padding: 34px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat:hover { border-color: rgba(25, 200, 255, 0.4); transform: translateY(-4px); }

.stat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 44px);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.stat__num small { font-size: 0.5em; }
.stat__label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
/* collections — real store photo faintly behind the league cards (set inline via --section-photo) */
.collections {
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(4, 7, 12, 0.88) 14%, rgba(4, 7, 12, 0.88) 86%, var(--bg) 100%),
    var(--section-photo, none) center / cover no-repeat fixed,
    linear-gradient(180deg, transparent, rgba(10, 18, 34, 0.55) 18%, rgba(10, 18, 34, 0.55) 82%, transparent);
}
@media (max-width: 860px) {
  .collections { background-attachment: scroll, scroll, scroll; }
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* league logo cards (full-bleed) */
.lcard {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a1322;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.lcard:hover { transform: translateY(-5px); border-color: rgba(25, 200, 255, 0.45); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 32px rgba(25, 160, 255, 0.16); }
.lcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lcard:hover .lcard__img { transform: scale(1.06); }
.lcard__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(4, 7, 12, 0.88) 100%); }
.lcard__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 15px 18px;
}
.lcard__label strong {
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: 23px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.lcard__label em {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); opacity: 0; translate: 6px 0;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.lcard:hover .lcard__label em { opacity: 1; translate: 0 0; }
.lcard--themed { background: radial-gradient(ellipse 90% 70% at 50% 38%, color-mix(in srgb, var(--hue) 48%, #0a1322), #070c16); }
.lcard__bigname {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-weight: 900;
  font-size: clamp(36px, 4.4vw, 58px); text-transform: uppercase;
  letter-spacing: 0.03em; color: color-mix(in srgb, var(--hue) 72%, #fff);
  opacity: 0.3; transform: rotate(-7deg);
}

/* new & coming-soon scroller */
.drops-scroller { position: relative; }
.drops-grid {
  display: flex; align-items: stretch; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 2px 16px;
  scrollbar-width: thin; scrollbar-color: rgba(25, 200, 255, 0.5) transparent;
}
.drops-grid::-webkit-scrollbar { height: 8px; }
.drops-grid::-webkit-scrollbar-thumb { background: rgba(25, 200, 255, 0.45); border-radius: 999px; }
.drops-grid::-webkit-scrollbar-track { background: transparent; }
.drop {
  flex: 0 0 232px; max-width: 232px; scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.drop:hover { transform: translateY(-5px); border-color: rgba(25, 200, 255, 0.4); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5); }
.drop__media { position: relative; display: grid; place-items: center; background: linear-gradient(170deg, #f6f8fc, #e7edf5); aspect-ratio: 1 / 1; overflow: hidden; }
.drop__media img { max-width: 92%; max-height: 92%; width: auto; height: auto; object-fit: contain; }
.drop__badge {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: var(--grad-ui); padding: 4px 11px; border-radius: 999px;
}
.drop__badge--soon { background: linear-gradient(100deg, #ff3b4d, #ff7a3d); }
/* teaser card for announced-but-unreleased lines (no product shot yet) */
.drop__media--tease { background: radial-gradient(120% 120% at 30% 20%, #14264a, #070d1a); }
.drop__tease {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 74px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.drop__tease i { font-size: 36px; font-style: italic; }
.drop h3 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 16px; text-transform: uppercase; margin: 14px 14px 4px; }
.drop p { color: var(--muted); font-size: 12.5px; line-height: 1.5; margin: 0 14px 16px; }
.drops__foot { text-align: center; margin-top: 24px; color: var(--muted); font-size: 14px; }
.drops__foot a { color: var(--cyan); border-bottom: 1px solid rgba(25, 200, 255, 0.35); }

.ccard {
  --hue: var(--cyan);
  position: relative;
  border-radius: var(--radius);
  padding: 0;
  background:
    linear-gradient(165deg, rgba(18, 28, 46, 0.85), rgba(7, 12, 22, 0.95));
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ccard__media {
  display: grid;
  place-items: center;
  height: 185px;
  background: linear-gradient(170deg, #f7f9fc, #e8edf4);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.ccard__media img {
  max-width: 82%;
  max-height: 158px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.ccard:hover .ccard__media img { transform: scale(1.06); }

.ccard__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 22px 22px;
}
.ccard::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 78% 12%, color-mix(in srgb, var(--hue) 32%, transparent), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ccard::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(220, 240, 255, 0.09), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.ccard:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--hue) 55%, transparent); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 36px color-mix(in srgb, var(--hue) 18%, transparent); }
.ccard:hover::before { opacity: 1; }
.ccard:hover::after { left: 130%; }

.ccard__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--hue) 80%, #fff);
  border: 1px solid color-mix(in srgb, var(--hue) 38%, transparent);
  padding: 5px 12px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.ccard h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.ccard p {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.ccard__arrow {
  position: absolute;
  right: 22px; bottom: 18px;
  font-size: 20px;
  color: var(--cyan);
  opacity: 0;
  translate: -8px 0;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.ccard:hover .ccard__arrow, .ccard:focus-visible .ccard__arrow { opacity: 1; translate: 0 0; }

.ccard--featured {
  background:
    linear-gradient(165deg, rgba(17, 60, 150, 0.5), rgba(7, 12, 22, 0.95));
  border-color: rgba(25, 160, 255, 0.45);
}

/* ============================================================
   LIVE / STREAMING CENTER
   ============================================================ */
.live__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.live__copy p { color: var(--muted); margin: 18px 0 20px; max-width: 520px; }
.live__copy strong { color: var(--white); }

.live__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.live__chips span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(20, 60, 130, 0.28);
  border: 1px solid rgba(25, 160, 255, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.live__list { list-style: none; margin-bottom: 30px; }
.live__list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--muted);
  border-bottom: 1px solid rgba(78, 130, 200, 0.1);
}
.live__list li::before {
  content: "▸";
  position: absolute;
  left: 4px;
  color: var(--cyan);
}
.live__list strong { color: var(--white); }

.live__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* real TikTok creator embed */
.live__embed {
  margin-top: clamp(48px, 6vw, 80px);
  text-align: center;
}
.live__embed-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.live__embed-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 26px;
}
.live__embed .tiktok-embed {
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
.live__embed .tiktok-embed a { color: var(--cyan); }

/* mock stream window */
.screen {
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(16, 26, 44, 0.95), rgba(6, 10, 19, 0.98));
  border: 1px solid rgba(110, 165, 235, 0.25);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(20, 120, 255, 0.14);
  overflow: hidden;
  rotate: 1.5deg;
  transition: rotate 0.4s ease;
}
.screen:hover { rotate: 0deg; }

.screen__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(110, 165, 235, 0.15);
}
.screen__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 999px;
}
.screen__badge .live-dot { background: #fff; }
.screen__viewers { font-size: 13px; color: var(--muted); }

.screen__stage {
  position: relative;
  height: 230px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(17, 86, 240, 0.22), transparent),
    repeating-linear-gradient(0deg, rgba(120, 170, 230, 0.04) 0 1px, transparent 1px 22px);
  overflow: hidden;
}
.screen__card {
  width: 118px;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 46px rgba(25, 170, 255, 0.35);
  animation: cardReveal 4.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes cardReveal {
  0%, 100% { transform: translateY(10px) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}
.screen__burst {
  position: absolute;
  width: 300px; height: 300px;
  background: conic-gradient(from 0deg, transparent, rgba(25, 200, 255, 0.16), transparent 30%,
    rgba(17, 86, 240, 0.16), transparent 60%, rgba(25, 200, 255, 0.16), transparent);
  border-radius: 50%;
  animation: holo 9s linear infinite;
}

.screen__chat {
  padding: 16px 18px 18px;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(110, 165, 235, 0.15);
}
.screen__chat p {
  font-size: 13px;
  color: var(--muted);
  background: rgba(20, 32, 54, 0.6);
  border-radius: 10px;
  padding: 7px 12px;
  width: fit-content;
  animation: chatIn 0.5s ease both;
}
.screen__chat p:nth-child(2) { animation-delay: 0.18s; }
.screen__chat p:nth-child(3) { animation-delay: 0.36s; }
.screen__chat p:nth-child(4) { animation-delay: 0.54s; }
.screen__chat b { color: var(--cyan); font-weight: 600; margin-right: 6px; }

@keyframes chatIn {
  from { opacity: 0; translate: 0 10px; }
  to   { opacity: 1; translate: 0 0; }
}

/* ============================================================
   SHOP / ABOUT
   ============================================================ */
.shop__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.shop__photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(110, 165, 235, 0.25);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 60px rgba(20, 120, 255, 0.12);
}
.shop__photo img { width: 100%; height: 100%; object-fit: cover; }
.shop__photo figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(4, 8, 14, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
}

.shop__copy p { color: var(--muted); margin-top: 18px; }

.shop__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.point {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: grid;
  gap: 2px;
  transition: border-color 0.3s ease;
}
.point:hover { border-color: rgba(25, 200, 255, 0.4); }
.point b {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.point span { color: var(--muted); font-size: 13.5px; }

/* ============================================================
   SELL
   ============================================================ */
.sell { padding-block: clamp(40px, 5vw, 70px); }

.sell__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 60px);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 90% 130% at 8% 0%, rgba(17, 86, 240, 0.3), transparent 55%),
    radial-gradient(ellipse 70% 120% at 95% 100%, rgba(25, 200, 255, 0.16), transparent 55%),
    var(--bg-3);
  border: 1px solid rgba(25, 160, 255, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.sell__copy { max-width: 560px; }
.sell__copy p { color: var(--muted); margin-top: 14px; }
.sell__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   VISIT
   ============================================================ */
.visit__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.visit__info {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.vrow__label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.vrow p { color: var(--white); font-size: 16.5px; line-height: 1.55; }
.vrow em { color: var(--muted); font-style: normal; font-size: 13.5px; }
.vrow a { border-bottom: 1px solid rgba(25, 200, 255, 0.35); transition: border-color 0.2s ease, color 0.2s ease; }
.vrow a:hover { color: var(--cyan); border-bottom-color: var(--cyan); }
.visit__info .btn { align-self: flex-start; margin-top: 6px; }

.visit__map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  position: relative;
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* dark-mode map that keeps color: navy water, readable labels */
  filter: invert(0.9) hue-rotate(185deg) saturate(1.25) brightness(0.95) contrast(0.93);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(8, 14, 26, 0.9));
  padding-top: clamp(56px, 6vw, 84px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 52px;
}

.footer__logo {
  height: 84px;
  width: auto;
  margin-bottom: 14px;
}
.footer__brand p { color: var(--muted); font-size: 14.5px; }

.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.footer__social a:hover {
  color: var(--cyan);
  border-color: rgba(25, 200, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(25, 160, 255, 0.2);
}
.footer__social svg { width: 19px; height: 19px; }

.footer__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col a, .footer__col p {
  display: block;
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--cyan); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid rgba(78, 130, 200, 0.1);
}
.footer__bottom p {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   COMPETITIVE UPGRADES — trust, formats, reviews, forms, FAQ, VIP
   ============================================================ */

/* hero trust strip */
.hero__trust {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.hero__trust a {
  color: var(--muted);
  border-bottom: 1px solid rgba(25, 200, 255, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero__trust a:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

/* clickable stats */
.stat__link { display: block; color: inherit; }

/* collections note */
.collections__note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14.5px;
}
.collections__note a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(25, 200, 255, 0.35);
}
.collections__note a:hover { border-bottom-color: var(--cyan); }

/* stream format cards */
.formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.format {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 13px 16px;
  background: rgba(20, 60, 130, 0.18);
  border: 1px solid rgba(25, 160, 255, 0.28);
  border-radius: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.format:hover {
  border-color: var(--cyan);
  background: rgba(20, 60, 130, 0.32);
  transform: translateY(-2px);
}
.format__icon { grid-row: 1 / 3; font-size: 22px; }
.format__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.format__desc { font-size: 12.5px; color: var(--muted); }

/* dual TikTok embeds */
.live__embed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.live__embed-col { min-width: 0; }
.live__embed-label {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

/* multi-platform social showcase — horizontal scroller */
.social-scroller { position: relative; }
.social-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(25, 200, 255, 0.5) transparent;
}
.social-grid::-webkit-scrollbar { height: 8px; }
.social-grid::-webkit-scrollbar-thumb { background: rgba(25, 200, 255, 0.45); border-radius: 999px; }
.social-grid::-webkit-scrollbar-track { background: transparent; }
.social-panel {
  flex: 0 0 330px;
  max-width: 330px;
  scroll-snap-align: start;
}
.social-nav {
  position: absolute;
  top: calc(50% + 4px);
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(25, 160, 255, 0.4);
  background: rgba(6, 11, 20, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-nav:hover { border-color: var(--cyan); background: rgba(10, 18, 32, 0.96); }
.social-nav--prev { left: -14px; }
.social-nav--next { right: -14px; }
@media (max-width: 720px) { .social-nav { display: none; } }

/* yellow contrast highlight for key product terms */
.hl { color: #ffd34d; font-weight: 600; }

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  height: 640px;
  padding: 36px 28px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(18, 28, 46, 0.9), rgba(7, 12, 22, 0.96));
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.social-card--ig { border-color: rgba(214, 41, 118, 0.5); }
.social-card__glow {
  position: absolute;
  inset: -45% -45% auto -45%;
  height: 85%;
  background: radial-gradient(circle, rgba(214, 41, 118, 0.38), rgba(150, 47, 191, 0.22) 42%, transparent 72%);
  filter: blur(22px);
}
.social-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.social-card--ig:hover { border-color: #d62976; box-shadow: 0 20px 52px rgba(214, 41, 118, 0.28); }
.social-card__icon { width: 60px; height: 60px; color: #fff; position: relative; z-index: 1; }
.social-card__handle {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  text-transform: lowercase;
}
.social-card__meta { position: relative; z-index: 1; color: var(--muted); font-size: 14px; max-width: 240px; line-height: 1.55; }
.social-card__btn {
  position: relative; z-index: 1;
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-fb {
  width: 100%;
  height: 640px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1320;
}
.social-foot { text-align: center; margin-top: 24px; color: var(--muted); font-size: 14px; }
.social-foot a { color: var(--cyan); border-bottom: 1px solid rgba(25, 200, 255, 0.35); }

/* reviews */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.review:hover { border-color: rgba(25, 200, 255, 0.4); transform: translateY(-4px); }
.review__stars { color: #ffcb3d; font-size: 15px; letter-spacing: 3px; }
.review blockquote { color: var(--white); font-size: 15px; line-height: 1.7; }
.review figcaption {
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
}
.reviews__more { text-align: center; margin-top: 30px; }
.reviews__more a {
  color: var(--cyan);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reviews__more a:hover { text-decoration: underline; }

/* forms (sell + vip) */
.sell__form, .vip__form { display: grid; gap: 12px; }
.sell__form { width: min(420px, 100%); }
.sell__form input, .sell__form textarea, .vip__form input {
  background: rgba(7, 13, 24, 0.8);
  border: 1px solid rgba(78, 130, 200, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sell__form input::placeholder, .sell__form textarea::placeholder, .vip__form input::placeholder { color: rgba(143, 160, 184, 0.75); }
.sell__form input:focus, .sell__form textarea:focus, .vip__form input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(25, 200, 255, 0.15);
}
.sell__form textarea { resize: vertical; min-height: 96px; }
.vip__discord { margin-top: 18px; display: inline-block; }
.vip__or { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

.sell__alt { margin-top: 16px; font-size: 14px; color: var(--muted); }
.sell__alt a { color: var(--cyan); border-bottom: 1px solid rgba(25, 200, 255, 0.35); }

/* sell funnel — the one-flow card (replaces the old "Get an Offer" quote form) */
.sell__funnel {
  width: min(420px, 100%);
  background: rgba(7, 13, 24, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 26px);
  display: grid;
  gap: 16px;
}
.sell__funnel-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.sell__steps { list-style: none; display: grid; gap: 14px; counter-reset: step; margin: 0; padding: 0; }
.sell__steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  counter-increment: step;
}
.sell__steps li::before {
  content: counter(step);
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-ui);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
}
.sell__steps b { grid-column: 2; font-size: 15px; }
.sell__steps span { grid-column: 2; color: var(--muted); font-size: 12.5px; line-height: 1.45; }
.sell__funnel > .btn { width: 100%; }
.sell__funnel-note { color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.sell__funnel-note a { color: var(--cyan); border-bottom: 1px solid rgba(25, 200, 255, 0.35); }

/* FAQ */
.faq__list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq__item[open] { border-color: rgba(25, 200, 255, 0.4); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 50px 18px 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  font-size: 22px;
  color: var(--cyan);
  transition: rotate 0.25s ease;
}
.faq__item[open] summary::after { rotate: 45deg; }
.faq__item p { padding: 0 22px 20px; color: var(--muted); line-height: 1.7; }
.faq__item p a { color: var(--cyan); border-bottom: 1px solid rgba(25, 200, 255, 0.35); }
.faq__item strong { color: var(--white); }

/* VIP band */
.vip { padding-block: clamp(40px, 5vw, 70px); }
.vip__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 90% 130% at 92% 0%, rgba(17, 86, 240, 0.32), transparent 55%),
    radial-gradient(ellipse 70% 120% at 5% 100%, rgba(25, 200, 255, 0.16), transparent 55%),
    var(--bg-3);
  border: 1px solid rgba(25, 160, 255, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.vip__copy { max-width: 520px; }
.vip__copy p { color: var(--muted); margin-top: 14px; }
.vip__form {
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  width: min(440px, 100%);
}

/* programming / schedule cards */
.sched__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sched-card {
  --hue: var(--cyan);
  background: linear-gradient(165deg, rgba(18, 28, 46, 0.85), rgba(7, 12, 22, 0.95));
  border: 1px solid var(--line);
  border-top: 3px solid color-mix(in srgb, var(--hue) 70%, transparent);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sched-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--hue) 55%, transparent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 32px color-mix(in srgb, var(--hue) 16%, transparent);
}
.sched-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.sched-card__head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 21px;
  text-transform: uppercase;
}
.sched-card__tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--hue) 85%, #fff);
  border: 1px solid color-mix(in srgb, var(--hue) 40%, transparent);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.sched-card__hosts {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.sched-card__hosts li {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}
.host-ava {
  position: relative;
  grid-row: 1 / 3;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--hue) 22%, #0a1322);
  border: 1px solid color-mix(in srgb, var(--hue) 50%, transparent);
  overflow: hidden;
}
.host-ava i {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 12.5px;
  color: color-mix(in srgb, var(--hue) 85%, #fff);
}
.host-ava img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.host-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.host-time { font-size: 12.5px; color: var(--muted); }
.sched-card__watch {
  margin-top: auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--hue) 85%, #fff);
  align-self: flex-start;
  border-bottom: 1px solid color-mix(in srgb, var(--hue) 40%, transparent);
  transition: border-color 0.2s ease;
}
.sched-card__watch:hover { border-bottom-color: color-mix(in srgb, var(--hue) 90%, #fff); }

@media (max-width: 1024px) {
  .sched__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sched__grid { grid-template-columns: 1fr; }
}

/* tonight's lineup band — real store photo behind a dark wash (photo set inline via --band-photo) */
.tonight { padding: clamp(26px, 3vw, 44px) 0; }
.tonight__band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(26px, 3.5vw, 40px);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 140% at 4% 50%, rgba(255, 59, 77, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 120% at 96% 50%, rgba(17, 86, 240, 0.28), transparent 55%),
    linear-gradient(100deg, rgba(4, 7, 12, 0.93), rgba(4, 7, 12, 0.82)),
    var(--band-photo, none) center 35% / cover no-repeat,
    var(--bg-3);
  border: 1px solid rgba(255, 59, 77, 0.3);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}
/* LIVE NOW state (js/live.js adds .is-live while a show is streaming) */
.tonight__band.is-live {
  border-color: rgba(255, 59, 77, 0.75);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45), 0 0 42px rgba(255, 59, 77, 0.22);
  animation: livePulse 2.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { border-color: rgba(255, 59, 77, 0.75); }
  50% { border-color: rgba(255, 59, 77, 0.35); }
}
.tonight__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 36px);
  text-transform: uppercase;
  margin: 6px 0 4px;
}
.tonight__copy p { color: var(--muted); font-size: 14.5px; }

/* sell-value estimator */
.estimator {
  margin-top: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.estimator__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.estimator__head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
}
.estimator__head p { color: var(--muted); font-size: 13.5px; }
.estimator__add {
  display: grid;
  grid-template-columns: 1fr 92px auto;
  gap: 10px;
  margin-bottom: 14px;
}
.estimator__add select, .estimator__add input, .est-row input {
  background: rgba(7, 13, 24, 0.8);
  border: 1px solid rgba(78, 130, 200, 0.3);
  border-radius: 11px;
  padding: 12px 13px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}
.estimator__add select:focus, .estimator__add input:focus, .est-row input:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(25, 200, 255, 0.15);
}
.estimator__list { list-style: none; display: grid; gap: 8px; margin-bottom: 14px; }
.est-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 100px auto 32px;
  gap: 8px;
  align-items: center;
  background: rgba(20, 32, 54, 0.4);
  border: 1px solid rgba(78, 130, 200, 0.18);
  border-radius: 11px;
  padding: 8px 10px;
}
.est-row__name { font-size: 13.5px; color: var(--white); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.est-row__pay { color: var(--cyan); font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 13.5px; white-space: nowrap; text-align: right; }
.estimator__search { grid-column: 1 / -1; }
.estimator__submarket { color: var(--muted); font-size: 13px; display: block; }
.estimator__submarket b { color: var(--white); font-weight: 700; }
.est-row--bump { animation: estBump 0.45s ease; }
@keyframes estBump { 0% { background: rgba(25, 200, 255, 0.28); } 100% { background: rgba(20, 32, 54, 0.4); } }
.est-row__x {
  background: none; border: 0; color: var(--muted); font-size: 18px; cursor: pointer;
  transition: color 0.2s ease;
}
.est-row__x:hover { color: #ff8a95; }
.estimator__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.estimator__figure {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.estimator__note { color: var(--muted); font-size: 12px; margin-top: 8px; }
.estimator__note a { color: var(--cyan); }
/* phones — most sellers build their list on a phone, so rows go two-line, text stays big,
   and inputs are 16px (stops iOS from zooming the whole page on focus) */
@media (max-width: 560px) {
  .estimator { padding: 18px 14px; }
  .estimator__add { grid-template-columns: 1fr 84px auto; }
  .estimator__search { grid-column: 1 / -1; }
  .estimator__add select, .estimator__add input, .est-row input { font-size: 16px; padding: 13px 12px; }
  .est-row {
    grid-template-columns: auto 96px 1fr 30px;
    grid-template-areas:
      "name name name x"
      "qty  price pay pay";
    row-gap: 9px;
    padding: 11px 12px;
  }
  .est-row__name:not(.est-row__qty) { grid-area: name; white-space: normal; font-size: 14.5px; line-height: 1.4; }
  .est-row__qty { grid-area: qty; align-self: center; font-size: 14.5px; }
  .est-row input { grid-area: price; width: 100%; }
  .est-row__pay { grid-area: pay; align-self: center; text-align: right; font-size: 15.5px; }
  .est-row__x { grid-area: x; font-size: 24px; align-self: start; justify-self: end; }
}

/* book a sell appointment */
.book__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.book__steps { list-style: none; display: grid; gap: 20px; margin-bottom: 28px; }
.book__steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.book__num {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-ui);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 19px;
}
.book__steps b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.book__steps p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.book__steps strong { color: var(--white); }

.book__policy {
  background: rgba(255, 59, 77, 0.07);
  border: 1px solid rgba(255, 59, 77, 0.28);
  border-radius: 16px;
  padding: 20px 22px;
}
.book__policy h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8a95;
  margin-bottom: 8px;
}
.book__policy p { color: var(--muted); font-size: 13.5px; line-height: 1.65; }
.book__policy strong { color: var(--white); }
.book__policy em { color: var(--white); font-style: italic; }

.book__widget {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.book__placeholder {
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  gap: 6px;
}
.book__placeholder-badge {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(25, 200, 255, 0.35);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.book__placeholder h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
}
.book__placeholder p { color: var(--muted); font-size: 14px; max-width: 360px; margin: 6px 0 18px; }
.book__placeholder-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.book__widget iframe { width: 100%; min-height: 640px; border: 0; display: block; }

/* booking form */
.book__form-wrap { padding: clamp(24px, 3vw, 34px); }
.book__placeholder-badge { display: inline-block; margin-bottom: 18px; }
.book__form { display: grid; gap: 16px; }
.book__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book__field { display: grid; gap: 7px; }
.book__field label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.book__field label span { color: var(--muted); font-weight: 600; }
.book__field input, .book__field textarea {
  background: rgba(7, 13, 24, 0.8);
  border: 1px solid rgba(78, 130, 200, 0.3);
  border-radius: 11px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.book__field input:focus, .book__field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(25, 200, 255, 0.15);
}
.book__field input::placeholder, .book__field textarea::placeholder { color: rgba(143, 160, 184, 0.7); }
/* dark-mode the native date picker */
.book__field input[type="date"] { color-scheme: dark; }
.book__err { color: #ff8a95; font-size: 12.5px; }

.book__slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.book__slot {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(20, 32, 54, 0.55);
  border: 1px solid rgba(78, 130, 200, 0.3);
  border-radius: 9px;
  padding: 9px 4px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease;
}
.book__slot:hover { border-color: var(--cyan); }
.book__slot.is-selected {
  background: var(--grad-ui);
  border-color: transparent;
  color: #fff;
}
.book__slot:disabled, .book__slot.is-off {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}
.book__slot:disabled:hover, .book__slot.is-off:hover { border-color: rgba(78, 130, 200, 0.3); }

.book__check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.book__check input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--cyan); }
.book__check strong { color: var(--white); }

/* booking terms — what we take / don't take */
.book__terms {
  background: rgba(20, 60, 130, 0.14);
  border: 1px solid rgba(25, 160, 255, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  gap: 7px;
}
.book__terms-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}
.book__terms p { font-size: 12.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.book__terms-ok strong { color: #3ddc84; }
.book__terms-no strong { color: #ff8a95; }
.book__terms-cond strong { color: #fff; }

.book__form .btn { width: 100%; }
.book__status { font-size: 13.5px; color: var(--muted); min-height: 1px; text-align: center; }
.book__status--err { color: #ff8a95; }
.book__status--warn { color: #ffcb3d; }
.book__fallback { text-align: center; font-size: 13px; color: var(--muted); }
.book__fallback a { color: var(--cyan); border-bottom: 1px solid rgba(25, 200, 255, 0.35); }

.book__done { text-align: center; padding: 28px 10px; }
.book__done-check {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(61, 220, 132, 0.15);
  border: 1px solid rgba(61, 220, 132, 0.5);
  color: #3ddc84;
  font-size: 28px;
}
.book__done h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.book__done p { color: var(--muted); font-size: 14.5px; }
.book__done strong { color: var(--white); }

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

@media (max-width: 860px) {
  .book__grid { grid-template-columns: 1fr; }
  .book__widget { position: static; }
}

/* crew roster — image-forward player cards */
.crew__tier {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
  margin: 8px 0 22px;
}
.crew__tier:not(:first-of-type) { margin-top: 52px; }
.crew__tier-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: -14px 0 22px;
}

.crew__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.crew__grid--office {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.crew-card {
  --hue: var(--cyan);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.crew-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--hue) 55%, transparent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 30px color-mix(in srgb, var(--hue) 18%, transparent);
}
.crew-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(165deg, color-mix(in srgb, var(--hue) 26%, #0a1322), #070c16);
  border-bottom: 1px solid color-mix(in srgb, var(--hue) 35%, transparent);
  overflow: hidden;
}
.crew-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.crew-card:hover .crew-card__media img { transform: scale(1.05); }
.crew-card__fallback {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 34px;
  color: color-mix(in srgb, var(--hue) 85%, #fff);
}
.crew-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  margin: 16px 16px 0;
}
.crew-role {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--hue) 82%, #fff);
  margin: 5px 16px 10px;
}
.crew-bio { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0 18px 20px; }

@media (max-width: 1100px) {
  .crew__grid { grid-template-columns: repeat(3, 1fr); }
  .crew__grid--office { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}
@media (max-width: 700px) {
  .crew__grid, .crew__grid--office { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 400px) {
  .crew__grid, .crew__grid--office { grid-template-columns: 1fr; }
}

/* open-now pill */
.open-pill {
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
  text-transform: uppercase;
}
.open-pill--open { background: rgba(61, 220, 132, 0.14); color: #3ddc84; border: 1px solid rgba(61, 220, 132, 0.4); }
.open-pill--closed { background: rgba(255, 59, 77, 0.1); color: #ff8a95; border: 1px solid rgba(255, 59, 77, 0.3); }

.visit__reviews-link {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px solid rgba(25, 200, 255, 0.3);
  align-self: flex-start;
  transition: color 0.2s ease;
}
.visit__reviews-link:hover { color: var(--cyan); }

/* mobile sticky live bar */
.livebar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(6, 11, 20, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(25, 160, 255, 0.35);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.livebar.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.livebar__txt {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
}
.livebar a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-ui);
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 13px; }
}

@media (max-width: 860px) {
  .formats { grid-template-columns: 1fr; }
  .live__embed-grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .vip__panel { flex-direction: column; align-items: flex-start; }
  .vip__form { grid-template-columns: 1fr; }
  .sell__form { width: 100%; }
}

@media (max-width: 768px) {
  .livebar { display: flex; }
  body { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .holo-card--3 { display: none; }
}

@media (max-width: 860px) {
  .live__grid, .shop__grid, .visit__grid { grid-template-columns: 1fr; }
  .shop__photo { order: 2; }
  .live__screen { max-width: 520px; }
  .collections__grid { grid-template-columns: repeat(2, 1fr); }

  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(320px, 80vw);
    background: rgba(5, 9, 16, 0.97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 44px;
    gap: 28px;
    transform: translateX(100%);
    visibility: hidden; /* keeps the closed drawer out of the tab order */
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
    border-left: 1px solid var(--line);
    z-index: 70;
  }
  .nav__links.is-open { transform: translateX(0); visibility: visible; }
  .nav__links a { font-size: 20px; }
  .nav__burger { display: flex; position: relative; z-index: 80; }
}

@media (max-width: 560px) {
  .collections__grid { grid-template-columns: 1fr; }
  .ccard__media { height: 210px; }
  .ccard__media img { max-height: 182px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 24px 12px; }
  .holo-card--2 { display: none; }
  .holo-card--1 { width: 110px; top: 10%; right: 4%; opacity: 0.65; }
  .hero { padding-bottom: 80px; }
  .hero__cta .btn { width: 100%; }
  .sell__panel { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .nav__logo { height: 44px; }
}

/* ============================================================
   PRE-LAUNCH — shop not live yet (window.GG_SHOP_LIVE = false)
   Softens every /collections link so nothing dead-ends before
   the POS publishes products. Flip GG_SHOP_LIVE = true to remove.
   ============================================================ */
.btn--soon {
  opacity: 0.62;
  cursor: default;
  pointer-events: none;
  background: var(--bg-3) !important;
  color: var(--cyan) !important;
  border: 1px solid rgba(25, 200, 255, 0.4) !important;
  box-shadow: none !important;
}
.btn--soon::before { content: "\1F512  "; font-style: normal; }

.lcard.is-soon { cursor: default; }
.lcard.is-soon::after {
  content: "Dropping Soon";
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cyan);
  padding: 5px 9px;
  border-radius: 7px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.lcard.is-soon .lcard__label em { opacity: 0.85; }

.link-soon {
  color: var(--muted) !important;
  opacity: 0.9;
  cursor: default;
  pointer-events: none;
  text-decoration: none !important;
  border-bottom: 1px dotted currentColor !important;
}

/* ============================================================
   STOREFEATURE — the flagship photo, front and center under the live band
   ============================================================ */
.storefeature {
  position: relative;
  margin-top: clamp(18px, 2.5vw, 30px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  aspect-ratio: 21 / 10;
  background: var(--bg-3);
}
.storefeature img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 58%;   /* keeps the GG floor logo + cases in frame */
}
.storefeature figcaption {
  position: absolute;
  left: 16px; bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(4, 7, 12, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line2, rgba(78, 130, 200, 0.32));
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .storefeature { aspect-ratio: 4 / 3; }
}

/* ============================================================
   INSIDE-THE-SHOP GALLERY — real store photos, swipe strip
   ============================================================ */
.gallery { margin-top: clamp(34px, 4vw, 56px); overflow: hidden; }
.gallery-strip {
  display: flex;
  width: max-content;
  animation: galleryDrift 55s linear infinite;
  padding-bottom: 6px;
}
.gallery:hover .gallery-strip { animation-play-state: paused; }
.gallery-set { display: flex; gap: 14px; padding-right: 14px; }
@keyframes galleryDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-strip { animation: none; overflow-x: auto; width: auto; }
  .gallery-set[aria-hidden="true"] { display: none; }
}
.gallery-strip figure {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 460px);
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
}
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-strip figure:hover img { transform: scale(1.04); }
.gallery-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 10px;
  background: linear-gradient(to top, rgba(4, 7, 12, 0.85), transparent);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* footer legal / policy links */
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 12px;
}
.footer__legal a {
  color: var(--muted);
  font-size: 12.5px;
  border-bottom: 1px solid rgba(78, 130, 200, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__legal a:hover { color: var(--cyan); border-color: var(--cyan); }

/* ---- Animated crew avatars (Avatar Studio) ---- */
.crew-card__media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.4s ease;
}
.crew-card__media video.is-ready { opacity: 1; }
.crew-card:hover .crew-card__media video { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .crew-card__media video { display: none; } }
