:root {
  --gold: #FFC72C;
  --purple: #4B2E83;
  --cream: #FFF8E7;
  --white: #FFFFFF;
  --ink: #211A2F;
  --muted: #665F73;
  --border: rgba(75, 46, 131, .13);
  --shadow: 0 22px 60px rgba(75, 46, 131, .12);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(75,46,131,.07);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mini {
  color: var(--purple);
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -.03em;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav nav a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
}
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--purple);
  color: white;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(255,199,44,.20), transparent 30%),
    radial-gradient(circle at 0% 50%, rgba(75,46,131,.09), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}
.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 58px;
  align-items: center;
  padding: 72px 0 84px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}
h1, h2, h3 { margin-top: 0; }
h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: .97;
  letter-spacing: -.065em;
  color: var(--purple);
}
.lede {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: var(--purple);
  background: var(--gold);
  box-shadow: 0 10px 25px rgba(255,199,44,.28);
}
.secondary {
  border: 2px solid rgba(75,46,131,.18);
  background: white;
  color: var(--purple);
}
.microcopy {
  margin: 22px 0 0;
  color: #7e768a;
  font-size: .92rem;
}
.logo-card {
  position: relative;
  padding: 26px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: 40px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.logo-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
  opacity: .75;
}

.section { padding: 92px 0; }
.soft { background: var(--cream); }
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: var(--purple);
}
.section-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 12px 35px rgba(75,46,131,.06);
}
.step-no {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 1000;
  letter-spacing: .12em;
}
.card h3, .feature h3 {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 1.2rem;
}
.card p, .feature p {
  margin: 0;
  color: var(--muted);
}

.feature-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.feature-list {
  display: grid;
  gap: 18px;
}
.feature {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(75,46,131,.13);
}
.feature:first-child { padding-top: 0; }
.feature-dot {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(75,46,131,.09);
}

.launch { padding-top: 46px; }
.launch-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
  padding: 48px 52px;
  color: white;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,199,44,.25), transparent 30%),
    var(--purple);
  box-shadow: var(--shadow);
}
.launch-card h2 { color: white; margin: 10px 0 12px; }
.launch-card p { margin: 0; color: rgba(255,255,255,.82); }
.eyebrow.inverted { color: white; }
.light { background: var(--gold); color: var(--purple); }
.launch-actions { text-align: right; }
.launch-note {
  margin-top: 12px !important;
  font-size: .82rem;
  opacity: .7;
}

.site-footer {
  padding: 44px 0 56px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.footer-grid strong { color: var(--purple); font-size: 1.15rem; }
.footer-grid p { margin: 3px 0 0; }
.footer-links {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a { text-decoration: none; }
.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .nav nav a:not(.nav-cta) { display: none; }
  .hero-grid, .feature-layout, .launch-card {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: unset; padding-top: 54px; }
  .hero-art { order: -1; max-width: 580px; }
  .steps { grid-template-columns: 1fr; }
  .launch-actions { text-align: left; }
}
@media (max-width: 600px) {
  .shell { width: min(100% - 28px, 1160px); }
  .section { padding: 70px 0; }
  .logo-card { padding: 16px; border-radius: 28px; }
  .launch-card { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
