* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: #ece9f4;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(103, 64, 175, 0.25), transparent 40%),
    linear-gradient(rgba(11,15,26,0.85), rgba(11,15,26,0.95)),
    url("./assets/nebula.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-glow {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}

.glow-1 {
  width: 320px;
  height: 320px;
  top: 80px;
  left: -80px;
  background: rgba(122, 79, 204, 0.22);
}

.glow-2 {
  width: 260px;
  height: 260px;
  right: -40px;
  top: 480px;
  background: rgba(197, 160, 89, 0.18);
}

.page-shell {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 22px 16px 64px;
  position: relative;
  z-index: 2;
}

.card {
  background: rgba(18, 24, 41, 0.88);
  border: 1px solid rgba(197, 160, 89, 0.26);
  border-radius: 24px;
  padding: 22px 18px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.card + .card {
  margin-top: 18px;
}

.hero {
  text-align: center;
  padding-top: 26px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f1e3a1;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.22);
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h2 {
  margin-top: 14px;
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-size: 28px;
  font-weight: 600;
}

.hero-copy,
.section-copy,
.price-tier p,
.step-item p,
.beta-list,
.contact-line,
.micro-copy,
.instruction-box p,
.urgency-line {
  color: #d8d2e4;
  line-height: 1.6;
  font-size: 16px;
}

.hero-copy {
  margin: 14px auto 0;
  max-width: 30ch;
}

.video-wrap {
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.2);
  background: rgba(7, 9, 16, 0.8);
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #05070d;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(197, 160, 89, 0.34);
  color: #f7f2ff;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #c5a059 0%, #aa8542 100%);
  color: #10131d;
  box-shadow: 0 8px 26px rgba(197, 160, 89, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.btn-large {
  display: block;
  margin-top: 18px;
  padding: 16px 18px;
  font-size: 16px;
}

.micro-copy {
  margin-top: 14px;
  font-size: 14px;
  color: #f1e3a1;
}

.pricing-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.price-tier {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  background: rgba(8, 12, 22, 0.72);
  border: 1px solid rgba(197, 160, 89, 0.16);
}

.price-tier.featured {
  border-color: rgba(197, 160, 89, 0.44);
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.14) inset;
}

.featured-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f1e3a1;
}

.price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  line-height: 1;
  color: #f1e3a1;
  margin-bottom: 8px;
}

.tier-btn {
  display: block;
  margin-top: 14px;
}

.instruction-box {
  margin-top: 16px;
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.instruction-box p {
  margin: 0;
}

.instruction-box p + p {
  margin-top: 6px;
}

.urgency-line {
  margin-top: 12px;
  color: #f1e3a1;
  font-weight: 600;
}

.step-list {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  color: #10131d;
  background: linear-gradient(180deg, #f1e3a1 0%, #c5a059 100%);
}

.beta-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.beta-list li + li {
  margin-top: 8px;
}

.trust-strip {
  text-align: center;
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: #f1e3a1;
}

.final-cta {
  text-align: center;
}

.contact-line {
  margin-top: 12px;
  font-size: 14px;
}

@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}

.hero-logo {
  width: 80px;
  margin-bottom: 12px;
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(197,160,89,0.4));
}
