:root {
  --bg-0: #0b0612;
  --bg-1: #170a27;
  --bg-2: #23143a;
  --violet-1: #7d4cff;
  --violet-2: #b182ff;
  --violet-3: #e4d7ff;
  --ink-0: #f5f1ff;
  --ink-1: rgba(245, 241, 255, 0.78);
  --ink-2: rgba(245, 241, 255, 0.58);
  --glass: rgba(20, 10, 34, 0.72);
  --stroke: rgba(161, 120, 255, 0.22);
  --shadow: 0 24px 60px rgba(7, 4, 13, 0.65);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Sora", sans-serif;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink-0);
  background: radial-gradient(circle at top, #2a1352 0%, var(--bg-1) 40%, var(--bg-0) 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-grid {
  position: fixed;
  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: 120px 120px;
  mask-image: radial-gradient(circle at 20% 0%, rgba(0, 0, 0, 0.7), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.orb-a {
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(155, 105, 255, 0.8), rgba(155, 105, 255, 0));
  animation: float 14s ease-in-out infinite;
}

.orb-b {
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(87, 255, 208, 0.5), rgba(87, 255, 208, 0));
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
  }
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 9vw;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(11, 6, 18, 0.95) 0%, rgba(11, 6, 18, 0.65) 100%);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  background: linear-gradient(135deg, var(--violet-1), var(--violet-2));
  box-shadow: 0 12px 24px rgba(125, 76, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink-2);
  letter-spacing: 0.18em;
}

.topbar-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ghost-link {
  color: var(--ink-1);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta {
  background: linear-gradient(120deg, var(--violet-1), var(--violet-2));
  color: #12071e;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 16px 30px rgba(124, 78, 255, 0.4);
}

.cta.alt {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--ink-0);
  box-shadow: none;
}

.page {
  padding: 40px 9vw 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-sub {
  color: var(--ink-1);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--violet-2);
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.meta-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(18, 10, 30, 0.7);
  border: 1px solid rgba(155, 105, 255, 0.2);
}

.meta-card strong {
  display: block;
  font-size: 18px;
  margin-top: 8px;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.glass-card {
  width: min(420px, 100%);
  background: var(--glass);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.glass-title {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--violet-2);
}

.glass-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 6px;
}

.status-dot.live {
  background: #34ffb7;
  box-shadow: 0 0 12px rgba(52, 255, 183, 0.8);
}

.status-dot.beta {
  background: #ffd95b;
  box-shadow: 0 0 12px rgba(255, 217, 91, 0.6);
}

.status-dot.soon {
  background: #b182ff;
  box-shadow: 0 0 12px rgba(177, 130, 255, 0.6);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.catalog-grid,
.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.catalog-card,
.coming-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(14, 8, 22, 0.75);
  border: 1px solid rgba(161, 120, 255, 0.2);
  box-shadow: 0 16px 32px rgba(6, 4, 10, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.status-pill {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(53, 255, 193, 0.15);
  border: 1px solid rgba(53, 255, 193, 0.4);
  color: #bdfde8;
}

.status-pill.muted {
  background: rgba(177, 130, 255, 0.12);
  border-color: rgba(177, 130, 255, 0.3);
  color: var(--violet-3);
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink-2);
  font-size: 14px;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--stroke);
  color: var(--ink-0);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer {
  padding: 40px 9vw 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(161, 120, 255, 0.1);
  color: var(--ink-2);
  flex-wrap: wrap;
}

.footer strong {
  color: var(--ink-0);
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 30px 7vw 80px;
    gap: 80px;
  }

  .topbar {
    padding: 22px 7vw;
  }

  .card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
