
:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef3fa;
  --text: #13325a;
  --muted: #5f728d;
  --line: #d9e2ef;
  --brand: #0b4c97;
  --brand-2: #1f75cb;
  --brand-3: #0a2f5b;
  --shadow: 0 12px 30px rgba(10, 47, 91, 0.10);
  --radius: 20px;
  --max: 1200px;
}
* { 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: linear-gradient(180deg, #f9fbfe 0%, #f3f6fb 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: #fff; padding: .75rem 1rem; border-radius: 10px; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.narrow { max-width: 860px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  height: 50px;
  width: auto;
  flex: 0 0 auto;
}
.brand-text-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-3);
  white-space: nowrap;
}
.brand-tagline {
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.site-nav a {
  font-weight: 700;
  color: var(--text);
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand-3);
}

.hero {
  background: linear-gradient(180deg, #edf3fa 0%, #e8eef7 100%);
  padding: 4rem 0 4.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}
.eyebrow,
.section-tag {
  margin: 0 0 .9rem;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); max-width: 30ch; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.2rem; color: var(--brand-3); }
p { margin: 0 0 1rem; color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 58ch; margin-top: 1.25rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.5rem 0 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-highlights li {
  padding: .65rem .95rem;
  border-radius: 999px;
  background: rgba(11,76,151,.08);
  border: 1px solid rgba(11,76,151,.12);
  font-weight: 700;
  color: var(--brand-3);
}
.hero-card {
  display: grid;
  gap: 1rem;
}
.stat-card,
.focus-box,
.info-card,
.contact-card {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card { padding: 1.2rem 1.25rem; }
.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-3);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label { color: var(--muted); font-weight: 600; }
.focus-box { padding: 1.4rem 1.35rem; }
.focus-box ul { margin: .9rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.focus-box li + li { margin-top: .35rem; }

.section { padding: 4.5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(243,246,251,.92) 100%); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.7rem;
}
.section-intro { margin-bottom: 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.info-card { padding: 1.35rem 1.25rem; }
.info-card p { margin-top: .55rem; }

.timeline { display: grid; gap: 1rem; }
.timeline-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.timeline-year {
  padding: .8rem 1rem;
  border-radius: 14px;
  background: rgba(11,76,151,.08);
  color: var(--brand);
  font-weight: 800;
  text-align: center;
}
.timeline-content {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--brand-3) 0%, var(--brand) 55%, var(--brand-2) 100%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.section-tag-light,
.cta-band h2 { color: #fff; }
.btn-light {
  background: #fff;
  color: var(--brand);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 1.2rem;
  align-items: start;
}
.contact-card { padding: 1.3rem 1.35rem; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: var(--brand); }

.site-footer { padding: 1.35rem 0 2rem; }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.footer-wrap p,
.footer-wrap a { margin: 0; color: var(--muted); }

@media (max-width: 1100px) {
  .brand-tagline { white-space: normal; }
  .site-nav { gap: 1rem; }
}
@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .contact-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .brand-logo { height: 44px; }
  .brand-text { font-size: 17px; }
  .brand-tagline { font-size: 12px; }
}
@media (max-width: 720px) {
  .nav-wrap { min-height: 74px; }
  .brand-tagline { display: none; }
  h1 { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-highlights { flex-direction: column; }
  .timeline-item { grid-template-columns: 1fr; }
  .cta-band-inner,
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .section { padding: 3.6rem 0; }
}
.hero-copy {
  max-width: 720px;
}
.hero-copy h1 {
  font-size: 46px;
  line-height: 1.15;
  max-width: 650px;
}
@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: 32px;
  }
}
.hero-banner {
  margin-top: 10px;
  margin-bottom: 5px;
}
.stat-value {
  font-size: 32px;
  font-weight: 700;
}
.stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: #1f3b5c;
}

.stat-label {
  font-size: 16px;
  color: #5b6f85;
  line-height: 1.3;
}
.stat-value {
  min-width: 70px;
}
.focus-box h2 {
  font-size: 32px;
  margin-bottom: 12px;
}