:root {
  color-scheme: light;
  --ink: #1b1627;
  --muted: #706a7e;
  --lavender: #a18cf7;
  --mint: #a9efca;
  --butter: #ffdf83;
  --canvas: #f7f3fc;
  --card: rgba(255, 255, 255, .86);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 10% 0%, #fff 0, var(--canvas) 42%, #efeafa 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Avenir Next", sans-serif;
}
a { color: inherit; }
.wrap { width: min(100% - 40px, 980px); margin: 0 auto; }
.site-header { padding: 28px 0 14px; }
.brand { text-decoration: none; font-size: 15px; font-weight: 900; letter-spacing: .22em; }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 16px; color: var(--muted); font-size: 13px; }
.nav-links a { text-decoration: none; }
.hero { padding: 82px 0 64px; max-width: 730px; }
.eyebrow { margin: 0 0 15px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(44px, 9vw, 86px); line-height: .95; letter-spacing: -.06em; }
h2 { margin: 0 0 18px; font-size: 28px; letter-spacing: -.04em; }
h3 { margin: 28px 0 10px; font-size: 18px; }
p, li { color: var(--muted); font-size: 16px; line-height: 1.7; }
.hero p { max-width: 570px; font-size: 19px; }
.pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 12px 16px; border-radius: 999px; background: var(--butter); font-size: 14px; font-weight: 800; text-decoration: none; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 70px; }
.feature { padding: 24px; min-height: 175px; background: var(--card); border-radius: 28px; box-shadow: 0 16px 44px rgba(45, 34, 74, .08); }
.feature:nth-child(1) { background: var(--mint); }
.feature:nth-child(2) { background: var(--lavender); }
.feature:nth-child(3) { background: var(--butter); }
.feature h3 { margin-top: 10px; }
.feature p { margin-bottom: 0; color: rgba(27, 22, 39, .7); font-size: 14px; }
.legal { padding: 68px 0 84px; }
.legal article { max-width: 740px; padding: 34px clamp(22px, 5vw, 54px); background: var(--card); border-radius: 30px; box-shadow: 0 18px 58px rgba(45, 34, 74, .09); }
.legal .updated { margin: -6px 0 34px; font-size: 13px; }
.legal ul { padding-left: 24px; }
.legal li { margin-bottom: 8px; }
.footer { padding: 24px 0 36px; border-top: 1px solid rgba(27, 22, 39, .1); }
.footer p, .footer a { font-size: 13px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 980px); }
  .site-header { padding-top: 20px; }
  .nav-links { gap: 10px; font-size: 12px; }
  .hero { padding: 58px 0 44px; }
  .feature-grid { grid-template-columns: 1fr; padding-bottom: 48px; }
  .feature { min-height: auto; }
}
