:root {
  --navy: #0b2f63;
  --navy-dark: #061a36;
  --blue: #114b96;
  --ink: #1f2328;
  --muted: #5f6872;
  --light: #f5f7fa;
  --white: #ffffff;
  --line: #dbe2ea;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 900px; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 190px; height: 64px; object-fit: contain; background: white; }
.nav-links { display: flex; gap: 24px; font-size: .95rem; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.hero { position: relative; min-height: clamp(480px, 62vw, 720px); overflow: hidden; background: var(--navy-dark); }
.hero-image { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(0,16,38,.78), rgba(0,16,38,.22) 65%, rgba(0,16,38,.08));
}
.hero-content { color: white; padding-block: 70px; max-width: 780px; }
.eyebrow { margin: 0 0 12px; font-size: .82rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.blue { color: var(--blue); }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.3rem); letter-spacing: -.05em; margin-bottom: 22px; }
h1 span { color: #b9d4ff; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -.035em; margin-bottom: 22px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
p { font-size: 1.08rem; }
.hero-copy { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; margin-bottom: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 12px 22px; border-radius: 7px;
  font-weight: 900; text-decoration: none; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover { background: var(--navy); }
.button-outline { border: 2px solid var(--blue); color: var(--blue); background: white; }
.section { padding: 96px 0; }
.section-dark { background: var(--navy-dark); color: white; }
.section-blue { background: var(--navy); color: white; }
.section-lead { max-width: 760px; color: #cbd8e9; }
.statement-grid, .cards { display: grid; gap: 18px; }
.statement-grid { grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.statement-grid div { padding: 22px; background: var(--light); border-left: 4px solid var(--blue); }
.statement-grid strong, .statement-grid span { display: block; }
.statement-grid span { color: var(--muted); margin-top: 4px; }
.cards { grid-template-columns: repeat(4, 1fr); margin-top: 48px; }
.card { padding: 28px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); border-radius: 10px; }
.card p { color: #cbd8e9; }
.icon { color: #6ea8ff; font-size: 2rem; display: block; margin-bottom: 18px; }
.story { display: grid; grid-template-columns: 1.4fr .8fr; gap: 70px; align-items: center; }
.highlight { font-size: 1.3rem; }
.story-card {
  min-height: 300px; border-radius: 14px; background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  color: white; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 30px;
}
.number { font-size: 8rem; line-height: .85; font-weight: 950; letter-spacing: -.08em; }
.unit { font-weight: 900; letter-spacing: .18em; }
.small { color: #cbd8e9; margin-top: 12px; }
.simple { max-width: 900px; text-align: center; }
.simple p { color: #e5edf7; }
.cta { background: var(--light); text-align: center; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.footer { background: #071321; color: #d7e1ee; padding-top: 54px; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-logo { width: 220px; height: 70px; object-fit: contain; background: white; border-radius: 4px; }
.footer .tagline { color: white; font-weight: 800; }
.socials { display: flex; gap: 20px; font-weight: 800; }
.socials a { text-decoration: none; }
.socials a:hover { color: white; }
.copyright { margin-top: 40px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; color: #9eacbc; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-image { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0,16,38,.86), rgba(0,16,38,.45)); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 68px 0; }
  .brand img { width: 150px; height: 56px; }
  h1 { font-size: 3rem; }
  .statement-grid, .cards { grid-template-columns: 1fr; }
  .hero { min-height: 620px; }
  .hero-image { object-position: 68% center; }
  .hero-content { padding-top: 90px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
