:root {
  --deep-blue: #1A365D;
  --trust-teal: #2B6CB0;
  --clean-slate: #E2E8F0;
  --ink: #102033;
  --muted: #516173;
  --background: #FFFFFF;
  --surface: #F7FAFC;
  --border: #D8E1EC;
  --shadow: 0 18px 40px rgba(26, 54, 93, 0.10);
  --radius: 22px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--background);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--trust-teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.narrow {
  max-width: 850px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--deep-blue);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(360px, 62vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--deep-blue);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-blue);
  margin: 5px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.section {
  padding: 92px 0;
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(43,108,176,0.16), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FBFE 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--trust-teal);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3 {
  color: var(--deep-blue);
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.lead {
  font-size: 1.22rem;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 2rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--deep-blue);
  color: white;
  box-shadow: 0 10px 28px rgba(26, 54, 93, 0.18);
}

.btn-primary:hover {
  background: #142B4A;
}

.btn-secondary {
  background: white;
  color: var(--deep-blue);
  border-color: var(--border);
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.45rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.hero-card li {
  padding: 0.75rem 0 0.75rem 1.8rem;
  border-top: 1px solid var(--clean-slate);
  position: relative;
  color: var(--ink);
  font-weight: 600;
}

.hero-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--trust-teal);
  position: absolute;
  left: 0.4rem;
  top: 1.35rem;
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 1040px;
  margin-bottom: 2.3rem;
}

.section-heading h2 {
  max-width: 960px;
}

.section-heading p {
  max-width: 980px;
}

.section-heading p,
.text-block p,
.contact-box p,
.legal-page p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 10px 26px rgba(26, 54, 93, 0.06);
}

.card-wide {
  grid-column: 1 / -1;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.text-block {
  font-size: 1.08rem;
}

.contact-section {
  background: linear-gradient(135deg, var(--deep-blue), #234A78);
  color: white;
}

.contact-section h2,
.contact-section .eyebrow,
.contact-section p {
  color: white;
}

.contact-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 3rem);
}

.contact-box .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.42);
}

.note {
  font-size: 0.92rem;
  opacity: 0.88;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: white;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 1rem;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2.1rem;
}

.placeholder {
  color: #9A5B00;
  font-weight: 600;
}

@media (max-width: 840px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .split {
    gap: 1.4rem;
  }

  .section {
    padding: 66px 0;
  }

  .brand-logo {
    height: 38px;
    max-width: min(300px, 64vw);
  }

  #approach .split,
  #profile .split {
    gap: 0.45rem;
  }

  #approach .split > div:first-child h2,
  #profile .split > div:first-child h2 {
    margin-bottom: 0;
  }

  #approach .text-block p:first-child,
  #profile .text-block p:first-child {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-actions,
  .contact-actions,
  .btn {
    width: 100%;
  }

  .btn {
    justify-content: center;
  }

  h1 {
    font-size: 2.35rem;
  }
}
