:root {
  --ink: #f7f0ff;
  --muted: rgba(247, 240, 255, 0.72);
  --deep: #080015;
  --panel: #13002b;
  --panel-2: #210044;
  --purple: #8d27ff;
  --magenta: #f22bd4;
  --orange: #ff9d1f;
  --yellow: #ffe847;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(242, 43, 212, 0.24), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(255, 157, 31, 0.2), transparent 26%),
    linear-gradient(180deg, #16003a 0%, var(--deep) 42%, #120022 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 0, 21, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--magenta), var(--purple));
  color: white;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(242, 43, 212, 0.36);
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-cta,
.waitlist-form button {
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  color: white;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(242, 43, 212, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  padding: 11px 16px;
}

.header-cta:hover,
.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(242, 43, 212, 0.34);
}

.hero,
.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: calc(100svh - 70px);
  padding: clamp(52px, 8vw, 106px) 0 clamp(42px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(4.8rem, 12vw, 10rem);
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5.8vw, 5.4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.hero-line {
  max-width: 680px;
  margin-bottom: 16px;
  color: white;
  font-size: clamp(2rem, 4.8vw, 4.45rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-subcopy {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #120025;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 0, 21, 0.2));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.hero-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: 620px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 14px;
  outline: none;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field select option {
  background: #13002b;
  color: white;
}

.field select option:checked {
  background: #8d27ff;
  color: white;
}

.field input:focus,
.field select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 232, 71, 0.12);
}

.field input.is-invalid {
  border-color: #ff6d6d;
  box-shadow: 0 0 0 4px rgba(255, 109, 109, 0.14);
}

.waitlist-form button {
  min-height: 54px;
  padding: 0 22px;
  white-space: nowrap;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 21px;
  margin: 0;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-message.error {
  color: #ff8a8a;
}

.hero-proof,
.prompt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.prompt-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.section-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(141, 39, 255, 0.28), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.section-band .section-inner,
.ritual,
.features,
.audience,
.final-cta {
  padding: clamp(70px, 10vw, 124px) 0;
}

.split,
.audience,
.final-cta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.problem p,
.audience-list p,
.final-copy p,
.safety-grid p,
.feature-card p,
.step-card p {
  color: var(--muted);
}

.problem p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.05rem, 1.9vw, 1.34rem);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.steps-grid,
.feature-grid,
.safety-grid {
  display: grid;
  gap: 14px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.safety-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.feature-card,
.safety-grid article,
.full-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.step-card,
.feature-card,
.safety-grid article {
  padding: 22px;
}

.step-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--magenta), var(--purple));
  font-weight: 900;
}

.question-strip .section-inner {
  padding-block: clamp(52px, 7vw, 84px);
}

.prompt-row span {
  border-color: rgba(255, 232, 71, 0.26);
  background: rgba(255, 232, 71, 0.08);
  color: white;
  font-size: clamp(0.9rem, 1.3vw, 1.08rem);
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-list p {
  margin: 0;
  border-left: 4px solid var(--magenta);
  padding: 12px 0 12px 18px;
  font-weight: 700;
}

.full-form {
  padding: clamp(18px, 3vw, 28px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.success-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
}

.success-card {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  padding: clamp(26px, 6vw, 58px);
}

.success-card .brand {
  margin-bottom: 42px;
}

.success-card h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 11vw, 6rem);
}

.success-card p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.copyright {
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 980px) {
  .hero,
  .split,
  .audience,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .steps-grid,
  .feature-grid,
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media img {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .hero-form,
  .form-grid,
  .steps-grid,
  .feature-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form button {
    width: 100%;
  }

  h1 {
    font-size: clamp(4.5rem, 22vw, 6rem);
  }

  .hero-line {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-media {
    border-radius: 18px;
  }

  .hero-media img {
    min-height: 320px;
    object-position: 28% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
