:root {
  --navy: #071a33;
  --navy-2: #0d2748;
  --ink: #122033;
  --muted: #627084;
  --line: #e7ebf0;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --accent: #b8c7d9;
  --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", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.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 {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--navy);
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #33445a;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  border: 1px solid var(--navy);
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--navy) !important;
}
.nav-cta:hover { background: var(--navy); color: white !important; }
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--navy); }

.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px 104px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: #cbd8e6;
  font-weight: 700;
  margin-bottom: 16px;
}
h1, h2, h3 { line-height: 1.12; margin: 0; color: inherit; }
h1 { font-size: clamp(44px, 7vw, 78px); letter-spacing: -.055em; }
h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.04em; color: var(--navy); }
h3 { font-size: 22px; letter-spacing: -.02em; color: var(--navy); }
p { margin: 0; }
.hero p { margin-top: 24px; font-size: 19px; color: #dce6f1; max-width: 680px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 20px; font-weight: 700; font-size: 14px; border: 1px solid transparent; }
.button.primary { background: white; color: var(--navy); }
.button.secondary { border-color: rgba(255,255,255,.42); color: white; }
.button.dark { background: var(--navy); color: white; }
.hero-panel { border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 30px; background: rgba(255,255,255,.06); }
.hero-panel strong { display:block; font-size: 42px; line-height: 1; margin-bottom: 8px; }
.hero-panel span { color: #d7e2ef; }
.hero-metrics { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:24px; }
.metric { border-top:1px solid rgba(255,255,255,.22); padding-top:18px; }

.section { padding: 82px 24px; }
.section.soft { background: var(--soft); }
.container { max-width: var(--max); margin: 0 auto; }
.section-head { display:flex; justify-content:space-between; gap:32px; align-items:end; margin-bottom:34px; }
.section-head p { max-width: 590px; color: var(--muted); font-size: 17px; }
.grid { display:grid; gap:22px; }
.grid.cards { grid-template-columns: repeat(4, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background:white;
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  min-height: 210px;
  box-shadow: 0 16px 40px rgba(7,26,51,.04);
}
.card p, .lead, li { color: var(--muted); }
.card h3 { margin-bottom: 14px; }
.card .number { font-size: 13px; color: #8a98aa; font-weight: 800; letter-spacing: .12em; margin-bottom: 34px; }
.list { padding-left: 20px; margin: 18px 0 0; }
.list li { margin: 9px 0; }

.page-hero { background: var(--navy); color: white; padding: 74px 24px; }
.page-hero .container { max-width: var(--max); }
.page-hero h1 { font-size: clamp(42px, 6vw, 68px); }
.page-hero p { max-width: 760px; color:#dce6f1; font-size: 19px; margin-top:20px; }

.team { display:grid; grid-template-columns: repeat(3, 1fr); gap:26px; }
.person { border:1px solid var(--line); border-radius:24px; overflow:hidden; background:#fff; }
.person img { width:100%; aspect-ratio: 4 / 4.35; object-fit: cover; filter: none; }
.person div { padding:22px; }
.person h3 { font-size: 24px; }

.contact-panel { background: var(--navy); color:white; border-radius:28px; padding:44px; display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:center; }
.contact-panel h2 { color:white; }
.contact-panel p { color:#dce6f1; margin-top:14px; }
.contact-box { background:white; color:var(--ink); border-radius:20px; padding:26px; }
.contact-box a { color: var(--navy); font-weight:700; }

.footer { background: #06152a; color: white; padding: 44px 24px; }
.footer-inner { max-width: var(--max); margin:0 auto; display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.footer p, .footer a { color:#cbd8e6; font-size:14px; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }

@media (max-width: 900px) {
  .hero-inner, .grid.cards, .grid.two, .grid.three, .team, .contact-panel { grid-template-columns: 1fr; }
  .section-head { display:block; }
  .section-head p { margin-top:14px; }
  .nav-links { display:none; position:absolute; left:0; right:0; top:64px; background:white; padding:18px 24px 26px; border-bottom:1px solid var(--line); flex-direction:column; align-items:flex-start; }
  .nav-links.open { display:flex; }
  .menu-toggle { display:block; }
  .hero-inner { padding-top:70px; }
}
