:root {
  --bg: #f7f8fa;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --dark: #101828;
  --accent: #2458c6;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); line-height: 1.6; }
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); position: sticky; top: 0; z-index: 10; }
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; font-weight: 750; letter-spacing: .08em; font-size: .98rem; }
nav { display: flex; gap: 24px; }
nav a { text-decoration: none; color: #344054; font-size: .94rem; }
.hero { padding: 112px 0 100px; background: linear-gradient(180deg,#fff 0%,#f8fafc 100%); border-bottom: 1px solid var(--line); }
.hero-inner { max-width: 920px; }
.eyebrow { margin: 0 0 14px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.055em; margin: 0 0 28px; max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.08; letter-spacing: -.035em; margin: 0; }
h3 { margin: 0 0 10px; font-size: 1.2rem; }
.lead { max-width: 760px; font-size: clamp(1.15rem, 2vw, 1.45rem); color: #475467; margin: 0; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-block; text-decoration: none; background: var(--dark); color: white; padding: 12px 18px; border-radius: 7px; font-weight: 650; }
.text-link { text-decoration: none; font-weight: 650; }
.section { padding: 88px 0; }
.section-muted { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark .eyebrow, .section-dark .small { color: #98a2b3; }
.grid-2 { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.copy { color: #475467; font-size: 1.08rem; max-width: 680px; }
.copy p:first-child { margin-top: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.card { background: var(--paper); border: 1px solid var(--line); padding: 28px; border-radius: 12px; min-height: 210px; }
.card p { color: #667085; margin-bottom: 0; }
.notice { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
.notice > p { color: #475467; margin: 0; font-size: 1.08rem; }
.contact-block { font-size: 1.05rem; }
.contact-block p { margin-top: 0; margin-bottom: 14px; }
.contact-block a { text-underline-offset: 4px; }
.small { font-size: .9rem; color: var(--muted); }
.site-footer { border-top: 1px solid var(--line); padding: 24px 0; background: #fff; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: .88rem; color: #667085; }
.footer-inner p { margin: 0; }
.footer-inner a { text-decoration: none; }
@media (max-width: 760px) {
  .nav nav { gap: 14px; }
  .hero { padding: 76px 0 68px; }
  .section { padding: 64px 0; }
  .grid-2, .notice, .cards { grid-template-columns: 1fr; gap: 28px; }
  .card { min-height: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
