* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f8fafc;
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.page { min-height: 100vh; background: var(--page); }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar .shell,
.footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white;
  font-weight: 800;
}
.brand-copy small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.nav a {
  color: var(--ink-soft);
  font-weight: 600;
}
.nav a:hover { color: var(--brand); text-decoration: none; }
.hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.95));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}
.eyebrow,
.mini-label {
  display: inline-block;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1,
.section-header h2,
.legal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 12px 0;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.lead,
.section-header p,
.legal-card > p,
.signal p,
.metric span,
.panel p,
.contact-item {
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}
.button.primary { background: var(--brand); color: white; }
.button.secondary { background: white; color: var(--brand); border-color: var(--line); }
.button:hover { text-decoration: none; filter: brightness(0.98); }
.hero-card,
.metric,
.signal,
.panel,
.legal-card,
.contact-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.hero-card { padding: 22px; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06); }
.signal-grid,
.metric-grid,
.panel-grid {
  display: grid;
  gap: 14px;
}
.signal-grid,
.metric-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.panel-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.signal,
.metric,
.panel { padding: 18px; }
.signal strong,
.metric strong,
.panel h3,
.contact-item strong { display: block; margin-bottom: 6px; }
.section { padding: 28px 0 44px; }
.section-header { max-width: 720px; margin-bottom: 18px; }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.legal-card { padding: 22px; }
.faq-item + .faq-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.contact-item { padding: 14px 16px; }
.footer {
  margin-top: 24px;
  background: #0f172a;
  color: #e2e8f0;
}
.footer a { color: #f8fafc; }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-meta p { margin: 0 0 6px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .topbar .shell,
  .footer .shell {
    flex-direction: column;
    align-items: flex-start;
  }
}
