:root {
  --navy: #08264e;
  --navy-deep: #061a36;
  --blue: #1467c4;
  --charcoal: #1f2937;
  --text: #4b596b;
  --muted: #718096;
  --line: #dbe3ec;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(8, 38, 78, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--navy);
  color: white;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(219,227,236,.88);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img { width: 86px; height: auto; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a, .footer-links a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 600;
  color: #38485c;
  transition: color .18s ease;
}
.nav a:hover, .nav a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible { color: var(--blue); }

.hero {
  padding: 76px 0 82px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-bottom: 1px solid #edf2f7;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--navy-deep); line-height: 1.14; letter-spacing: -.025em; }
h1 { margin: 0 0 14px; font-size: clamp(3rem, 7vw, 4.9rem); }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { margin: 0 0 14px; font-size: 1.25rem; }
.hero-role {
  margin: 0 0 24px;
  max-width: 760px;
  color: #2e3c50;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}
.hero-intro {
  margin: 0;
  max-width: 720px;
  color: var(--text);
  font-size: 1.03rem;
}
.hero-links {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
}
.button {
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid #cdd8e5;
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 750;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  border-color: #9eb8d6;
  box-shadow: 0 10px 24px rgba(8, 38, 78, .08);
}
.button-primary { background: var(--navy); border-color: var(--navy); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: #0b3265; }

.portrait-wrap {
  margin: 0;
  width: 100%;
  max-width: 390px;
  justify-self: end;
}
.portrait {
  width: 100%;
  aspect-ratio: 700 / 393;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #d7e0ea;
  box-shadow: var(--shadow);
}

.section { padding: 84px 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 430px);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}
.section-note { margin: 0; color: var(--muted); text-align: right; font-size: .96rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 38, 78, 0.035);
}
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5fc;
  color: var(--blue);
  font-size: 1.7rem;
  font-weight: 800;
}
.people-icon { font-size: 1.35rem; }
.card p { margin: 0 0 23px; color: var(--text); font-size: .97rem; }
.text-link {
  margin-top: auto;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  font-size: .93rem;
}
.text-link:hover, .text-link:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.section-muted { background: var(--soft); border-top: 1px solid #e7edf4; border-bottom: 1px solid #e7edf4; }
.background-grid { display: grid; grid-template-columns: 280px 1fr; gap: 76px; align-items: start; }
.background-copy { max-width: 760px; }
.background-copy p { margin: 0 0 18px; color: var(--text); font-size: 1.02rem; }
.expertise { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.expertise span {
  padding: 7px 11px;
  border: 1px solid #ccd9e6;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #435268;
  font-size: .82rem;
  font-weight: 700;
}

.site-footer { padding: 34px 0 22px; background: #fff; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 26px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; font-weight: 800; color: var(--navy); }
.footer-brand img { width: 66px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.3rem; }
.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7a8798;
  font-size: .82rem;
}

:focus-visible { outline: 3px solid rgba(20,103,196,.28); outline-offset: 3px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .portrait-wrap { justify-self: start; max-width: 360px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .section-note { text-align: left; }
  .background-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 68px; gap: 1rem; }
  .brand img { width: 70px; }
  .nav { gap: .9rem; }
  .nav a { font-size: .82rem; }
  .hero { padding: 52px 0 60px; }
  .hero-links { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 100%; }
  .portrait { max-width: 380px; }
  .section { padding: 62px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  .header-inner { align-items: flex-start; padding: 12px 0; }
  .nav { justify-content: flex-end; flex-wrap: wrap; row-gap: .3rem; }
  h1 { font-size: 2.9rem; }
  .hero-role { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
