:root {
  --ink: #2b0a45;
  --purple: #4b126d;
  --violet: #9d48df;
  --cream: #fff3d6;
  --paper: #fffdf9;
  --muted: #6f6376;
  --line: rgba(75, 18, 109, 0.14);
  --shadow: 0 24px 70px rgba(59, 15, 83, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 88px; gap: 24px;
}
.wordmark { width: 148px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .94rem; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--violet); }
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(157,72,223,.24), transparent 28%),
    linear-gradient(145deg, #fff9eb 0%, #fffdf9 52%, #f8efff 100%);
  border-block: 1px solid var(--line);
}
.hero-grid { min-height: 620px; display: grid; grid-template-columns: 1.1fr .8fr; align-items: center; gap: 76px; padding-block: 70px; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; font-weight: 850; color: var(--violet); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(3.2rem, 7vw, 5.8rem); max-width: 780px; }
h2 { margin: 0 0 18px; font-size: clamp(2.15rem, 4vw, 3.4rem); }
h3 { margin: 0 0 10px; font-size: 1.25rem; }
.lead { max-width: 670px; margin: 26px 0 34px; color: var(--muted); font-size: 1.18rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 999px;
  background: var(--purple); color: white; text-decoration: none; font-weight: 800;
  box-shadow: 0 12px 28px rgba(75,18,109,.24);
}
.button:hover, .button:focus-visible { background: #651b8d; transform: translateY(-1px); }
.hero-mark {
  width: min(100%, 430px); justify-self: end; border-radius: 32%;
  box-shadow: var(--shadow); transform: rotate(2deg);
}
.section { padding-block: 92px; }
.section-intro { max-width: 720px; margin-bottom: 42px; }
.section-intro p { color: var(--muted); margin: 0; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 14px 42px rgba(54,18,75,.07); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--cream); color: var(--purple); font-weight: 900; margin-bottom: 24px; }
.feature p { color: var(--muted); margin: 0; }
.cta { margin-bottom: 92px; padding: 54px; border-radius: 34px; color: white; background: linear-gradient(135deg, #351047, #5f1884 62%, #8f3ccd); display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta h2 { margin-bottom: 10px; }
.cta p { margin: 0; color: rgba(255,255,255,.78); }
.cta .button { background: var(--cream); color: var(--purple); box-shadow: none; flex: 0 0 auto; }
footer { border-top: 1px solid var(--line); padding-block: 36px; color: var(--muted); font-size: .92rem; }
.footer-row { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.legal { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 100px; }
.legal h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); margin-bottom: 8px; }
.legal h2 { font-size: 1.65rem; margin-top: 46px; }
.legal h3 { font-size: 1.1rem; margin-top: 28px; }
.legal .date { color: var(--muted); margin: 0 0 38px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); }
@media (max-width: 800px) {
  .nav { min-height: 76px; }
  .wordmark { width: 124px; }
  .nav-links { gap: 16px; font-size: .86rem; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 44px; padding-block: 54px 68px; }
  .hero-mark { justify-self: start; width: min(76vw, 340px); }
  .features { grid-template-columns: 1fr; }
  .section { padding-block: 72px; }
  .cta { padding: 38px 28px; border-radius: 26px; align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav-links a:first-child { display: none; }
  h1 { font-size: 3rem; }
  .lead { font-size: 1.05rem; }
  .legal { width: min(100% - 28px, 820px); padding-top: 46px; }
}
