: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;
  background-size: 170% 170%;
  animation: bgShift 24s ease-in-out infinite;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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.82) 0%, rgba(11, 6, 18, 0.45) 100%);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.topbar.scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: linear-gradient(180deg, rgba(11, 6, 18, 0.95) 0%, rgba(11, 6, 18, 0.7) 100%);
  border-color: rgba(177, 130, 255, 0.2);
}

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

.brand-logo {
  width: auto;
  height: 100px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.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;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(87, 255, 208, 0.45);
  background: rgba(87, 255, 208, 0.08);
  color: #c8ffee;
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  font-size: 11px;
  text-transform: uppercase;
}

.status-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57ffd0;
  box-shadow: 0 0 10px rgba(87, 255, 208, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}

.ghost-link {
  color: var(--ink-1);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.24s ease, text-shadow 0.24s ease;
}

.ghost-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-2), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.26s ease;
}

.ghost-link:hover {
  color: var(--ink-0);
  text-shadow: 0 0 14px rgba(177, 130, 255, 0.5);
}

.ghost-link:hover::after {
  transform: scaleX(1);
}

.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);
  transition: transform 0.2s ease, box-shadow 0.26s ease, filter 0.26s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 40px rgba(124, 78, 255, 0.58);
  filter: saturate(1.06);
}

.cta:active {
  transform: translateY(0) scale(0.985);
}

.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;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: -60px -10px auto -10px;
  height: 450px;
  pointer-events: none;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 35%, rgba(177, 130, 255, 0.28), transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(87, 255, 208, 0.15), transparent 45%);
  filter: blur(10px);
  animation: slowPan 12s ease-in-out infinite alternate;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.2;
  animation: drift 18s linear infinite;
}

@keyframes slowPan {
  from { transform: translate3d(-8px, 0, 0); }
  to { transform: translate3d(8px, 10px, 0); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-20px, -16px, 0); }
}

.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);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.meta-card:hover {
  transform: translateY(-3px);
  border-color: rgba(177, 130, 255, 0.55);
}

.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;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(177, 130, 255, 0.2), transparent 35%, rgba(87, 255, 208, 0.15));
  opacity: 0.9;
  pointer-events: none;
}

.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);
  border: 1px solid transparent;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.glass-row:hover {
  transform: translateX(3px);
  border-color: rgba(177, 130, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.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);
  animation: pulse 1.8s ease-in-out infinite;
}

.status-dot.beta {
  background: #ffd95b;
  box-shadow: 0 0 12px rgba(255, 217, 91, 0.6);
  animation: pulse 2.5s ease-in-out infinite;
}

.status-dot.soon {
  background: #b182ff;
  box-shadow: 0 0 12px rgba(177, 130, 255, 0.6);
  animation: pulse 2.1s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.72; }
  100% { transform: scale(1); opacity: 1; }
}

.live-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ticker {
  overflow: hidden;
  border: 1px solid rgba(177, 130, 255, 0.2);
  border-radius: 999px;
  background: rgba(15, 8, 24, 0.8);
}

.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  width: max-content;
  padding: 11px 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-1);
  animation: tickerMove 30s linear infinite;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.live-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.live-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(177, 130, 255, 0.2);
  background: rgba(14, 8, 22, 0.78);
}

.live-card h4 {
  margin-bottom: 10px;
}

.live-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-1);
  font-size: 14px;
}

.live-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-line {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet-1), var(--violet-2));
  box-shadow: 0 0 18px rgba(125, 76, 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;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.catalog-card::before,
.coming-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(177, 130, 255, 0.18), transparent 42%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.catalog-card:hover,
.coming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(6, 4, 10, 0.55);
  border-color: rgba(177, 130, 255, 0.36);
}

.catalog-card:hover::before,
.coming-card:hover::before {
  opacity: 1;
}

.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;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.ghost-button:hover {
  border-color: rgba(177, 130, 255, 0.58);
  background: rgba(177, 130, 255, 0.08);
  transform: translateY(-2px);
}

.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);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

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

  .status-badge {
    order: 4;
  }
}

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

  .topbar {
    padding: 22px 7vw;
  }

  .brand-logo {
    height: 52px;
    max-width: 140px;
  }

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