:root {
  color-scheme: light;
  font-family: Inter, ui-rounded, "SF Pro Rounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #fbfaff;
  font-synthesis: none;
  line-height: 1.6;
  --purple: #6f3fc5;
  --purple-dark: #4d248f;
  --purple-soft: #f1eafe;
  --orange: #ff9d0a;
  --border: #ded6ed;
  --muted: #5f6b80;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: var(--purple-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(222, 214, 237, .8);
  background: rgba(251, 250, 255, .92);
  backdrop-filter: blur(12px);
}

.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #25143d; font-size: 1.1rem; font-weight: 800; text-decoration: none; }
.brand img { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #443b54; font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: var(--purple); }

.hero { padding: 88px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 14px; color: var(--purple); font-size: .84rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 780px; margin: 0; color: #20132f; font-size: clamp(2.7rem, 7vw, 5.5rem); line-height: .98; letter-spacing: -.055em; }
.lead { max-width: 690px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 1px solid var(--purple); border-radius: 14px; padding: 10px 20px; font-weight: 750; text-decoration: none; }
.button.primary { color: white; background: var(--purple); box-shadow: 0 10px 28px rgba(111, 63, 197, .22); }
.button.primary:hover { background: var(--purple-dark); }
.hero-art { position: relative; display: grid; place-items: center; min-height: 360px; }
.hero-art::before { position: absolute; width: 330px; height: 330px; border-radius: 50%; background: var(--purple-soft); content: ""; }
.hero-art img { position: relative; width: min(100%, 286px); filter: drop-shadow(0 24px 35px rgba(78, 37, 143, .25)); transform: rotate(3deg); }

.section { padding: 76px 0; }
.section.tint { background: #f4effc; }
.section h2 { max-width: 720px; margin: 0; color: #26163b; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.035em; }
.section-intro { max-width: 720px; margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.card { border: 1px solid var(--border); border-radius: 22px; padding: 26px; background: white; box-shadow: 0 12px 36px rgba(47, 30, 78, .06); }
.card .number { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: white; background: var(--purple); font-weight: 850; }
.card h3 { margin: 18px 0 8px; color: #2a183f; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.trust { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 72px; }
.trust-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.trust-list li { border-left: 4px solid var(--orange); padding-left: 18px; }
.trust-list strong { display: block; margin-bottom: 3px; color: #2a183f; }
.trust-list span { color: var(--muted); }

.notice { margin-top: 32px; border: 1px solid #ead4a7; border-radius: 18px; padding: 18px 20px; background: #fff9eb; color: #59440f; }
.site-footer { border-top: 1px solid var(--border); padding: 34px 0 46px; color: var(--muted); font-size: .94rem; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

.legal { max-width: 820px; padding: 72px 0 90px; }
.legal h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.legal .updated { margin: 14px 0 34px; color: var(--muted); }
.legal .summary { border-left: 5px solid var(--orange); padding: 4px 0 4px 22px; color: #393047; font-size: 1.12rem; }
.legal h2 { margin: 46px 0 10px; color: #29183e; font-size: 1.45rem; }
.legal p, .legal li { color: #4d5668; }
.legal li + li { margin-top: 8px; }

@media (max-width: 780px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { min-height: 64px; }
  .nav-links a:first-child { display: none; }
  .nav-links { gap: 14px; font-size: .92rem; }
  .hero { padding: 58px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-art { min-height: 250px; }
  .hero-art::before { width: 240px; height: 240px; }
  .hero-art img { width: 210px; }
  .cards, .trust { grid-template-columns: 1fr; }
  .trust { gap: 34px; }
  .section { padding: 58px 0; }
  .footer-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
