@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  --void: #0a0a0a;
  --obsidian: #111;
  --carbon: #161616;
  --graphite: #1e1e1e;
  --steel: #2c2c2c;
  --accent: #eb0b5c;
  --accent-2: #ff3a81;
  --accent-glow: rgba(235, 11, 92, 0.35);
  --green: #0beb9a;
  --text: #f4f4f5;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font: "Outfit", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  min-height: 100dvh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wordmark {
  font-weight: 900; font-size: 28px; letter-spacing: -0.06em;
  color: var(--accent); line-height: 1;
  text-shadow: 0 0 18px var(--accent-glow);
}
.beta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--muted); margin-left: 8px;
}

/* Landing nav */
.lnav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.lnav-left, .lnav-right { display: flex; align-items: center; gap: 10px; }
.lnav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: #cfcfcf; }
.lnav-links a:hover { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background: linear-gradient(180deg, #ff3a81, var(--accent));
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 8px 28px var(--accent-glow), 0 0 40px rgba(235,11,92,.25);
}
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 10px 36px var(--accent-glow); }
.btn-ghost {
  border: 1px solid var(--line); background: rgba(255,255,255,.03); color: #ddd;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.18); color: #fff; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; max-width: 1200px; margin: 0 auto;
  padding: 48px 32px 72px; min-height: calc(100dvh - 80px);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 12px; border-radius: 999px;
  border: 1px solid rgba(235,11,92,.35); color: var(--accent-2);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 1.6s ease-in-out infinite; }
.hero h1 { font-size: clamp(48px, 6vw, 76px); font-weight: 800; line-height: .95; letter-spacing: -0.04em; margin: 18px 0 16px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { color: var(--muted); font-size: 17px; max-width: 480px; }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual:before {
  content: ""; position: absolute; inset: 8% 12%;
  background: radial-gradient(circle, rgba(235,11,92,.45), transparent 70%);
  filter: blur(40px); animation: glow 3.2s ease-in-out infinite;
}
.hero-card {
  position: relative; width: min(420px, 100%);
  border-radius: 28px; overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(235,11,92,.25), 0 0 60px var(--accent-glow);
  animation: float 5s ease-in-out infinite;
}
.hero-card img { width: 100%; height: auto; display: block; }
.live-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: .12em; padding: 4px 10px; border-radius: 999px;
}

@keyframes pulse { 50% { opacity: .4; transform: scale(1.3); } }
@keyframes glow { 50% { opacity: .65; } }
@keyframes float {
  0%,100% { transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

/* Marquee */
.marquee-wrap { overflow: hidden; padding: 28px 0 56px; border-top: 1px solid var(--line); }
.marquee-label { text-align: center; font-size: 11px; letter-spacing: .22em; color: #666; margin-bottom: 22px; }
.marquee { display: flex; gap: 48px; width: max-content; animation: slide 28s linear infinite; }
.logo-blob {
  width: 72px; height: 48px; border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, #3a3a3a, #151515);
  opacity: .55; filter: grayscale(1);
}
@keyframes slide { to { transform: translateX(-50%); } }

.section { max-width: 1160px; margin: 0 auto; padding: 72px 24px; }
.section h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.03em; text-align: center; }
.lede { text-align: center; color: var(--muted); margin: 10px auto 36px; max-width: 560px; }
.pink { color: var(--accent-2); }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid var(--line); border-radius: 20px; padding: 22px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(235,11,92,.28); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.ico {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(235,11,92,.12); color: var(--accent-2);
}
.num { color: #3a3a3a; font-weight: 800; font-size: 28px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  font-size: 12px; padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: #bbb;
}
.chip-pink { border-color: rgba(235,11,92,.35); color: #ff7aa8; }

.cards-stage { display: flex; justify-content: center; gap: 40px; align-items: flex-end; margin-top: 28px; flex-wrap: wrap; }
.pack {
  width: 220px; height: 280px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(235,11,92,.25); transform: rotate(-6deg);
  animation: packfloat 4.5s ease-in-out infinite;
}
.pack img { width: 100%; height: 100%; object-fit: cover; }
.pack-b { transform: rotate(8deg); animation-delay: -1.4s; width: 200px; height: 260px; }

@keyframes packfloat {
  50% { transform: rotate(-2deg) translateY(-8px); }
}

.tabs { display: flex; justify-content: center; gap: 4px; background: #141414; border: 1px solid var(--line); padding: 4px; border-radius: 999px; width: max-content; margin: 0 auto 28px; }
.tab { padding: 8px 18px; border-radius: 999px; font-size: 14px; color: var(--muted); }
.tab.on { background: #1f1f1f; color: #fff; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dash { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat { background: #141414; border: 1px solid var(--line); border-radius: 14px; padding: 12px; }
.stat b { display: block; font-size: 22px; }
.stat span { font-size: 11px; color: var(--muted); letter-spacing: .08em; }

.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-item { display: flex; gap: 12px; background: #121212; border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.feat-item h4 { font-size: 15px; margin-bottom: 4px; }
.feat-item p { font-size: 13px; color: var(--muted); }
.preview-box { height: 360px; border-radius: 20px; border: 1px solid var(--line); background: #0e0e0e; overflow: hidden; }
.preview-box img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }

.footer {
  border-top: 1px solid var(--line); padding: 48px 28px 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px;
  max-width: 1160px; margin: 0 auto;
}
.footer h5 { font-size: 12px; letter-spacing: .14em; color: #888; margin-bottom: 12px; text-transform: uppercase; }
.footer a { display: block; color: #bbb; font-size: 14px; margin: 6px 0; }
.footer a:hover { color: #fff; }
.copy { text-align: center; color: #555; font-size: 12px; padding: 18px; border-top: 1px solid var(--line); }

/* App shell */
.app { display: grid; grid-template-columns: 240px 1fr; min-height: 100dvh; }
.side {
  border-right: 1px solid var(--line); padding: 18px 12px;
  display: flex; flex-direction: column; background: #0b0b0b;
}
.side nav { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; }
.nav-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 12px; color: #bdbdbd; font-size: 14px; font-weight: 500;
}
.nav-item:hover, .nav-item.on { background: rgba(235,11,92,.14); color: #fff; }
.side-foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.main { padding: 28px 32px; }
.page-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.empty {
  max-width: 560px; margin: 64px auto; text-align: center;
  background: #121212; border: 1px solid var(--line); border-radius: 20px; padding: 32px;
}
.empty .badge { display: inline-block; background: rgba(235,11,92,.15); color: #ff7aa8; font-size: 11px; font-weight: 700; letter-spacing: .12em; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.actions { display: flex; justify-content: center; gap: 10px; margin: 18px 0; flex-wrap: wrap; }

.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin-top: 8px; font-size: 14px; }

.legal { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.legal h1 { font-size: 36px; margin-bottom: 16px; }
.legal h2 { margin: 22px 0 8px; font-size: 18px; }
.legal p, .legal li { color: #c9c9c9; margin: 8px 0; }

@media (max-width: 960px) {
  .hero, .grid3, .grid4, .split, .feat-row, .footer, .app { grid-template-columns: 1fr; }
  .lnav-links { display: none; }
  .hero-card { transform: none; }
  .side { display: none; }
  .app { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before { animation: none !important; transition: none !important; }
}
