/* ============================================================
   PartyUp — site styles
   Dark obsidian + amber/gold core, neon accents (violet/cyan/pink)
   Matches the in-app brand palette.
   ============================================================ */

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

:root {
  /* Surface */
  --obsidian:        #09090B;
  --obsidian-2:      #0D0612;
  --surface:         #14111C;
  --surface-2:       #1A1623;

  /* Brand */
  --amber:           #F59E0B;
  --amber-light:     #FBBF24;
  --amber-deep:      #D97706;
  --gold:            #FBBF24;

  /* Neon accents */
  --violet:          #8B5CF6;
  --cyan:            #06B6D4;
  --pink:            #EC4899;
  --emerald:         #10B981;
  --red:             #F12711;

  /* Text */
  --text:            #F5F4F7;
  --text-muted:      #A8A4B5;
  --text-faint:      #6B6878;

  /* Glass */
  --glass:           rgba(255, 255, 255, 0.04);
  --glass-strong:    rgba(255, 255, 255, 0.07);
  --glass-border:    rgba(255, 255, 255, 0.10);

  /* Type */
  --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display:    'Space Grotesk', 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--obsidian);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--amber-light); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

::selection { background: var(--amber); color: var(--obsidian); }

/* ---------- Animated background orbs ---------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: orbDrift 22s ease-in-out infinite;
}
.orb-amber  { background: #F59E0B; top: -120px; left: -120px; animation-delay: 0s; }
.orb-violet { background: #8B5CF6; top: 40%; right: -180px; animation-delay: -7s; }
.orb-cyan   { background: #06B6D4; bottom: -160px; left: 30%; animation-delay: -14s; opacity: 0.20; }

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.08); }
  66%      { transform: translate(-40px, 50px) scale(.95); }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .floating-gift, .live-dot, .stream-tile { animation: none !important; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo:hover { color: var(--text); }
.nav-logo em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber-light), var(--amber-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-logo-img {
  height: 32px;
  width: 32px;
  border-radius: 9px;
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--pink));
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 140px 24px 40px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.30);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #FCA5A5;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 10px #EF4444;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--text);
}
.grad-amber, .grad-pink, .grad-cyan {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-amber { background-image: linear-gradient(135deg, #FBBF24, #F59E0B 50%, #D97706); }
.grad-pink  { background-image: linear-gradient(135deg, #F472B6, #EC4899 50%, #BE185D); }
.grad-cyan  { background-image: linear-gradient(135deg, #67E8F9, #06B6D4 50%, #8B5CF6); }

.hero-tagline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

/* Store badges shared */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.store-badges a {
  transition: transform .2s ease;
  display: inline-block;
}
.store-badges a img { height: 50px; border-radius: 8px; }
.store-badges a:hover { transform: translateY(-2px); }
.store-badges .gplay-badge { height: 74px; margin-top: -12px; }

/* ---------- Hero visual ---------- */
.hero-visual {
  position: relative;
  margin: 64px auto 0;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 16 / 11;
}

/* Confetti / particle backdrop, bright on dark — screen-blends into bg */
.hero-particles {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: screen;
  filter: saturate(120%) contrast(105%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at center, #000 30%, transparent 80%);
  animation: particlesDrift 24s ease-in-out infinite;
  z-index: 0;
}
@keyframes particlesDrift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.06) rotate(2deg); }
}

/* Phones — tight elliptical mask crops to just the phone+gift cluster,
   killing the lavender bokeh so it sits flush on the obsidian bg */
.hero-phones {
  position: relative;
  width: 70%;
  margin: 0 auto;
  display: block;
  z-index: 2;
  filter:
    brightness(1.08) contrast(1.12) saturate(1.08)
    drop-shadow(0 40px 70px rgba(245, 158, 11, 0.40))
    drop-shadow(0 16px 32px rgba(236, 72, 153, 0.30))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7));
  -webkit-mask-image: radial-gradient(ellipse 38% 46% at center, #000 50%, rgba(0,0,0,0.4) 75%, transparent 96%);
          mask-image: radial-gradient(ellipse 38% 46% at center, #000 50%, rgba(0,0,0,0.4) 75%, transparent 96%);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Floating emoji gifts */
.float-emoji {
  position: absolute;
  font-size: 32px;
  z-index: 3;
  filter: drop-shadow(0 4px 14px rgba(245, 158, 11, 0.45));
  animation: floatRise 7s ease-in infinite;
  opacity: 0;
}
.f1 { left: 12%; bottom: 0;  animation-delay: 0s;   font-size: 30px; }
.f2 { left: 86%; bottom: 0;  animation-delay: -1.4s; font-size: 26px; }
.f3 { left: 22%; bottom: 0;  animation-delay: -2.8s; font-size: 28px; }
.f4 { left: 76%; bottom: 0;  animation-delay: -4.2s; font-size: 32px; }
.f5 { left: 50%; bottom: 0;  animation-delay: -5.6s; font-size: 36px; }
.f6 { left: 38%; bottom: 0;  animation-delay: -7s;   font-size: 24px; }
@keyframes floatRise {
  0%   { transform: translateY(0)    scale(0.6) rotate(0deg);  opacity: 0; }
  10%  { opacity: 0.95; }
  85%  { opacity: 0.95; }
  100% { transform: translateY(-180%) scale(1)   rotate(20deg); opacity: 0; }
}

/* ---------- Live marquee strip ---------- */
.live-marquee {
  margin: 12px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(90deg,
    rgba(245, 158, 11, 0.04),
    rgba(236, 72, 153, 0.04) 50%,
    rgba(6, 182, 212, 0.04));
  overflow: hidden;
  position: relative;
}
.live-marquee::before,
.live-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.live-marquee::before { left: 0;  background: linear-gradient(90deg, var(--obsidian), transparent); }
.live-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--obsidian), transparent); }

.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
}
.m-item:hover { color: var(--text); }
.m-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #EF4444;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  max-width: 980px;
  margin: 80px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--amber-light), var(--amber-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ---------- Sections ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-narrow { max-width: 780px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 16px;
}

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.bento-lg   { grid-column: span 2; grid-row: span 1; }
.bento-wide { grid-column: 1 / -1; }

.bento-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-4px);
  background: var(--glass-strong);
}
.bento-card:hover::before { opacity: 1; }
.accent-amber:hover::before  { background: linear-gradient(135deg, #FBBF24, #D97706); }
.accent-pink:hover::before   { background: linear-gradient(135deg, #F472B6, #BE185D); }
.accent-cyan:hover::before   { background: linear-gradient(135deg, #67E8F9, #06B6D4); }
.accent-violet:hover::before { background: linear-gradient(135deg, #A78BFA, #6D28D9); }
.accent-gold:hover::before   { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.accent-emerald:hover::before{ background: linear-gradient(135deg, #34D399, #047857); }

/* ---- Image-backed bento (full-bleed image, text overlay) ---- */
.bento-image {
  padding: 0;
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.bento-image .bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.bento-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(9, 9, 11, 0.30) 40%,
    rgba(9, 9, 11, 0.85) 80%,
    rgba(9, 9, 11, 0.95) 100%);
  z-index: 1;
}
.bento-image:hover .bento-img { transform: scale(1.06); }
.bento-image .bento-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 26px 24px;
  z-index: 2;
}
.bento-image .bento-body h3 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.bento-image .bento-body p {
  color: rgba(245, 244, 247, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.bento-lg.bento-image { min-height: 360px; }
.bento-lg.bento-image .bento-body p { max-width: 480px; }

/* LIVE tag in top-left of imaged cards */
.bento-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  background: #EF4444;
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.5);
}
.tag-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #fff;
  animation: livePulse 1.4s ease-in-out infinite;
}

/* ---- Non-image bento cards: decorative CSS art ---- */
.bento-art {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-art > .bento-icon,
.bento-art > h3,
.bento-art > p {
  position: relative;
  z-index: 2;
}

/* Friends — floating chat bubbles */
.bento-art.accent-violet {
  background:
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.35), transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(167, 139, 250, 0.20), transparent 55%),
    var(--glass);
}
.art-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.art-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.55), rgba(139, 92, 246, 0.18));
  filter: blur(0.5px);
  animation: bubbleFloat 6s ease-in-out infinite;
}
.art-bubbles span:nth-child(1) { width: 56px; height: 56px; top: 18%; right: 14%; animation-delay: 0s; }
.art-bubbles span:nth-child(2) { width: 32px; height: 32px; top: 48%; right: 38%; animation-delay: -1.5s; opacity: 0.7; }
.art-bubbles span:nth-child(3) { width: 22px; height: 22px; top: 32%; right: 60%; animation-delay: -3s; opacity: 0.5; }
.art-bubbles span:nth-child(4) { width: 14px; height: 14px; top: 58%; right: 22%; animation-delay: -4.5s; opacity: 0.6; }
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.06); }
}

/* Sign in fast — lightning bolt streak */
.bento-art.accent-emerald {
  background:
    radial-gradient(circle at 70% 30%, rgba(52, 211, 153, 0.28), transparent 55%),
    linear-gradient(135deg, rgba(16, 185, 129, 0.10), transparent 60%),
    var(--glass);
}
.art-bolt {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 110px;
  height: 110px;
  background:
    radial-gradient(circle at center, rgba(251, 191, 36, 0.50) 0%, rgba(245, 158, 11, 0.30) 30%, transparent 70%);
  filter: blur(8px);
  animation: boltPulse 2.8s ease-in-out infinite;
  z-index: 1;
}
.art-bolt::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #FBBF24, #F59E0B, transparent);
  border-radius: 4px;
  filter: blur(0.5px) drop-shadow(0 0 8px #FBBF24);
}
@keyframes boltPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1.0;  transform: scale(1.15); }
}

/* Coin wallet — tumbling coins row */
.bento-art.accent-gold {
  background:
    radial-gradient(circle at 90% 20%, rgba(251, 191, 36, 0.22), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.15), transparent 55%),
    linear-gradient(135deg, rgba(217, 119, 6, 0.08), transparent 60%),
    var(--glass);
}
.bento-art.accent-gold .bento-icon,
.bento-art.accent-gold h3,
.bento-art.accent-gold p {
  max-width: 60%;
}
.art-coins {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 28px;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.5));
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at center, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 75% 75% at center, #000 30%, transparent 80%);
}
.art-coins span {
  display: inline-block;
  animation: coinSpin 3.2s ease-in-out infinite;
}
.art-coins span:nth-child(1) { animation-delay: 0s;     font-size: 36px; }
.art-coins span:nth-child(2) { animation-delay: -0.4s;  font-size: 22px; opacity: 0.7; }
.art-coins span:nth-child(3) { animation-delay: -0.8s;  font-size: 30px; }
.art-coins span:nth-child(4) { animation-delay: -1.2s;  font-size: 26px; opacity: 0.85; }
.art-coins span:nth-child(5) { animation-delay: -1.6s;  font-size: 32px; }
.art-coins span:nth-child(6) { animation-delay: -2.0s;  font-size: 20px; opacity: 0.6; }
@keyframes coinSpin {
  0%, 100% { transform: translateY(0)   rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(180deg); }
}
@media (max-width: 900px) {
  .bento-art.accent-gold .bento-icon,
  .bento-art.accent-gold h3,
  .bento-art.accent-gold p { max-width: 100%; }
  .art-coins { display: none; }
}

.bento-icon {
  font-size: 40px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.35));
}
.accent-pink   .bento-icon { filter: drop-shadow(0 4px 12px rgba(236, 72, 153, 0.45)); }
.accent-cyan   .bento-icon { filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.45)); }
.accent-violet .bento-icon { filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.45)); }
.accent-emerald .bento-icon{ filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.45)); }

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.bento-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.bento-lg h3   { font-size: 26px; }
.bento-lg p    { font-size: 16px; max-width: 480px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding: 28px 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--amber-light), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  opacity: 0.85;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- CTA ---------- */
.cta {
  margin: 60px auto;
  padding: 0 24px;
  max-width: 1100px;
}
.cta-inner {
  position: relative;
  padding: 80px 32px 90px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.20), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.18), transparent 55%),
    linear-gradient(135deg, var(--surface), var(--obsidian-2));
  border: 1px solid rgba(245, 158, 11, 0.25);
  overflow: hidden;
  text-align: center;
}
/* Banner image (PartyUp + phones) as soft right-side backdrop */
.cta-bg {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  max-width: 760px;
  height: auto;
  opacity: 0.18;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at center, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 80% at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* Mascot peeking from bottom-left — radial mask crops to cat+halo only */
.cta-mascot {
  position: absolute;
  left: 32px;
  bottom: 4px;
  width: 160px;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(245, 158, 11, 0.55)) brightness(1.08);
  -webkit-mask-image: radial-gradient(ellipse 42% 48% at 50% 52%, #000 55%, rgba(0,0,0,0.5) 75%, transparent 95%);
          mask-image: radial-gradient(ellipse 42% 48% at 50% 52%, #000 55%, rgba(0,0,0,0.5) 75%, transparent 95%);
  animation: mascotBob 4.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 40%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 17px;
}
@media (max-width: 700px) {
  .cta-mascot { width: 90px; left: 12px; bottom: -10px; opacity: 0.85; }
  .cta-bg { opacity: 0.10; }
  .cta-inner { padding: 60px 22px 70px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: border-color .2s ease;
}
.faq-item.open { border-color: rgba(245, 158, 11, 0.30); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--amber-light);
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 16px;
  display: inline-block;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 60%),
    var(--glass);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 18px;
  padding: 36px 28px;
}
.contact-mascot {
  width: 130px;
  height: 130px;
  margin: -10px auto 6px;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(245, 158, 11, 0.45)) brightness(1.08);
  -webkit-mask-image: radial-gradient(ellipse 42% 48% at 50% 52%, #000 55%, rgba(0,0,0,0.5) 75%, transparent 95%);
          mask-image: radial-gradient(ellipse 42% 48% at 50% 52%, #000 55%, rgba(0,0,0,0.5) 75%, transparent 95%);
  animation: mascotBob 4.5s ease-in-out infinite;
}
@keyframes mascotBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

.contact-box p {
  color: var(--text-muted);
  margin-bottom: 18px;
}
.contact-email {
  font-size: 22px;
  font-weight: 700;
  color: var(--amber-light);
  font-family: var(--font-display);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 80px;
  border-top: 1px solid var(--glass-border);
  padding: 56px 24px 32px;
  background: linear-gradient(180deg, transparent, rgba(9, 9, 11, 0.6));
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--amber-light); }
.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 240px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  color: var(--text-faint);
  font-size: 13px;
}
.footer-badges a img { height: 38px; border-radius: 6px; }
.footer-badges .gplay-badge { height: 56px; margin-top: -10px; }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--amber-light), var(--amber-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal .last-updated {
  color: var(--text-faint);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--amber-light);
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal ul { padding-left: 24px; margin-bottom: 12px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg, .bento-wide { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .navbar { padding: 12px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .nav-links li:nth-child(n+4) { display: none; }
  .hero { padding: 110px 20px 30px; }
  .hero-title { line-height: 1.08; }
  .hero-tagline { font-size: 15px; }
  .phone-mock { width: 240px; }
  .phone-frame { width: 240px; height: 500px; }
  .section { padding: 70px 20px; }
  .section-sub { margin-bottom: 36px; }
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-wide { grid-column: span 1; }
  .bento-card { padding: 24px 20px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: 50px; }
  .stat strong { font-size: 26px; }
  .cta-inner { padding: 50px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column-reverse; text-align: center; }
}
