:root {
  --bg: #150a24;
  --bg-alt: #1c0f30;
  --surface: #221238;
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #f6f2fb;
  --text-muted: #b8aecb;

  --magenta: #ff2d78;
  --orange: #ff7a30;
  --gold: #ffc93c;

  --gradient-brand: linear-gradient(100deg, var(--magenta) 0%, var(--orange) 55%, var(--gold) 100%);

  --font-display: "Sora", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container-width: 720px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.bg-glow {
  position: fixed;
  inset: -20% -20% auto -20%;
  height: 900px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 45, 120, 0.35), transparent 55%),
    radial-gradient(circle at 75% 10%, rgba(255, 201, 60, 0.25), transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(255, 122, 48, 0.2), transparent 55%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */

.site-header {
  position: relative;
  z-index: 10;
  padding: 24px 0 0;
}

.header-inner {
  display: flex;
  align-items: center;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.brand-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */

.hero {
  position: relative;
  z-index: 1;
  padding: 56px 0 72px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  font-weight: 800;
  max-width: 18ch;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  color: var(--text-muted);
  max-width: 38ch;
}

/* Event card */

.event-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  margin-top: 12px;
}

.event-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.event-label-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-icon {
  font-size: 12px;
  line-height: 1;
}

.event-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.event-value {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.event-divider {
  width: 1px;
  height: 32px;
  background: var(--surface-border);
  flex-shrink: 0;
}

/* Price */

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.price-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.price-old {
  font-size: 1.3rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--magenta);
}

.price-new {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Badges */

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badge {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--surface-border);
  padding: 8px 14px;
  border-radius: 999px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #1a0b2e;
}

.btn-large {
  width: 100%;
  max-width: 420px;
  padding: 18px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px -8px rgba(255, 45, 120, 0.5);
  margin-top: 8px;
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.06);
  box-shadow: 0 16px 36px -8px rgba(255, 45, 120, 0.6);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

/* Sections */

.section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  border-top: 1px solid var(--surface-border);
}

.section h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
}

/* Why grid */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 48, 0.4);
}

.why-icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}

.faq-item summary {
  padding: 16px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-muted);
  padding-bottom: 18px;
}

/* Final CTA */

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta p {
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 32px 0 48px;
  text-align: center;
}

.site-footer p {
  color: var(--text-muted);
  font-size: 13px;
}

/* Reveal animation */

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Desktop */

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }

  .hero {
    padding: 80px 0 96px;
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

  .btn-large {
    width: auto;
  }
}

@media (min-width: 960px) {
  :root {
    --container-width: 860px;
  }

  .section {
    padding: 88px 0;
  }
}
