:root {
  --blue: #1738f5;
  --blue-strong: #0926c9;
  --blue-deep: #071454;
  --ink: #111827;
  --muted: #5b6375;
  --line: #dce4f5;
  --surface: #ffffff;
  --soft: #f6f9ff;
  --accent: #d8ff3f;
  --shadow: 0 20px 70px rgba(12, 32, 90, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--blue-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 18px clamp(22px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 245, 0.8);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 149px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: #eef2fa;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: #283047;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
  background: var(--blue);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue);
  background: #fff;
  border-radius: 0;
  place-items: center;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--blue-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 84, 0.86), rgba(23, 56, 245, 0.32) 58%, rgba(7, 20, 84, 0.14)),
    linear-gradient(0deg, rgba(7, 20, 84, 0.78), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 12vh, 132px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
}

.button.primary {
  color: var(--blue-deep);
  background: var(--accent);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  color: #fff;
  background: #050505;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.statement {
  padding: clamp(72px, 11vw, 150px) 22px;
  background: #fff;
}

.statement-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.statement-inner p {
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.statement-inner span {
  color: var(--blue);
}

.people-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  background: var(--blue);
  color: #fff;
}

.people-image {
  min-height: 480px;
}

.people-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: clamp(56px, 8vw, 118px) clamp(28px, 7vw, 88px);
}

.people-copy h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}

.people-copy p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
}

.text-link {
  width: fit-content;
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
}

.awards {
  padding: clamp(70px, 10vw, 132px) 22px;
  background: var(--soft);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  color: var(--blue-deep);
}

.award-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 72px);
  flex-wrap: wrap;
}

.award-row img {
  width: min(220px, 38vw);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(17, 24, 39, 0.14));
}

.testimonial {
  padding: clamp(80px, 11vw, 150px) 22px;
  background: var(--blue);
  color: #fff;
}

.testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 92px;
  line-height: 0.6;
  font-weight: 950;
}

.testimonial blockquote {
  margin: 0;
}

.testimonial blockquote p {
  margin: 0 auto 22px;
  max-width: 760px;
  font-size: clamp(19px, 2.35vw, 30px);
  line-height: 1.28;
  font-weight: 850;
}

.testimonial-name {
  margin: 26px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.testimonial-role {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  background: #fff;
  color: var(--ink);
  padding: 44px 22px 34px;
}

.page-main {
  background: #fff;
}

.page-hero {
  padding: clamp(76px, 12vw, 148px) 22px clamp(44px, 8vw, 92px);
  background: linear-gradient(180deg, var(--soft), #fff);
}

.page-hero-inner,
.content-section {
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(46px, 7vw, 90px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 span {
  color: var(--blue);
}

.content-section {
  padding: 0 0 clamp(72px, 10vw, 128px);
}

.content-section h2 {
  margin: 42px 0 16px;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
}

.content-section p,
.content-section li {
  max-width: 900px;
  color: #303648;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.62;
}

.content-section ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.content-section li {
  min-height: 110px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue-deep);
  font-weight: 850;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.35fr 1fr;
  gap: 34px;
  max-width: 1040px;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.2;
}

.site-footer p {
  margin: 0 0 7px;
  color: #303648;
  font-size: 14px;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
  outline: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.social-links img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.copyright {
  margin: 38px auto 0;
  max-width: 1040px;
  text-align: center;
  color: #5c6475;
  font-size: 12px;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 84px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 22px;
    left: 22px;
    display: none;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
    min-height: 42px;
  }

  .hero {
    min-height: calc(100vh - 84px);
  }

  .people-section {
    grid-template-columns: 1fr;
  }

  .people-image {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-section ul,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 22px;
  }

  .brand img {
    width: 128px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: calc(100% - 44px);
    padding-bottom: 58px;
  }

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

  .statement-inner p {
    font-size: clamp(36px, 13vw, 58px);
  }

  .people-copy {
    padding: 44px 22px 54px;
  }

  .award-row img {
    width: min(176px, 45vw);
  }

  .testimonial blockquote p {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .text-link {
    transition: none;
  }
}
