:root {
  color-scheme: light;
  --ink: #171329;
  --muted: #665f7e;
  --line: #e8e4f2;
  --paper: #fbfaff;
  --violet: #5a35e8;
  --indigo: #25146f;
  --cyan: #8be8ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif; }
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em; text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
nav .links { display: flex; gap: 20px; color: var(--muted); font-size: 14px; text-decoration: none; }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 64px; padding: 88px 0 100px; }
.eyebrow { color: var(--violet); font-weight: 750; letter-spacing: .11em; text-transform: uppercase; font-size: 12px; }
h1 { font-size: clamp(46px, 7vw, 88px); line-height: .98; letter-spacing: -.075em; margin: 18px 0 24px; max-width: 720px; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.055em; margin: 0 0 16px; }
p { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 620px; }
.buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 20px; font-weight: 750; text-decoration: none; }
.button.primary { color: white; background: var(--violet); box-shadow: 0 14px 32px #5a35e82b; }
.button.secondary { color: var(--indigo); background: white; border: 1px solid var(--line); }
.hero-card { position: relative; min-height: 430px; border-radius: 36px; background: linear-gradient(150deg, #2d198b, #5d37ed 70%, #b1efff); padding: 24px; box-shadow: 0 28px 80px #34209b38; overflow: hidden; }
.hero-card::after { content: ""; position: absolute; inset: 20% -10% -30%; background: #ffffff2b; border-radius: 50%; filter: blur(28px); }
.window { position: absolute; z-index: 1; inset: 46px 30px 30px; background: #ffffffef; border-radius: 20px; padding: 18px; box-shadow: 0 24px 48px #1a0c5a44; }
.window-top { display: flex; gap: 6px; margin-bottom: 18px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd7ee; }
.window-grid { display: grid; grid-template-columns: 42% 1fr; gap: 12px; height: calc(100% - 26px); }
.side, .quiz { border-radius: 14px; background: #f5f2fd; padding: 14px; }
.side strong { display: block; font-size: 13px; margin-bottom: 16px; }
.side-line { height: 9px; border-radius: 9px; background: #dcd5f3; margin: 12px 0; }
.side-line.active { background: var(--violet); width: 76%; }
.quiz-label { font-size: 11px; color: var(--violet); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.quiz h3 { margin: 14px 0; font-size: 24px; letter-spacing: -.05em; }
.choice { border: 1px solid #e1dced; border-radius: 10px; padding: 10px; font-size: 12px; margin: 8px 0; background: white; }
.choice.selected { color: var(--indigo); border-color: #8e79ef; background: #ede9ff; }
section { padding: 92px 0; }
.center { text-align: center; }
.center p { margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.step, .feature, .price { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.step-number { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: white; background: var(--violet); font-weight: 800; }
.step h3 { margin: 36px 0 8px; font-size: 20px; }
.step p, .feature p, .price p { font-size: 15px; margin: 0; }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.feature { display: flex; gap: 14px; }
.feature-icon { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; color: var(--violet); background: #eeeaff; font-weight: 900; }
.feature h3 { margin: 0 0 5px; font-size: 18px; }
.pricing { background: #f1effc; }
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.price strong { display: block; font-size: 32px; letter-spacing: -.06em; margin: 14px 0 6px; }
.price .tag { color: var(--violet); font-weight: 800; font-size: 13px; }
.faq { display: grid; gap: 12px; max-width: 820px; margin: 34px auto 0; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; }
.faq summary { cursor: pointer; font-size: 18px; font-weight: 750; }
.faq p { margin: 14px 0 0; font-size: 16px; }
.cta { text-align: center; border-radius: 32px; padding: 64px 24px; color: white; background: var(--indigo); }
.cta p { color: #d4d0f3; margin: 0 auto; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 32px 0 44px; color: var(--muted); font-size: 13px; }
footer .links { display: flex; gap: 16px; }
.legal { max-width: 760px; padding: 70px 0 100px; }
.legal h1 { font-size: 56px; }
.legal h2 { font-size: 30px; margin-top: 42px; }
.legal p, .legal li { font-size: 16px; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 38px; padding-top: 52px; }
  .hero-card { min-height: 350px; }
  .steps, .features, .prices { grid-template-columns: 1fr; }
  nav .links { display: none; }
  section { padding: 64px 0; }
  footer { flex-direction: column; }
}
