:root {
  --bg: #07051a;
  --bg-soft: #0e0a2e;
  --panel: rgba(18, 13, 50, 0.72);
  --panel-strong: rgba(27, 18, 70, 0.86);
  --line: rgba(222, 179, 253, 0.18);
  --text: #f8f7ff;
  --muted: #b9b4e8;
  --soft: #8580c7;
  --violet: #8934f8;
  --indigo: #5b18e1;
  --blue: #4f42f3;
  --lavender: #deb3fd;
  --shadow: 0 26px 90px rgba(25, 10, 85, 0.42);
  --radius: 28px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(137, 52, 248, 0.25), transparent 36rem),
    radial-gradient(circle at 80% 20%, rgba(79, 66, 243, 0.18), transparent 34rem),
    linear-gradient(180deg, #050414 0%, var(--bg) 48%, #03020c 100%);
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(222, 179, 253, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 179, 253, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at top, black, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.header,
.section-shell,
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

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

.brand-mark {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(137, 52, 248, 0.42));
}

.brand-name {
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 5, 28, 0.58);
  backdrop-filter: blur(18px);
}

.nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 48px;
  padding: 54px 0 76px;
}

.hero-copy {
  max-width: 585px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 720;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 20px var(--violet);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.hero-text,
.intro-text,
.signup-copy p,
.legal-page p,
.thanks-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 18px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 740;
  letter-spacing: -0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 16px 50px rgba(104, 59, 255, 0.42);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(222, 179, 253, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.small-note,
.form-note,
.legal-muted {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.pattern-art {
  position: absolute;
  width: min(850px, 112%);
  max-width: none;
  opacity: 0.9;
  filter: drop-shadow(0 0 60px rgba(104, 59, 255, 0.28));
}

.logo-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: min(480px, 84vw);
  aspect-ratio: 1;
  border: 1px solid rgba(222, 179, 253, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 42%, rgba(137, 52, 248, 0.24), transparent 48%),
    rgba(7, 5, 26, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.logo-orb::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(222, 179, 253, 0.18), transparent 36%, rgba(79, 66, 243, 0.2));
  pointer-events: none;
}

.logo-orb img {
  position: relative;
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(5, 3, 20, 0.58));
}

.intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
  padding: 72px 0 34px;
}

.intro-text {
  margin: 46px 0 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px 0 84px;
}

.card,
.creator-panel,
.form-card,
.thanks-card,
.legal-page {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.card {
  min-height: 255px;
  padding: 28px;
  border-radius: var(--radius);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 16px;
  color: var(--lavender);
  background: rgba(137, 52, 248, 0.14);
  border: 1px solid rgba(222, 179, 253, 0.16);
  font-size: 13px;
  font-weight: 820;
}

.creator-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 86px;
  border-radius: calc(var(--radius) + 8px);
  padding: 38px;
  overflow: hidden;
  position: relative;
}

.creator-panel::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 52, 248, 0.22), transparent 68%);
}

.creator-panel h2 {
  margin-bottom: 0;
}

.creator-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.creator-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  border: 1px solid rgba(222, 179, 253, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.signup {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: start;
  padding: 26px 0 86px;
}

.signup-copy {
  position: sticky;
  top: 28px;
  padding-top: 12px;
}

.email-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--lavender);
  font-weight: 750;
}

.form-card {
  border-radius: calc(var(--radius) + 8px);
  padding: 28px;
}

.form-card label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.form-card label span {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(222, 179, 253, 0.18);
  border-radius: 18px;
  color: var(--text);
  background: rgba(3, 2, 14, 0.52);
  outline: none;
  padding: 15px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(222, 179, 253, 0.54);
  box-shadow: 0 0 0 4px rgba(137, 52, 248, 0.16);
  background: rgba(3, 2, 14, 0.78);
}

select {
  appearance: none;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

::placeholder {
  color: rgba(185, 180, 232, 0.55);
}

.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: flex-start;
  gap: 12px !important;
  margin: 12px 0 22px !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--violet);
}

.checkbox-row span {
  color: var(--muted) !important;
  line-height: 1.55;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

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

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  letter-spacing: -0.035em;
}

.footer-brand p {
  margin: 2px 0 0;
  color: var(--soft);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover,
.legal-page a:hover {
  color: var(--text);
}

.legal-page {
  max-width: 860px;
  margin-top: 44px;
  margin-bottom: 78px;
  border-radius: calc(var(--radius) + 8px);
  padding: 44px;
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-page section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.legal-page a {
  color: var(--lavender);
  font-weight: 740;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 0;
}

.thanks-card {
  max-width: 680px;
  text-align: center;
  border-radius: calc(var(--radius) + 8px);
  padding: 46px;
}

.thanks-card img {
  width: 164px;
  height: 164px;
  object-fit: contain;
  margin-bottom: 18px;
}

.thanks-card .eyebrow {
  justify-content: center;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .creator-panel,
  .signup {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 500px;
    order: -1;
  }

  .logo-orb {
    width: min(430px, 92vw);
  }

  .intro-text {
    margin: 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .creator-list {
    justify-content: flex-start;
  }

  .signup-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .header,
  .section-shell,
  .footer {
    width: min(100% - 28px, var(--max));
  }

  .header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .nav a {
    padding: 0 12px;
    white-space: nowrap;
  }

  .hero {
    gap: 24px;
    padding-bottom: 54px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .logo-orb {
    border-radius: 26px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .cards,
  .signup {
    padding-bottom: 56px;
  }

  .card,
  .creator-panel,
  .form-card,
  .legal-page,
  .thanks-card {
    padding: 22px;
    border-radius: 24px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
