:root {
  --bg: #0b1020;
  --surface: #11182c;
  --surface-2: #f6f7fb;
  --text: #172033;
  --muted: #667085;
  --white: #ffffff;
  --line: #e4e7ec;
  --accent: #3b5bcc;
  --accent-dark: #2947ad;
  --radius: 18px;
}
* { 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(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; }
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { text-decoration: none; color: #475467; font-weight: 600; font-size: .95rem; }
nav a:hover { color: var(--accent); }
.hero { background: linear-gradient(180deg, #0b1020 0%, #121a31 100%); color: var(--white); padding: 96px 0; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 52px; align-items: center; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.hero .eyebrow { color: #9eb0ff; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(2.45rem, 6vw, 4.6rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.lead { font-size: 1.18rem; color: #d0d5dd; max-width: 760px; }
.section .lead { color: #475467; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; text-decoration: none; background: var(--accent); color: white; font-weight: 700; border: 1px solid var(--accent); }
.button:hover { background: var(--accent-dark); }
.button-secondary { background: transparent; border-color: rgba(255,255,255,.3); }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 10px 30px rgba(16,24,40,.05); }
.highlight-card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: var(--white); box-shadow: none; }
.highlight-card p, .highlight-card li { color: #d0d5dd; }
.section { padding: 88px 0; }
.section-alt { background: var(--surface-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.cards .card p { margin-bottom: 0; color: #667085; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.clean-list { margin: 0; padding-left: 20px; }
.clean-list li { margin: 8px 0; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 32px; background: #f6f7fb; border-radius: var(--radius); padding: 38px; }
.callout h2 { margin-bottom: 8px; }
.contact-card { max-width: 720px; margin-top: 28px; }
.large-link { font-size: 1.35rem; font-weight: 750; color: var(--accent); }
.narrow { min-height: 60vh; }
.narrow-content { max-width: 800px; }
.legal h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
.legal h2 { font-size: 1.35rem; margin-top: 38px; }
.legal p { color: #475467; }
.muted { color: var(--muted); }
.site-footer { background: var(--bg); color: var(--white); padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-grid p { color: #b8c0d0; margin-bottom: 0; }
.footer-grid a { color: #dce2ef; text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.copyright { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #98a2b3; font-size: .9rem; }
@media (max-width: 820px) {
  .hero-grid, .two-column { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .nav-wrap { align-items: flex-start; padding: 18px 0; flex-direction: column; }
  .hero { padding: 72px 0; }
  .callout { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .cards, .footer-grid { grid-template-columns: 1fr; }
  nav { gap: 14px; }
  .section { padding: 64px 0; }
  .card { padding: 22px; }
}
