/* ---------- Tokens ---------- */
:root {
  --bg: #060608;
  --bg-soft: #0c0c10;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f5f5f7;
  --muted: #9a9aa6;
  --teal: #1fddb8;
  --violet: #8b5cff;
  --grad: linear-gradient(115deg, #8b5cff 0%, #5b7cff 40%, #1fddb8 100%);
  --radius: 22px;
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Animated video background ---------- */
.bg-video {
  position: fixed; inset: 0;
  z-index: -1; overflow: hidden;
  pointer-events: none;
}
.bg-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.05);
}
.bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(139, 92, 255, 0.22), transparent 55%),
    radial-gradient(120% 90% at 80% 80%, rgba(31, 221, 184, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(6, 6, 8, 0.55), rgba(6, 6, 8, 0.64) 45%, rgba(6, 6, 8, 0.78));
}

/* ---------- Nav (floating pill) ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 16px 0;
  pointer-events: none;
}
.nav-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 9px 9px 9px 22px;
  display: flex; align-items: center; gap: 28px;
  border-radius: 999px;
  background: rgba(16, 16, 22, 0.55);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  pointer-events: auto;
}
.nav.scrolled .nav-inner {
  background: rgba(16, 16, 22, 0.72);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
}
.brand-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.nav-links {
  display: flex; gap: 26px; margin-left: auto;
  font-size: 15px; color: var(--muted);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 14px; font-weight: 600;
  padding: 9px 18px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border);
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-1px); }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { gap: 0; }
  .nav-cta { margin-left: auto; }
}

/* ---------- Layout helpers ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 120px 24px; }
.section-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
.section-head p { margin-top: 16px; color: var(--muted); font-size: 18px; }

/* ---------- Phone frame ---------- */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 1179 / 2556;
  background: #000;
  border-radius: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: hidden;
  flex: none;
}
.phone img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 32px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 175px 24px 80px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px; align-items: center;
}
.hero-glow {
  position: absolute; top: -8%; left: 50%;
  transform: translateX(-50%);
  width: 950px; height: 720px;
  background: radial-gradient(closest-side, rgba(139, 92, 255, 0.22), rgba(31, 221, 184, 0.12) 55%, transparent 75%);
  filter: blur(20px); z-index: -1; pointer-events: none;
}
.hero-title { font-size: clamp(38px, 6vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 22px; font-size: 18px; color: var(--muted); max-width: 480px; }
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ghost-btn { font-size: 15px; font-weight: 600; color: var(--text); padding: 13px 8px; }
.ghost-btn::after { content: '→'; margin-left: 7px; display: inline-block; transition: transform 0.2s; }
.ghost-btn:hover::after { transform: translateX(4px); }

.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px 11px 18px;
  border-radius: 14px; background: #fff; color: #000;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(31, 221, 184, 0.3); }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge-text small { font-size: 11px; font-weight: 500; }
.store-badge-text strong { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

.hero-meta { margin-top: 26px; display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.stars { color: #ffc24b; letter-spacing: 2px; font-size: 15px; }
.stars.big { font-size: 26px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 600px; }
.hero-visual .phone { animation: float 6s ease-in-out infinite; }
.phone-front {
  position: relative; z-index: 2;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 80px rgba(139, 92, 255, 0.22);
}
.phone-back {
  position: absolute;
  transform: translate(-58%, -8%) scale(0.86) rotate(-6deg);
  opacity: 0.85; z-index: 1;
  animation-delay: 0.6s;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-back { animation-name: float-back; }
@keyframes float-back {
  0%, 100% { transform: translate(-58%, -8%) scale(0.86) rotate(-6deg); }
  50% { transform: translate(-58%, -16px) scale(0.86) rotate(-6deg); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 130px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { margin-top: 40px; min-height: 560px; }
  .phone-back { transform: translate(-46%, -6%) scale(0.84) rotate(-6deg); animation: none; }
}

/* ---------- Stats ---------- */
.stats {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat strong {
  display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: 13px; color: var(--muted); }
.stat-divider { width: 1px; height: 38px; background: var(--border); }
@media (max-width: 620px) { .stat-divider { display: none; } .stats { gap: 24px 40px; } }

/* ---------- Features shader (vertical wave connecting the phones) ---------- */
#features { position: relative; }
.feature-rows { position: relative; isolation: isolate; }
.feature-copy, .feature-shot { position: relative; z-index: 2; }
.feature-connector {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -1;             /* under the phones/text so the line tucks behind them */
  overflow: visible;       /* don't clip the glow */
  pointer-events: none;
}
.fc-pulse { animation: fc-flow 2.4s linear infinite; }
@keyframes fc-flow { to { stroke-dashoffset: -25; } }
@media (prefers-reduced-motion: reduce) { .fc-pulse { animation: none; } }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding: 64px 0;
}
.feature-row.reverse .feature-copy { order: 2; }
.feature-row.reverse .feature-shot { order: 1; }
.feature-copy h3 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; }
.feature-copy p { margin-top: 16px; font-size: 18px; color: var(--muted); max-width: 440px; }
.feature-shot { display: flex; justify-content: center; }
.feature-shot .phone { width: 300px; }
.feature-row.reverse .feature-copy { padding-left: 20px; }
@media (max-width: 820px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 36px; text-align: center; padding: 48px 0; }
  .feature-row .feature-copy, .feature-row.reverse .feature-copy { order: 1; padding-left: 0; }
  .feature-row .feature-shot, .feature-row.reverse .feature-shot { order: 2; }
  .feature-copy p { margin-left: auto; margin-right: auto; }
}

/* ---------- Categories ---------- */
.genre-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 760px; margin: 0 auto; }
.genre-tag {
  padding: 11px 22px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 15px; font-weight: 500;
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}
.genre-tag:hover { transform: translateY(-3px) scale(1.04); border-color: var(--teal); color: #fff; background: rgba(31, 221, 184, 0.08); }

/* ---------- Gallery ---------- */
.gallery {
  display: flex; gap: 20px;
  overflow-x: auto; padding: 10px 24px 28px;
  margin: 0 -24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
.gallery .phone { scroll-snap-align: center; width: 250px; }

/* ---------- Membership / Pricing ---------- */
.eyebrow.gold { color: #f5c451; }

.pricing-toggle {
  display: inline-flex;
  gap: 4px; padding: 5px;
  margin: 0 auto 44px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative; left: 50%; transform: translateX(-50%);
}
.pt-opt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border: 0; border-radius: 999px;
  background: transparent; color: var(--muted);
  font: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pt-opt:hover { color: var(--text); }
.pt-opt.active { background: var(--surface-2); color: var(--text); box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset; }
.pt-save {
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(31, 221, 184, 0.16); color: var(--teal);
}

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; max-width: 880px; margin: 0 auto;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 36px 32px 34px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.price-card.pro {
  background: radial-gradient(120% 80% at 50% 0%, rgba(245, 196, 81, 0.10), transparent 58%), var(--surface);
  border-color: rgba(245, 196, 81, 0.26);
}
.price-card.platinum {
  background: radial-gradient(120% 80% at 50% 0%, rgba(168, 130, 255, 0.16), transparent 58%), var(--surface);
  border-color: rgba(168, 130, 255, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(139, 92, 255, 0.12);
}
.price-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(135deg, #c9b3ff, #8b5cff);
  color: #14101f; font-size: 12px; font-weight: 800; letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(139, 92, 255, 0.4);
}
.price-badge {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  padding: 8px 16px; border-radius: 12px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.pro-badge { background: linear-gradient(135deg, #ffe08a, #f3ba43); color: #1a1407; box-shadow: 0 8px 24px rgba(245,196,81,0.28); }
.pro-badge span { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; background: #1a1407; color: #f5c451; padding: 3px 8px; border-radius: 6px; }
.plat-badge { background: linear-gradient(135deg, #d9c9ff, #a882ff); color: #18122b; box-shadow: 0 8px 24px rgba(139,92,255,0.3); }
.plat-badge span { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; background: #18122b; color: #c9b3ff; padding: 3px 8px; border-radius: 6px; }

.price-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.price-amount { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; }
.price-period { font-size: 17px; color: var(--muted); }
.price-everything { font-size: 14px; font-weight: 600; color: var(--violet); margin-bottom: 14px; }
.price-card.pro .price-everything { color: #f5c451; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-features li { position: relative; padding-left: 28px; font-size: 15.5px; color: var(--text); }
.price-features li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 19px; height: 19px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}
.price-card.pro .price-features li::before { background: rgba(245,196,81,0.16); color: #f5c451; }
.price-card.platinum .price-features li::before { background: rgba(139,92,255,0.2); color: #c9b3ff; }
.price-features li.hl { font-weight: 600; }

.price-cta {
  display: block; text-align: center;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.pro-cta { background: linear-gradient(135deg, #ffe08a, #f3ba43); color: #1a1407; box-shadow: 0 12px 30px rgba(245,196,81,0.26); }
.pro-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(245,196,81,0.4); }
.plat-cta { background: linear-gradient(135deg, #c9b3ff, #8b5cff); color: #14101f; box-shadow: 0 12px 30px rgba(139,92,255,0.3); }
.plat-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(139,92,255,0.46); }

.pro-note { text-align: center; margin-top: 22px; font-size: 13px; color: var(--muted); }

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ---------- Reviews ---------- */
.big-rating { margin-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 16px; color: var(--muted); }
/* Review carousel */
.review-carousel { display: flex; align-items: center; gap: 16px; max-width: 760px; margin: 0 auto; }
.rc-viewport { flex: 1; overflow: hidden; border-radius: var(--radius); }
.rc-track { display: flex; transition: transform 0.5s var(--ease); }
.rc-card {
  flex: 0 0 100%; box-sizing: border-box;
  padding: 38px 42px; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.rc-card .stars { font-size: 18px; }
.rc-title { margin-top: 14px; font-size: 20px; font-weight: 650; letter-spacing: -0.01em; }
.rc-body { margin-top: 14px; font-size: 16.5px; line-height: 1.6; color: var(--text); }
.rc-author { display: block; margin-top: 20px; font-size: 14px; color: var(--muted); font-style: normal; }
.rc-arrow {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text); font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.rc-arrow:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.rc-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.rc-dot {
  width: 8px; height: 8px; border-radius: 999px; padding: 0;
  border: 0; background: var(--border); cursor: pointer;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}
.rc-dot.active { background: var(--teal); width: 22px; }
@media (max-width: 620px) {
  .rc-card { padding: 30px 22px; }
  .review-carousel { gap: 8px; }
  .rc-arrow { width: 40px; height: 40px; font-size: 20px; }
}

/* ---------- CTA ---------- */
.cta { position: relative; text-align: center; padding: 130px 24px; overflow: hidden; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(closest-side at 50% 40%, rgba(139, 92, 255, 0.2), rgba(31, 221, 184, 0.08) 60%, transparent 75%); z-index: -1; }
.cta-icon { width: 76px; height: 76px; border-radius: 18px; margin: 0 auto 26px; border: 1px solid var(--border); }
.cta-inner h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.03em; max-width: 700px; margin: 0 auto; line-height: 1.08; }
.cta-inner p { margin: 18px 0 30px; color: var(--muted); font-size: 19px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.discord-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 14px;
  background: #5865f2; color: #fff; font-weight: 600; font-size: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.35);
}
.discord-btn:hover { transform: translateY(-2px); background: #4752e0; box-shadow: 0 16px 40px rgba(88, 101, 242, 0.5); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 50px 24px; background: var(--bg-soft); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; color: var(--muted); font-size: 14px; }
.footer-inner .brand { justify-content: center; margin-bottom: 18px; color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin-bottom: 20px; }
.footer-links a { color: var(--text); font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-inner p { margin-top: 6px; }
.footer-inner .muted { font-size: 12.5px; opacity: 0.6; margin-top: 12px; }

/* ---------- Reveal (progressive enhancement: hidden only when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual .phone { animation: none; }
}
