:root {
  --ink: #1d1d1f;
  --muted: #68686d;
  --blue: #2479ee;
  --blue-soft: #eef6ff;
  --line: #e2eaf4;
  --paper: #ffffff;
  --container: 1120px;
}

* { 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;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 20; height: 64px; display: flex; align-items: center;
  border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 18px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #54545a; font-size: 14px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
  border-radius: 999px; background: var(--blue); color: #fff; font-weight: 750;
}
.button.secondary { color: var(--blue); background: #fff; border: 1px solid #cfe2ff; }
.hero { padding: 96px 0 78px; background: radial-gradient(circle at 50% 20%, #eff7ff 0, #fff 54%); }
.eyebrow { margin: 0 0 22px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { max-width: 880px; margin: 0; font-size: clamp(46px, 7vw, 82px); line-height: .98; letter-spacing: -.065em; }
.hero-copy { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 0; padding: 0; list-style: none; }
.trust-list li { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #53627a; background: rgba(255,255,255,.8); font-size: 13px; }
.section { padding: 84px 0; }
.section.soft { background: #f7faff; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section h2 { margin: 0 0 16px; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.04; letter-spacing: -.055em; }
.section-head p, .card p, .content p, .faq p { color: var(--muted); line-height: 1.65; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.card-number { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-weight: 800; }
.card h3 { margin: 30px 0 10px; font-size: 22px; letter-spacing: -.035em; }
.content { max-width: 820px; }
.content h2 { margin-top: 54px; }
.content h3 { margin: 34px 0 8px; font-size: 25px; letter-spacing: -.035em; }
.content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-hero h1 { font-size: clamp(36px, 5.4vw, 64px); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a:hover { color: var(--blue); }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { padding: 16px 18px 16px 48px; border: 1px solid var(--line); border-radius: 16px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 18px; color: var(--blue); font-weight: 900; }
.faq-list { display: grid; gap: 12px; }
.faq { padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.faq h3 { margin: 0; font-size: 19px; }
.faq p { margin: 10px 0 0; }
.cta { padding: 82px 0; text-align: center; }
.cta-box { padding: 64px 28px; border-radius: 32px; background: #f1f7ff; border: 1px solid #dceaff; }
.cta h2 { max-width: 760px; margin: 0 auto 18px; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.06em; }
.cta p { max-width: 660px; margin: 0 auto 28px; color: var(--muted); line-height: 1.6; }
footer { padding: 36px 0; border-top: 1px solid var(--line); color: #6d7480; font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 780px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding: 68px 0 58px; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
}
