/* =================================================================
   OCTY'S LIFE — v2  ·  Cinematic nightlife
   ================================================================= */

:root {
  --bg: #06050C;
  --bg-2: #0E0A1E;
  --bg-3: #15082C;
  --ink: #F4F1FF;
  --ink-dim: #B6B1CE;
  --ink-mute: #6F6A8C;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --line-hot: rgba(255,61,138,0.45);

  --violet: #B14EFF;
  --violet-2: #7B2BFF;
  --pink: #FF3D8A;
  --magenta: #FF00C8;
  --blue: #2E6BFF;
  --cyan: #1FE0FF;
  --acid: #C8FF2D;

  --grad-1: linear-gradient(110deg, #B14EFF 0%, #FF3D8A 50%, #1FE0FF 100%);
  --grad-vp: linear-gradient(135deg, #B14EFF, #FF3D8A);
  --grad-pc: linear-gradient(135deg, #FF3D8A, #1FE0FF);
  --grad-bv: linear-gradient(135deg, #2E6BFF, #B14EFF);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --max: 1400px;
  --pad: clamp(20px, 4vw, 64px);

  --font-mega: "Anton", "Impact", "Helvetica Neue Condensed", sans-serif;
  --font-display: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* Accessibility — skip link + visible focus */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 100;
}
.skip-link:focus {
  left: 16px; top: 16px;
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
input:focus-visible, select:focus-visible {
  outline: none; /* fields have their own focus style via .field input:focus */
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--pink); color: #06050C; }

/* ---------- Background ---------- */
.bg-stack { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.bg-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 700px at 80% -10%, rgba(177,78,255,0.35), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(255,61,138,0.28), transparent 60%),
    radial-gradient(900px 800px at 50% 110%, rgba(31,224,255,0.22), transparent 60%),
    linear-gradient(180deg, #06050C 0%, #0a0716 100%);
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 80%);
}
.bg-scan {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  opacity: 0.5;
}
#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
#mouseGlow {
  position: fixed; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,78,255,0.22) 0%, rgba(255,61,138,0.12) 30%, transparent 65%);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  filter: blur(8px);
  opacity: 0;
  transition: opacity .35s ease;
}
@media (max-width: 900px) { #mouseGlow { display: none; } }
.bg-noise {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='1.0' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* hero photo backdrop — removed; the skyline scene below replaces the old palm-neon treatment */

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); position: relative; z-index: 5; }
section { position: relative; z-index: 4; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 14px; z-index: 50;
  margin: 14px auto 0; max-width: calc(var(--max) - 24px);
  padding: 0 14px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  background: rgba(10,7,22,0.6);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.nav-inner.scrolled {
  border-color: rgba(177,78,255,0.25);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(177,78,255,0.18);
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
}

/* Hero */
.hero {
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Hero backdrop — wide NOLA skyline scene fills the hero.
   Baked-in top/bottom alpha fades blend it into the page bg.
   Opacity tuned so the neon orbs + grid still read through. */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url("img/hero-skyline.png") center top / cover no-repeat;
  opacity: 0.7;
  filter: saturate(1.1);
}
@media (max-width: 980px) {
  .hero-photo { opacity: 0.55; }
}

/* Mascot — towering presence rising from behind the city skyline */
.hero-watermark {
  position: absolute;
  top: 80px;
  right: -12%;
  width: min(70%, 940px);
  aspect-ratio: 800 / 533;
  z-index: 2;
  background: url("img/mascot-character.png") right top / contain no-repeat;
  pointer-events: none;
  opacity: 0.85;
  filter: saturate(1.05) drop-shadow(0 6px 24px rgba(0,0,0,0.55));
  /* Vertical: solid through top half, dissolves through "building horizon" zone */
  /* Diagonal: fades into headline on the left */
  -webkit-mask-image:
    linear-gradient(180deg,
      #000 0%,
      #000 40%,
      rgba(0,0,0,0.85) 50%,
      rgba(0,0,0,0.35) 62%,
      transparent 75%),
    linear-gradient(245deg,
      #000 0%,
      #000 45%,
      rgba(0,0,0,0.55) 72%,
      transparent 95%);
          mask-image:
    linear-gradient(180deg,
      #000 0%,
      #000 40%,
      rgba(0,0,0,0.85) 50%,
      rgba(0,0,0,0.35) 62%,
      transparent 75%),
    linear-gradient(245deg,
      #000 0%,
      #000 45%,
      rgba(0,0,0,0.55) 72%,
      transparent 95%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  animation: mascotDrift 22s ease-in-out infinite alternate;
}
@keyframes mascotDrift {
  0%   { transform: translate(0, 0); opacity: 0.8; }
  100% { transform: translate(-8px, 4px); opacity: 0.9; }
}
@media (max-width: 980px) and (min-width: 720px) {
  .hero-watermark { width: 65%; right: -2%; top: -20px; opacity: 0.7; }
}
@media (max-width: 720px) {
  .hero-watermark {
    width: 80%;
    right: -8%;
    top: -10px;
    opacity: 0.5;
  }
}

/* Footer giant logo */
.foot-logo-mega {
  width: 200px; height: 200px;
  background: url("img/octy-logo.png") center/contain no-repeat;
  margin: 60px 0 30px;
  filter: drop-shadow(0 0 30px rgba(177,78,255,0.35));
  opacity: 0.85;
}

/* Phone app logo treatment */
.app-pill {
  background-image: url("img/octy-logo.png"), var(--grad-vp);
  background-size: 70% auto, 100% 100%;
  background-repeat: no-repeat;
  background-position: center, center;
  font-size: 0 !important;
}

/* ---------- Mascot ---------- */
/* (orbit + meet section removed — mascot now lives only as the hero watermark) */
.logo-mark {
  width: 34px; height: 34px;
  background: url("img/octy-logo.png") center/contain no-repeat;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(177,78,255,0.45)) drop-shadow(0 0 18px rgba(255,200,80,0.18));
  animation: logoGlow 5s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  from { filter: drop-shadow(0 0 8px rgba(177,78,255,0.35)) drop-shadow(0 0 16px rgba(255,200,80,0.12)); }
  to   { filter: drop-shadow(0 0 16px rgba(177,78,255,0.65)) drop-shadow(0 0 24px rgba(255,200,80,0.28)); }
}
.nav-links { display: flex; gap: 4px; font-size: 13px; color: var(--ink-dim); }
.nav-links a {
  padding: 8px 14px; border-radius: 999px;
  transition: all .2s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav-links a.active {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(177,78,255,0.18), rgba(255,61,138,0.12));
  box-shadow: inset 0 0 0 1px rgba(177,78,255,0.35);
}
@media (max-width: 920px) { .nav-links { display: none; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-weight: 600; font-size: 13px;
  border-radius: 999px;
  letter-spacing: 0.005em;
  transition: transform .2s ease, box-shadow .3s ease;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--grad-vp);
  color: #fff;
  box-shadow: 0 14px 40px -12px rgba(255,61,138,0.6), inset 0 0 0 1px rgba(255,255,255,0.2);
  overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -10px rgba(255,61,138,0.8); }
.btn-primary:hover::after { transform: translateX(110%); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.btn-lg { padding: 16px 26px; font-size: 15px; }

/* ---------- HERO ---------- */
.hero-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}
.hero-stat-band {
  display: flex;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stat-band > div {
  flex: 1;
  padding: 16px 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stat-band > div:last-child { border-right: 0; }
.hero-stat-band .num {
  font-family: var(--font-mega);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-stat-band .num.grad { background: var(--grad-pc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat-band .lbl {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
}
@media (max-width: 700px) {
  .hero-stat-band { flex-wrap: wrap; }
  .hero-stat-band > div { flex: 1 1 50%; border-bottom: 1px solid var(--line); }
  .hero-stat-band > div:nth-child(even) { border-right: 0; }
}

.hero-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
@media (max-width: 1020px) { .hero-top { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-dim);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* MEGA headline */
.mega {
  font-family: var(--font-mega);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 240px);
  line-height: 0.82;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 22px 0 0;
  text-wrap: balance;
}
.mega .line { display: block; position: relative; overflow: hidden; }
.mega .line .inner {
  display: block;
  transform: translateY(110%);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
/* Bold gold-glitter border on the white hero lines
   ("Your city's" + "All in one app.") — skips line 2's gradient "Nightlife,".

   Stacking inside .gold-glitter (isolation:isolate scopes negative z):
     ::before  z:-2 — solid thick gold stroked clone (the ring)
     ::after   z:-1 — same clone with a moving bright highlight (the shimmer sweep)
     host text z: 0 — plain white fill covers the interior of both layers,
                       leaving only the outer stroke band visible as a ring */

/* The parent .line needs to allow vertical overflow so the gold ring above
   the letters isn't sliced off. We swap the translate-based rise reveal for
   a fade so removing overflow:hidden doesn't expose text sitting below. */
.mega .gold-line {
  overflow: visible;
  padding-block: 0.06em;
}
.mega .gold-line .gold-glitter {
  transform: none !important;
  opacity: 0;
  animation-name: goldRise;
  animation-duration: .9s;
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
  animation-fill-mode: forwards;
}
@keyframes goldRise { to { opacity: 1; } }

.mega .gold-glitter {
  position: relative;
  isolation: isolate;
  /* white fill stays from inherited --ink */
}

/* Layer 1 (behind, behind, behind host text) — the solid gold ring */
.mega .gold-glitter::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -2;
  color: transparent;
  -webkit-text-stroke: 7px #E8B85C;
  paint-order: stroke fill;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(232,184,92,0.5));
}

/* Layer 2 (just behind host text) — bright highlight that sweeps across.
   Background-clip:text clips the gradient to the glyph silhouette including
   stroke; the inner (fill) portion is hidden by the white text on top, so
   the highlight reads as a moving sheen on the gold ring only. */
.mega .gold-glitter::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 7px transparent;
  background: linear-gradient(110deg,
    transparent 0%,
    transparent 42%,
    rgba(255,243,200,0.85) 48%,
    #FFFAE2 50%,
    rgba(255,243,200,0.85) 52%,
    transparent 58%,
    transparent 100%
  );
  background-size: 360% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  animation: goldShimmer 3.6s linear infinite;
  pointer-events: none;
}

@keyframes goldShimmer {
  0%   { background-position: 260% 0; }
  100% { background-position: -160% 0; }
}

.mega .line:nth-child(1) .inner { animation-delay: 0.1s; }
.mega .line:nth-child(2) .inner { animation-delay: 0.25s; }
.mega .line:nth-child(3) .inner { animation-delay: 0.4s; }
@keyframes rise { to { transform: translateY(0); } }

.mega .grad {
  background: linear-gradient(110deg, #FF3D8A 0%, #B14EFF 45%, #1FE0FF 95%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite alternate;
}
@keyframes shimmer {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 0%; }
}
.mega .strike {
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
}
.mega .strike::before {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em; top: 48%;
  height: 0.18em;
  background: var(--grad-vp);
  transform: scaleX(0); transform-origin: left;
  animation: stroke 1s ease 0.9s forwards;
}
@keyframes stroke { to { transform: scaleX(1); } }

.hero-right { display: flex; flex-direction: column; gap: 22px; }
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-dim);
  margin: 0;
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* Equalizer next to CTA */
.eq {
  display: inline-flex; align-items: end; gap: 3px;
  height: 26px;
}
.eq i {
  width: 3px; background: var(--cyan); border-radius: 2px;
  animation: eq 0.9s ease-in-out infinite;
  box-shadow: 0 0 6px var(--cyan);
}
.eq i:nth-child(1) { height: 30%; animation-delay: -0.4s; }
.eq i:nth-child(2) { height: 70%; animation-delay: -0.6s; background: var(--pink); box-shadow: 0 0 6px var(--pink); }
.eq i:nth-child(3) { height: 100%; animation-delay: -0.2s; background: var(--violet); box-shadow: 0 0 6px var(--violet); }
.eq i:nth-child(4) { height: 50%; animation-delay: -0.8s; }
.eq i:nth-child(5) { height: 80%; background: var(--pink); box-shadow: 0 0 6px var(--pink); }
@keyframes eq { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.3); } }

/* Hero phone composition */
.phone-comp {
  position: relative;
  height: clamp(440px, 60vw, 640px);
  width: 100%;
  display: grid; place-items: center;
}
.phone {
  position: relative;
  width: 280px; height: 580px;
  border-radius: 46px;
  background: linear-gradient(180deg, #1a1530, #0a0716);
  padding: 9px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 50px 120px -30px rgba(177,78,255,0.6),
    0 80px 150px -40px rgba(255,61,138,0.45);
  z-index: 3;
}
.phone.floating { animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(1deg); }
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  background: linear-gradient(180deg, #0d0a1c 0%, #14082a 100%);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000; border-radius: 999px;
  z-index: 5;
}

/* phone screen UI */
.app-status {
  display: flex; justify-content: space-between; padding: 14px 22px 0;
  font-size: 11px; font-weight: 600; color: var(--ink); letter-spacing: 0.02em;
  position: relative; z-index: 2;
}
.app-status .ic { display: inline-flex; gap: 4px; align-items: center; }
.app-status .ic i { width: 12px; height: 7px; background: var(--ink); border-radius: 1.5px; display: inline-block; }
.app-status .ic i.bat { width: 20px; height: 9px; border-radius: 2px; border: 1px solid var(--ink); background: linear-gradient(90deg, var(--cyan) 80%, transparent 80%); }

.app-header {
  padding: 46px 16px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.app-header h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  margin: 0; letter-spacing: -0.02em;
}
.app-header .city {
  font-size: 11px; color: var(--ink-dim); display: flex; align-items: center; gap: 4px;
  margin-top: 2px;
}
.app-header .city::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
}
.app-pill {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-vp);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}

.app-search {
  margin: 4px 16px 12px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 11px; color: var(--ink-mute);
  display: flex; align-items: center; gap: 8px;
}
.app-search::before {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  border: 1.5px solid var(--ink-dim);
}

.app-chips { display: flex; gap: 6px; padding: 0 16px 10px; overflow: hidden; }
.app-chips span {
  padding: 5px 9px; border-radius: 999px;
  font-size: 10px; color: var(--ink-dim);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.app-chips span.active { background: var(--grad-vp); color: #fff; border-color: transparent; }

.app-card {
  margin: 0 16px 10px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}
.app-card .img {
  height: 110px;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,61,138,0.7), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(31,224,255,0.55), transparent 50%),
    linear-gradient(135deg, #2a0f4a, #0a0716);
}
.app-card .img.alt {
  background:
    radial-gradient(circle at 50% 20%, rgba(177,78,255,0.8), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,61,138,0.55), transparent 50%),
    linear-gradient(135deg, #1b0a3e, #0a0716);
}
.app-card .img::after {
  content: "LIVE"; position: absolute; top: 9px; left: 9px;
  padding: 3px 6px; font-size: 8px; font-weight: 700; letter-spacing: 0.12em;
  background: var(--pink); color: #fff; border-radius: 4px;
  font-family: var(--font-mono);
}
.app-card .meta { padding: 9px 12px 11px; }
.app-card .meta h4 { margin: 0 0 2px; font-size: 13px; font-weight: 600; }
.app-card .meta p { margin: 0; font-size: 10px; color: var(--ink-dim); }
.app-card .meta .row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; font-size: 10px; }
.app-card .price {
  font-weight: 600;
  background: var(--grad-pc);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.app-tabs {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-around;
  padding: 11px 8px;
  background: rgba(10,7,22,0.85);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.app-tabs i { width: 20px; height: 20px; border-radius: 5px; background: rgba(255,255,255,0.1); display: block; }
.app-tabs i.active { background: var(--grad-vp); box-shadow: 0 0 12px rgba(177,78,255,0.7); }

/* Floating cards around phone */
.float-card {
  position: absolute;
  padding: 12px 14px;
  background: rgba(18,12,36,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
  z-index: 4;
  animation: float-card 6s ease-in-out infinite;
  white-space: nowrap;
}
.float-card .ico {
  width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--grad-vp);
  font-weight: 700; font-size: 14px;
  box-shadow: 0 0 18px rgba(177,78,255,0.5);
}
.float-card .ico.b { background: var(--grad-pc); box-shadow: 0 0 18px rgba(255,61,138,0.5); }
.float-card .ico.c { background: var(--grad-bv); box-shadow: 0 0 18px rgba(46,107,255,0.5); }
.float-card .ico.d { background: linear-gradient(135deg,#1FE0FF,#B14EFF); box-shadow: 0 0 18px rgba(31,224,255,0.5); }
.float-card .ico.e { background: linear-gradient(135deg,#FF3D8A,#2E6BFF); box-shadow: 0 0 18px rgba(255,61,138,0.5); }
.float-card strong { display: block; font-weight: 600; font-size: 12px; }
.float-card small { display: block; color: var(--ink-dim); font-size: 10px; margin-top: 1px; font-family: var(--font-mono); letter-spacing: 0.04em; }

.fc-1 { top: 4%; left: -8%; animation-delay: -1s; }
.fc-2 { top: 22%; right: -10%; animation-delay: -2.5s; }
.fc-3 { top: 56%; left: -16%; animation-delay: -4s; }
.fc-4 { bottom: 18%; right: -6%; animation-delay: -1.5s; }
.fc-5 { bottom: 1%; left: 18%; animation-delay: -3s; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 1020px) {
  .fc-1 { left: 2%; } .fc-2 { right: 2%; } .fc-3 { left: 2%; } .fc-4 { right: 2%; }
  .fc-5 { left: 50%; transform: translateX(-50%); bottom: -10px; }
}
@media (max-width: 640px) {
  .float-card { font-size: 10px; padding: 8px 10px; }
  .float-card .ico { width: 26px; height: 26px; font-size: 11px; }
  .fc-3, .fc-5 { display: none; }
}

/* ---------- Marquee strip ---------- */
.marquee-strip {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.012);
  padding: 0;
  overflow: hidden;
}
.marquee-row { padding: 22px 0; overflow: hidden; position: relative; }
.marquee-row + .marquee-row { border-top: 1px solid var(--line); }
.marquee-track {
  display: flex; gap: 60px;
  width: max-content;
  white-space: nowrap;
  animation: marqL 38s linear infinite;
}
.marquee-row.rev .marquee-track { animation-name: marqR; animation-duration: 50s; }
.marquee-row.fast .marquee-track { animation-duration: 22s; }
@keyframes marqL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.marquee-track span {
  font-family: var(--font-mega);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.005em;
  line-height: 1;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 50px;
  color: var(--ink);
}
.marquee-track span::after { content: "✦"; font-size: 24px; color: var(--violet); }
.marquee-track span.outline {
  -webkit-text-stroke: 1.5px var(--ink-dim);
  color: transparent;
}
.marquee-track span.grad {
  background: var(--grad-pc);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.marquee-track span.muted { color: var(--ink-mute); }

/* tiny data band */
.databand {
  display: flex; gap: 30px;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.3);
}
.databand-track {
  display: flex; gap: 36px; align-items: center;
  animation: marqL 70s linear infinite;
  width: max-content;
}
.databand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); display: inline-block; }
.databand .hot { color: var(--pink); }
.databand .num { color: var(--ink); }

/* ---------- Section heads ---------- */
section.block { padding: clamp(80px, 12vw, 160px) 0; }
.section-head { margin: 0 0 56px; max-width: 880px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet);
  padding: 6px 12px;
  border: 1px solid rgba(177,78,255,0.3);
  border-radius: 999px;
  background: rgba(177,78,255,0.06);
  margin-bottom: 22px;
}
.kicker .num { color: var(--ink); }
h2.head {
  font-family: var(--font-mega);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 20px;
  text-wrap: balance;
}
h2.head .grad { background: var(--grad-pc); -webkit-background-clip: text; background-clip: text; color: transparent; }
h2.head .outline { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
h2.head .ital { font-family: var(--font-display); font-weight: 600; font-style: italic; text-transform: none; letter-spacing: -0.02em; }

.sec-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-dim);
  max-width: 620px;
  margin: 0;
}
.section-head.center .sec-sub { margin: 0 auto; }

/* ---------- TONIGHT mosaic ---------- */
.tonight-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px;
}
.tonight-head h2 { margin: 0; }
.tonight-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim);
}
.tonight-meta .live-now {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,61,138,0.12); border: 1px solid var(--line-hot);
  color: var(--pink);
}
.tonight-meta .live-now::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 10px var(--pink);
  animation: pulse 1.4s ease infinite;
}
@media (max-width: 640px) {
  .tonight-head { flex-direction: column; align-items: stretch; }
  .tonight-meta { align-items: flex-start; }
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 12px;
}
@media (max-width: 900px) { .mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; } }
@media (max-width: 560px) { .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; } }

.tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.tile:hover { transform: translateY(-4px); }
.tile .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.tile:hover .photo { transform: scale(1.06); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,5,12,0.92) 100%);
  z-index: 1;
}
.tile .grain {
  position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.tile .tag {
  position: absolute; top: 12px; left: 12px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  padding: 5px 9px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  text-transform: uppercase;
}
.tile .tag.hot { background: rgba(255,61,138,0.85); border-color: transparent; color: #fff; }
.tile .tag.live { background: rgba(31,224,255,0.2); border-color: rgba(31,224,255,0.5); color: var(--cyan); }
.tile .tag.vip { background: rgba(177,78,255,0.3); border-color: rgba(177,78,255,0.6); color: #fff; }

.tile .pin {
  position: absolute; top: 12px; right: 12px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 9px; color: var(--ink-dim);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.tile .body {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  z-index: 3;
}
.tile .body h4 {
  font-family: var(--font-mega);
  font-size: clamp(20px, 2.4vw, 38px);
  text-transform: uppercase;
  line-height: 0.9; letter-spacing: 0.01em;
  margin: 0 0 6px;
}
.tile .body p {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim); margin: 0;
}
.tile .meter {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
}
.tile .meter .bars { display: inline-flex; gap: 2px; }
.tile .meter .bars b { width: 3px; height: 10px; background: var(--cyan); display: inline-block; border-radius: 1px; box-shadow: 0 0 6px var(--cyan); }
.tile .meter .bars b.off { background: rgba(255,255,255,0.15); box-shadow: none; }

/* photo backgrounds for tiles — real imagery, color-graded for cohesion */
.photo { filter: saturate(1.05) contrast(1.05); }
.ph-dj-turntables { background-image: url("img/dj-turntables.jpeg"); }
.ph-dj-neon-sign  { background-image: url("img/dj-neon-sign.jpeg"); background-position: center 30%; }
.ph-cocktails    { background-image: url("img/cocktails.jpeg"); }
.ph-dj-red       { background-image: url("img/dj-red.jpeg"); }
.ph-crowd-sil    { background-image: url("img/crowd-silhouette.jpeg"); }
.ph-ocean-drive  { background-image: url("img/ocean-drive.jpeg"); }
.ph-dj-triangle  { background-image: url("img/dj-triangle.jpeg"); }
.ph-crowd-blue   { background-image: url("img/crowd-blue.jpeg"); }
.ph-breakwater   { background-image: url("img/breakwater.jpeg"); }
.ph-miami-deco   { background-image: url("img/miami-deco.jpeg"); }
.ph-palm-neon    { background-image: url("img/palm-neon.jpeg"); }
.ph-palm-tall    { background-image: url("img/palm-tall.jpeg"); }
.ph-city         { background-image: url("img/city-skyline.jpeg"); }

/* mosaic placements */
.t1 { grid-column: span 5; grid-row: span 4; }
.t2 { grid-column: span 4; grid-row: span 2; }
.t3 { grid-column: span 3; grid-row: span 2; }
.t4 { grid-column: span 4; grid-row: span 2; }
.t5 { grid-column: span 3; grid-row: span 2; }
.t6 { grid-column: span 5; grid-row: span 3; }
.t7 { grid-column: span 4; grid-row: span 3; }
.t8 { grid-column: span 3; grid-row: span 3; }
@media (max-width: 900px) {
  .t1 { grid-column: span 6; grid-row: span 3; }
  .t2, .t3, .t4, .t5 { grid-column: span 3; grid-row: span 2; }
  .t6 { grid-column: span 6; grid-row: span 2; }
  .t7 { grid-column: span 3; grid-row: span 2; }
  .t8 { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 560px) {
  .t1 { grid-column: span 2; grid-row: span 2; }
  .t2, .t3, .t4, .t5, .t6, .t7, .t8 { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Problem / Solution ---------- */
.ps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 900px) { .ps { grid-template-columns: 1fr; } }
.ps-card {
  position: relative; overflow: hidden;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ps-card.problem {
  background:
    radial-gradient(circle at 80% 100%, rgba(255,61,138,0.18), transparent 60%),
    rgba(255,61,138,0.04);
}
.ps-card.solution {
  background:
    radial-gradient(circle at 0% 0%, rgba(177,78,255,0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(31,224,255,0.16), transparent 60%);
  border-color: rgba(177,78,255,0.3);
}
.ps-card h3 {
  font-family: var(--font-mega);
  font-size: clamp(38px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 0.92; letter-spacing: 0.005em;
  margin: 0 0 18px;
}
.ps-card p { color: var(--ink-dim); margin: 0 0 26px; font-size: 16px; max-width: 480px; }
.label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.label.bad { color: var(--pink); }
.label.good { color: var(--cyan); }
.label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

.scatter { display: flex; flex-wrap: wrap; gap: 6px; }
.scatter span {
  padding: 7px 11px; border-radius: 999px;
  font-size: 12px; font-family: var(--font-mono);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.scatter.bad span { text-decoration: line-through; text-decoration-color: rgba(255,61,138,0.7); }
.scatter.good span {
  background: linear-gradient(135deg, rgba(177,78,255,0.16), rgba(31,224,255,0.14));
  border-color: rgba(177,78,255,0.35);
  color: var(--ink);
  text-decoration: none;
}

/* ---------- BIG STICKY TEXT ---------- */
.bigtext {
  padding: clamp(40px, 8vw, 100px) 0;
  position: relative;
}
.bigtext h2 {
  font-family: var(--font-mega);
  font-size: clamp(64px, 13vw, 220px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}
.bigtext h2 .a { color: var(--ink); }
.bigtext h2 .b { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bigtext h2 .c { -webkit-text-stroke: 1.5px var(--violet); color: transparent; }

/* ---------- Features BENTO ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
@media (max-width: 1000px) { .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 600px) { .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }

.feat {
  position: relative; overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all .35s ease;
  isolation: isolate;
}
.feat::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(177,78,255,0.18), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.feat:hover { transform: translateY(-3px); border-color: rgba(177,78,255,0.5); }
.feat:hover::before { opacity: 1; }
.feat > * { position: relative; z-index: 1; }
.feat .icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-strong);
  transition: all .35s ease;
}
.feat:hover .icon { background: var(--grad-vp); border-color: transparent; box-shadow: 0 0 24px rgba(177,78,255,0.5); }
.feat .icon svg { width: 22px; height: 22px; stroke: currentColor; }
.feat h4 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700; letter-spacing: -0.015em;
  margin: 16px 0 6px;
}
.feat p { color: var(--ink-dim); font-size: 13px; margin: 0; max-width: 320px; }

.feat .vis { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.7; transition: opacity .4s ease; }
.feat:hover .vis { opacity: 1; }
.feat .vis-content { position: absolute; bottom: -10px; right: -10px; }

/* bento spans */
.feat.b1 { grid-column: span 3; grid-row: span 2; }
.feat.b2 { grid-column: span 3; grid-row: span 1; }
.feat.b3 { grid-column: span 2; grid-row: span 1; }
.feat.b4 { grid-column: span 4; grid-row: span 2; }
.feat.b5 { grid-column: span 2; grid-row: span 1; }
.feat.b6 { grid-column: span 2; grid-row: span 1; }
.feat.b7 { grid-column: span 4; grid-row: span 1; }
.feat.b8 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 1000px) {
  .feat.b1 { grid-column: span 4; grid-row: span 2; }
  .feat.b2 { grid-column: span 4; grid-row: span 1; }
  .feat.b3 { grid-column: span 2; grid-row: span 1; }
  .feat.b4 { grid-column: span 4; grid-row: span 2; }
  .feat.b5 { grid-column: span 2; grid-row: span 1; }
  .feat.b6 { grid-column: span 2; grid-row: span 1; }
  .feat.b7 { grid-column: span 4; grid-row: span 1; }
  .feat.b8 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 600px) {
  .feat.b1, .feat.b2, .feat.b3, .feat.b4, .feat.b5, .feat.b6, .feat.b7, .feat.b8 { grid-column: span 2; grid-row: span 1; min-height: 220px; }
}

/* Specific bento visuals */
.feat.b1 .big-map {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(177,78,255,0.4), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(255,61,138,0.4), transparent 35%),
    radial-gradient(circle at 50% 85%, rgba(31,224,255,0.3), transparent 30%),
    linear-gradient(180deg, #0e0a1e 0%, #06050C 100%);
  opacity: 0.35;
}
.feat.b1 .big-map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pins { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.heat {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 6px rgba(255,61,138,0.2), 0 0 20px var(--pink);
  animation: pulse 2s ease infinite;
}

.feat.b8 .vert-meter {
  display: flex; align-items: end; gap: 4px; height: 60%; margin-top: 10px;
}
.feat.b8 .vert-meter b {
  width: 6px; background: var(--grad-vp); border-radius: 2px;
  animation: eq 1s ease infinite;
}

.feat.b4 .ticket-mock {
  position: absolute; right: -10px; bottom: -10px; width: 220px;
  padding: 14px; border-radius: 16px;
  background: linear-gradient(135deg, #B14EFF, #FF3D8A);
  transform: rotate(-6deg);
  box-shadow: 0 30px 60px -20px rgba(255,61,138,0.6);
  z-index: 0;
}
.feat.b4 .ticket-mock .lbl { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.7); }
.feat.b4 .ticket-mock h5 { font-family: var(--font-mega); margin: 4px 0 0; font-size: 20px; text-transform: uppercase; color: #fff; }
.feat.b4 .ticket-mock .bar { margin-top: 10px; height: 22px; background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 5px); border-radius: 3px; }

/* ---------- App preview carousel ---------- */
.preview-wrap {
  position: relative;
  margin-top: 40px;
  padding: 30px 0;
  overflow: hidden;
}
.preview-track {
  display: flex; gap: 22px;
  animation: marqL 60s linear infinite;
  width: max-content;
}
.preview-wrap:hover .preview-track { animation-play-state: paused; }
.phone-mini {
  flex: 0 0 220px;
  width: 220px; height: 460px;
  border-radius: 36px;
  background: linear-gradient(180deg, #1a1530, #0a0716);
  padding: 7px;
  box-shadow: 0 30px 70px -20px rgba(177,78,255,0.45);
  position: relative;
}
.phone-mini:nth-child(odd) { transform: translateY(20px); }
.phone-mini .scr {
  width: 100%; height: 100%; border-radius: 30px;
  overflow: hidden; position: relative;
  background: linear-gradient(180deg, #0d0a1c, #160a30);
}
.scr-label {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  white-space: nowrap;
}

.scr-map {
  background:
    radial-gradient(circle at 30% 40%, rgba(177,78,255,0.5), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255,61,138,0.5), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(31,224,255,0.4), transparent 25%),
    linear-gradient(180deg, #0a0716, #1a0a3e);
}
.scr-map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.step .stepno {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-mega);
  font-size: clamp(80px, 9vw, 140px);
  line-height: 0.85;
  background: linear-gradient(180deg, rgba(177,78,255,0.55), rgba(177,78,255,0));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.step-vis {
  position: absolute; left: 0; right: 0; top: 0; bottom: 130px;
  opacity: 0.9; pointer-events: none;
}
.step-vis .vis-stage {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.step h4, .step p { z-index: 2; }
.step h4 {
  font-family: var(--font-mega);
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  margin: 0 0 6px;
  letter-spacing: 0.005em;
  position: relative;
}
.step p { color: var(--ink-dim); font-size: 14px; margin: 0; position: relative; max-width: 280px; }

/* ---------- For Venues ---------- */
.venues-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 1020px) { .venues-wrap { grid-template-columns: 1fr; } }
.venues-visual {
  position: relative;
  border-radius: 32px;
  padding: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(177,78,255,0.28), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(31,224,255,0.22), transparent 60%),
    linear-gradient(180deg, #100822, #06050C);
  border: 1px solid var(--line-strong);
  min-height: 540px;
  overflow: hidden;
}
.dash-head {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.dash-head .live {
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(255,61,138,0.18);
  color: var(--pink);
  font-weight: 700;
}
.dash-card {
  background: rgba(20,15,40,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 18px;
  position: relative;
}
.dash-card + .dash-card { margin-top: 12px; }
.dash-card .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.dash-card h5 { font-family: var(--font-display); margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.dash-card p { margin: 0; font-size: 12px; color: var(--ink-dim); }
.metric {
  font-family: var(--font-mega);
  font-size: clamp(32px, 4vw, 48px); line-height: 1;
  background: var(--grad-pc);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.trend { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--cyan); }
.spark {
  margin-top: 12px;
  height: 50px; width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.spark svg { width: 100%; height: 100%; }

.venues-copy ul { padding: 0; list-style: none; margin: 0 0 32px; }
.venues-copy ul li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px;
  color: var(--ink-dim);
  font-size: 15px;
}
.venues-copy ul li:last-child { border-bottom: 1px solid var(--line); }
.venues-copy ul li::before {
  content: ""; width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-vp);
  box-shadow: 0 0 16px rgba(177,78,255,0.5);
  flex-shrink: 0;
}

/* ---------- Waitlist ---------- */
.waitlist {
  margin: 0 auto; max-width: 820px;
  padding: 56px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(177,78,255,0.3), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255,61,138,0.25), transparent 50%),
    linear-gradient(180deg, rgba(20,15,40,0.6), rgba(10,7,22,0.85));
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  position: relative; overflow: hidden;
}
@media (max-width: 640px) { .waitlist { padding: 30px 22px; } }
.waitlist::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}
.waitlist .kicker { margin-bottom: 18px; }
.waitlist h2.head { font-size: clamp(40px, 6vw, 72px); margin-bottom: 14px; }
.waitlist .sec-sub { margin-bottom: 6px; }

.form {
  display: grid; gap: 14px; margin-top: 28px;
  grid-template-columns: 1fr 1fr;
  position: relative; z-index: 2;
}
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: all .2s ease;
  outline: none;
}
.field input:focus {
  border-color: var(--violet);
  background: rgba(177,78,255,0.06);
  box-shadow: 0 0 0 4px rgba(177,78,255,0.18);
}
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; grid-column: 1 / -1; }
@media (max-width: 560px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
.role {
  padding: 14px 8px; text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px; color: var(--ink-dim);
  transition: all .2s ease;
}
.role:hover { color: var(--ink); border-color: var(--line-strong); }
.role.selected {
  background: linear-gradient(135deg, rgba(177,78,255,0.22), rgba(255,61,138,0.15));
  border-color: var(--violet);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--violet), 0 8px 24px -8px rgba(177,78,255,0.5);
}
.success { text-align: center; padding: 40px 0 12px; }
.success h3 { font-family: var(--font-mega); font-size: 40px; text-transform: uppercase; margin: 16px 0 8px; }
.success p { color: var(--ink-dim); margin: 0; }
.checkmark {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-vp);
  display: grid; place-items: center; margin: 0 auto;
  box-shadow: 0 0 40px rgba(177,78,255,0.6);
}
.checkmark svg { width: 32px; height: 32px; stroke: #fff; }

/* Submit-in-flight spinner */
.spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: -2px;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- FINAL CTA ---------- */
.final {
  padding: clamp(80px, 14vw, 180px) 0 60px;
  text-align: center;
  position: relative;
}
.final h2 {
  font-family: var(--font-mega);
  font-size: clamp(80px, 16vw, 280px);
  line-height: 0.82;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.005em;
}
.final h2 .grad { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 40px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  position: relative; z-index: 4;
  margin-top: 60px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot h6 {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); margin: 0 0 16px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: 10px; font-size: 14px; color: var(--ink-dim); }
.foot ul li a:hover { color: var(--ink); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-mute);
  font-family: var(--font-mono); letter-spacing: 0.08em;
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all .2s ease;
}
.socials a:hover { background: var(--grad-vp); border-color: transparent; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* Foot brand mega */
.foot-brand {
  font-family: var(--font-mega);
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.86;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.15);
  color: transparent;
  margin-top: 50px;
  letter-spacing: 0.005em;
  user-select: none;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Atmosphere reel — full-bleed scrolling photo strip ---------- */
.atmosphere {
  margin: 0;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6,5,12,0) 0%, rgba(20,8,42,0.4) 50%, rgba(6,5,12,0) 100%);
}
.atmosphere-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.atmosphere-head h2 {
  font-family: var(--font-mega);
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.005em;
}
.atmosphere-head h2 .grad { background: var(--grad-1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.atmosphere-head .meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim);
  text-align: right;
}
@media (max-width: 720px) {
  .atmosphere-head { flex-direction: column; align-items: flex-start; }
  .atmosphere-head .meta { text-align: left; }
}

.reel {
  display: flex; gap: 16px;
  width: max-content;
  animation: marqL 60s linear infinite;
}
.atmosphere:hover .reel { animation-play-state: paused; }
.reel-card {
  position: relative;
  flex: 0 0 auto;
  width: 320px; height: 440px;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}
.reel-card.wide { width: 460px; }
.reel-card.tall { width: 280px; height: 480px; }
@media (max-width: 640px) {
  .reel-card { width: 240px; height: 340px; }
  .reel-card.wide { width: 340px; }
  .reel-card.tall { width: 220px; height: 380px; }
}
.reel-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.reel-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,5,12,0.85) 100%);
  z-index: 1;
}
.reel-card .label {
  position: absolute; left: 16px; top: 14px; z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  padding: 5px 9px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 0;
}
.reel-card .name {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  font-family: var(--font-mega);
  font-size: 26px; text-transform: uppercase;
  letter-spacing: 0.005em; line-height: 0.95;
  margin: 0;
}
.reel-card .name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-dim);
  margin-top: 6px; font-weight: 400;
  text-transform: uppercase;
}

/* venues visual — add photo backdrop variant */
.venues-visual.with-photo {
  background:
    linear-gradient(180deg, rgba(6,5,12,0.7) 0%, rgba(6,5,12,0.92) 100%),
    url("img/city-skyline.jpeg") center/cover;
}

/* feature b1 background photo */
.feat.b1 .photo-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("img/ocean-drive.jpeg") center/cover;
  opacity: 0.18;
  filter: saturate(1.1);
}
.feat.b1 .photo-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(6,5,12,0.6) 80%);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .mega .line .inner { transform: none; }
  .mega .strike::before { transform: scaleX(1); }
}

/* =========================================================
   v3 — Interactivity additions
   ========================================================= */

/* ---------- City switcher (sits inside Tonight section) ---------- */
.city-switch {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 14px 16px;
  background: rgba(10,7,22,0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  margin: 0 0 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: max-content;
  max-width: 100%;
}
.city-switch .lbl {
  color: var(--ink-mute);
  padding: 6px 8px 6px 6px;
  border-right: 1px solid var(--line);
  margin-right: 6px;
  display: inline-flex; align-items: center; gap: 8px;
}
.city-switch .lbl::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 10px var(--pink);
  animation: pulse 1.6s ease infinite;
}
.city-chip {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink-dim);
  cursor: pointer;
  transition: all .2s ease;
  background: transparent;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.city-chip:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.city-chip.active {
  background: var(--grad-vp);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px -6px rgba(255,61,138,0.55);
}
@media (max-width: 560px) {
  .city-switch { width: 100%; justify-content: flex-start; overflow-x: auto; padding: 10px 12px; }
}

/* fade animation when city tiles update */
.tile.changing { animation: tileFade .5s ease; }
@keyframes tileFade {
  0% { opacity: 1; }
  40% { opacity: 0.35; }
  100% { opacity: 1; }
}

/* ---------- Drops & Pop-Ups ---------- */
.drops-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.drops-head .meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-dim);
  text-align: right;
}
@media (max-width: 720px) { .drops-head .meta { text-align: left; } }

.drops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .drops { grid-template-columns: 1fr; } }

.drop {
  position: relative;
  padding: 28px 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 14px 20px;
  align-items: start;
  transition: transform .3s ease, border-color .3s ease;
  isolation: isolate;
  min-height: 220px;
}
.drop::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 100% 0%, var(--accent-glow, rgba(177,78,255,0.18)), transparent 60%);
  pointer-events: none;
}
.drop > * { position: relative; z-index: 1; }
.drop:hover { transform: translateY(-3px); border-color: rgba(177,78,255,0.4); }

.drop .meta-row {
  display: flex; gap: 6px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.drop .badge {
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-strong);
  color: var(--ink-dim);
}
.drop .badge.type { color: var(--violet); border-color: rgba(177,78,255,0.4); background: rgba(177,78,255,0.08); }
.drop .badge.city { color: var(--cyan); border-color: rgba(31,224,255,0.4); background: rgba(31,224,255,0.08); }
.drop .status {
  padding: 6px 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}
.drop .status.live {
  background: rgba(255,61,138,0.18);
  color: var(--pink);
  border: 1px solid var(--line-hot);
  display: inline-flex; align-items: center; gap: 7px;
}
.drop .status.live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 10px var(--pink);
  animation: pulse 1.4s ease infinite;
}
.drop .status.soon {
  background: rgba(31,224,255,0.12);
  color: var(--cyan);
  border: 1px solid rgba(31,224,255,0.35);
}
.drop .status.locked {
  background: rgba(255,255,255,0.05);
  color: var(--ink-dim);
  border: 1px solid var(--line);
}
.drop h3 {
  font-family: var(--font-mega);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.005em;
  grid-column: 1 / -1;
}
.drop p {
  color: var(--ink-dim);
  font-size: 14px;
  margin: 0;
  grid-column: 1 / -1;
  max-width: 460px;
}
.drop .countdown {
  grid-column: 1 / -1;
  margin-top: 6px;
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.drop .countdown .timer {
  display: inline-flex; align-items: center; gap: 10px;
}
.drop .countdown .digit {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  min-width: 56px;
}
.drop .countdown .digit b {
  font-family: var(--font-mega);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  background: var(--grad-pc);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.drop .countdown .digit i {
  font-style: normal;
  font-size: 9px;
  color: var(--ink-mute);
  margin-top: 4px;
  letter-spacing: 0.16em;
}
.drop.live { border-color: rgba(255,61,138,0.4); }
.drop.live::before { background: radial-gradient(circle at 100% 0%, rgba(255,61,138,0.22), transparent 60%); }

/* ---------- The Plug / Tastemakers ---------- */
.plug-head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .plug-head { grid-template-columns: 1fr; } }

.plug-reel-wrap {
  margin: 0 calc(var(--pad) * -1);
  padding: 30px 0;
  overflow: hidden;
}
.plug-reel {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqL 70s linear infinite;
  padding: 0 var(--pad);
}
.plug-reel-wrap:hover .plug-reel { animation-play-state: paused; }

.creator {
  position: relative;
  flex: 0 0 280px;
  width: 280px;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  background: #0a0716;
  border: 1px solid var(--line);
  transition: transform .4s ease, border-color .3s ease;
  cursor: pointer;
}
.creator:hover { transform: translateY(-6px); border-color: rgba(177,78,255,0.45); }
.creator .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transition: transform .8s ease;
}
.creator:hover .photo { transform: scale(1.08); }
.creator::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,5,12,0.1) 30%, rgba(6,5,12,0.92) 100%);
}
.creator .role-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  padding: 5px 9px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  text-transform: uppercase;
}
.creator .verified {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); color: #06050C;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  box-shadow: 0 0 14px rgba(31,224,255,0.6);
}
.creator .info {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2;
}
.creator .info .handle {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-dim);
  text-transform: lowercase;
  margin-bottom: 6px;
}
.creator .info h4 {
  font-family: var(--font-mega);
  font-size: 26px; text-transform: uppercase;
  letter-spacing: 0.005em; line-height: 0.95;
  margin: 0 0 8px;
}
.creator .stats {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.creator .stats .followers .num {
  background: var(--grad-pc);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 600;
}
.creator .stats .pick {
  color: var(--ink-dim);
}
.creator .stats .pick b { color: var(--ink); font-weight: 600; }

/* ---------- Live activity widget ---------- */
.activity-widget {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 40;
  padding: 12px 16px 12px 14px;
  background: rgba(10,7,22,0.85);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7), 0 0 0 1px rgba(177,78,255,0.18);
  max-width: 320px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .5s ease;
  pointer-events: none;
}
.activity-widget.in {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.activity-widget .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 1.4s ease infinite;
  flex-shrink: 0;
}
.activity-widget .text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
  font-size: 12px;
}
.activity-widget .text strong { color: var(--ink); font-weight: 600; }
.activity-widget .text .dim { color: var(--ink-dim); }
.activity-widget .text .ago {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.activity-widget .close {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .2s ease;
  flex-shrink: 0;
}
.activity-widget .close:hover { background: rgba(255,255,255,0.12); color: var(--ink); }
.activity-widget .swap {
  animation: actSwap .55s ease;
}
@keyframes actSwap {
  0% { opacity: 0; transform: translateX(-8px); }
  100% { opacity: 1; transform: translateX(0); }
}
@media (max-width: 540px) {
  .activity-widget { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ---------- Magnetic CTAs ---------- */
.btn { will-change: transform; }
.btn[data-magnetic] {
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, background .2s ease;
}

/* 3D tilt on tiles + creators */
.tile, .creator { transform-style: preserve-3d; will-change: transform; }
