:root {
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #5f6368;
  --muted-2: #868b91;
  --line: #e7e7e7;
  --soft: #f6f6f6;
  --accent: #1f3a5f;
  --max: 1160px;
  --radius: 0;
  --shadow: 0 12px 32px rgba(0,0,0,0.04);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0 0 18px; line-height: 1.12; font-weight: 600; letter-spacing: -0.03em; }
h1 { font-size: clamp(40px, 6vw, 44px); }
h2 { font-size: clamp(30px, 4vw, 32px); }
h3 { font-size: clamp(22px, 3vw, 24px); }
p { margin: 0 0 18px; font-size: 17px; color: var(--text); }
.lead { font-size: 19px; color: var(--muted); max-width: 780px; }
.muted { color: var(--muted); }
.small { font-size: 14px; color: var(--muted); }
.kicker { font-size: 16px; color: var(--muted); }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack-lg > * + * { margin-top: 26px; }
.stack-md > * + * { margin-top: 18px; }
.divider { border-top: 1px solid var(--line); }
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}
.logo span { color: var(--accent); }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.nav a.active, .nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
}
.menu-toggle svg { width: 20px; height: 20px; }
.mobile-nav {
  display: none;
  padding: 12px 0 18px;
  border-top: 1px solid var(--line);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 500;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--text);
  background: var(--text);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: .2s ease;
}
.btn:hover { opacity: .92; }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}
.btn-text {
  border: 0;
  padding: 0;
  min-height: auto;
  background: transparent;
  color: var(--accent);
}
.hero {
  padding: 88px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 48px;
  align-items: end;
}
.hero-panel, .panel {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.statements {
  display: grid;
  gap: 22px;
}
.statement {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.statement:first-child { padding-top: 0; border-top: 0; }
.section-head { margin-bottom: 42px; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.list-clean li:first-child { border-top: 0; }
.card {
  border: 1px solid var(--line);
  padding: 30px;
  background: #fff;
}
.card h3 { margin-bottom: 12px; }
.callout {
  border-top: 1px solid var(--text);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.quote {
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}
.footer {
  background: var(--text);
  color: #fff;
  padding: 72px 0 30px;
  margin-top: 96px;
}
.footer p, .footer a { color: rgba(255,255,255,.74); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h4 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links a { display: block; padding: 6px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
}
.page-hero {
  padding: 84px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { max-width: 740px; }
.service-block {
  display: grid;
  grid-template-columns: .95fr 1.2fr;
  gap: 42px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 1px solid var(--line); }
.prose p, .prose li { color: #1a1a1a; }
.prose h2 { margin-top: 42px; }
.prose ul { padding-left: 22px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 14px; font-weight: 600; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
}
textarea { min-height: 160px; resize: vertical; }
.notice {
  padding: 16px 18px;
  border-left: 2px solid var(--text);
  background: var(--soft);
  color: var(--muted);
  font-size: 15px;
}
.article-link {
  display: block;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.article-link:last-child { border-bottom: 1px solid var(--line); }
.meta { color: var(--muted); font-size: 14px; }
.inline-link, .prose a { color: var(--accent); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 22px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 920px) {
  .grid-2, .grid-3, .hero-grid, .service-block, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { padding-top: 56px; }
  .section { padding: 78px 0; }
  .footer-bottom { flex-direction: column; }
}
