:root {
  --navy: #16275c;
  --deep-navy: #0f1c45;
  --red: #d81b3e;
  --red-light: #ff6b85;
  --ink: #1a1f2e;
  --body: #3a4254;
  --muted: #5a6273;
  --muted-2: #7c8699;
  --micro: #9aa3b5;
  --tint: #f5f7fb;
  --tint-2: #fafbfd;
  --hairline: #e6e9f0;
  --header-line: #eceff5;
  --button-line: #dce1ec;
  --on-navy: #e7edfa;
  --on-navy-muted: #b8c4e2;
  --on-navy-soft: #a9b7da;
  --on-navy-kicker: #8fa4d6;
  --on-footer: #9db0dc;
  --on-footer-muted: #7e92c6;
  --on-red: #fff1f4;
  --on-red-kicker: #ffd2db;
  --pink-chip: #fde7ec;
  --blue-chip: #e7ecf7;
  --shadow-navy-lg: 0 30px 60px -28px rgba(22, 39, 92, 0.45);
  --shadow-navy-md: 0 22px 46px -24px rgba(22, 39, 92, 0.4);
  --shadow-red: 0 10px 24px -10px rgba(216, 27, 62, 0.6);
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 27, 62, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  transition: transform 0.18s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--header-line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
}

.site-nav {
  width: min(100%, 1200px);
  height: 74px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--body);
  font-size: 14.5px;
  font-weight: 500;
}

.nav-links a,
.nav-cta,
.button {
  transition-property: color, background-color, border-color, box-shadow, transform;
  transition-duration: 0.18s;
  transition-timing-function: var(--ease);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 22px;
}

.nav-cta:hover {
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--tint);
  color: var(--navy);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition-property: transform, opacity;
  transition-duration: 0.18s;
  transition-timing-function: var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 88px;
}

.kicker,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.kicker span {
  width: 26px;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "IBM Plex Sans", system-ui, sans-serif;
}

h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

h1 strong {
  color: var(--red);
  font-weight: inherit;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-lede {
  max-width: 520px;
  margin: 0 0 38px;
  color: #4a5263;
  font-size: 18.5px;
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
}

.button:active {
  transform: scale(0.96);
}

.button-primary {
  background: var(--red);
  box-shadow: var(--shadow-red);
  color: #fff;
  padding: 15px 30px;
}

.button-primary:hover {
  box-shadow: 0 16px 30px -10px rgba(216, 27, 62, 0.7);
  transform: translateY(-2px);
}

.button-secondary {
  border: 1.5px solid var(--button-line);
  color: var(--navy);
  padding: 15px 26px;
}

.button-secondary:hover {
  border-color: var(--navy);
  background: var(--tint);
}

.hero-media {
  position: relative;
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-navy-lg);
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 34px;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 20px 40px -16px rgba(22, 39, 92, 0.55);
  color: #fff;
  padding: 18px 22px;
}

.hero-badge strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.hero-badge span {
  display: block;
  margin-top: 6px;
  color: var(--on-navy-soft);
  font-size: 12.5px;
}

.credibility-strip {
  border-top: 1px solid var(--header-line);
  border-bottom: 1px solid var(--header-line);
  background: var(--tint-2);
}

.credibility-content {
  min-height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 40px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.credibility-content span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.credibility-content p {
  margin: 0;
  color: #2a3658;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.credibility-content b {
  margin: 0 12px;
  color: var(--red);
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-tint {
  border-top: 1px solid var(--header-line);
  border-bottom: 1px solid var(--header-line);
  background: var(--tint);
  padding-top: 104px;
  padding-bottom: 104px;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding-top: 104px;
  padding-bottom: 104px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.accent-rule {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 22px;
  border-radius: 2px;
  background: var(--red);
}

.about-image {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 380px;
  margin-top: 36px;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 14px;
  box-shadow: var(--shadow-navy-md);
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.about-copy .lead,
.founder-section .lead {
  margin: 0 0 20px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.66;
}

.about-copy p,
.business-section p,
.founder-section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.about-copy p {
  margin: 0 0 36px;
}

.facts-grid,
.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--hairline);
}

.facts-grid {
  border: 1px solid var(--hairline);
}

.facts-grid div {
  background: #fff;
  padding: 20px 24px;
}

.facts-grid dt,
.contact-facts dt {
  margin-bottom: 6px;
  color: var(--micro);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 1.4;
  text-transform: uppercase;
}

.facts-grid dd,
.contact-facts dd {
  margin: 0;
  color: #1f2a47;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.5;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading-center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
  text-align: center;
}

.section-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row > div {
  max-width: 560px;
}

.section-heading-row > p,
.dark-heading > p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
  text-wrap: pretty;
}

.section-heading-row > p {
  max-width: 420px;
}

.direction-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.statement-card {
  border-radius: 16px;
  padding: 38px 40px;
}

.statement-card p {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.statement-card h3 {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.statement-card-navy {
  background: var(--navy);
  color: var(--on-navy);
}

.statement-card-navy p {
  color: var(--on-navy-kicker);
}

.statement-card-red {
  background: var(--red);
  color: var(--on-red);
}

.statement-card-red p {
  color: var(--on-red-kicker);
}

.values-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.values-grid article {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: #fff;
  padding: 26px 28px;
}

.values-grid h3,
.why-grid h3,
.services-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
}

.values-grid h3 {
  font-size: 18px;
}

.values-grid p,
.why-grid p,
.services-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.62;
  text-wrap: pretty;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: var(--hairline);
}

.services-grid article {
  min-height: 245px;
  background: #fff;
  padding: 34px 30px;
  transition-property: background-color;
  transition-duration: 0.18s;
  transition-timing-function: var(--ease);
}

.services-grid article:hover {
  background: var(--tint-2);
}

.services-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.sectors-section .container {
  position: relative;
  z-index: 1;
}

.sector-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sector-ring-one {
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 2px solid rgba(216, 27, 62, 0.35);
}

.sector-ring-two {
  bottom: -120px;
  left: -80px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 255, 255, 0.07);
}

.dark-heading {
  max-width: 620px;
  margin-bottom: 52px;
}

.dark-heading .section-kicker,
.contact-section .section-kicker {
  color: var(--red-light);
}

.dark-heading h2,
.contact-section h2 {
  color: #fff;
}

.dark-heading > p,
.contact-section p {
  max-width: 540px;
  margin-top: 16px;
  color: var(--on-navy-muted);
  font-size: 17px;
  line-height: 1.6;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sector-grid article {
  min-height: 92px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  padding: 24px 22px;
}

.sector-grid .sector-accent {
  border-color: rgba(216, 27, 62, 0.5);
  background: rgba(216, 27, 62, 0.16);
}

.business-section p {
  margin: 22px 0 0;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.engagement-grid article {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  background: var(--tint);
  color: #1f2a47;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 22px;
}

.engagement-grid span {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--red);
}

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

.founder-photo-wrap img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: 50% 14%;
  border-radius: 50%;
  box-shadow: 0 18px 40px -22px rgba(22, 39, 92, 0.45);
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.founder-section h2 {
  font-size: 38px;
  letter-spacing: 0;
  line-height: 1.12;
}

.founder-section .role {
  margin: 8px 0 24px;
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.why-grid {
  gap: 28px;
}

.why-grid article {
  padding: 4px 0;
}

.icon-chip {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 11px;
}

.icon-chip i {
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 4px;
}

.icon-red {
  background: var(--pink-chip);
}

.icon-red i {
  background: var(--red);
}

.icon-navy {
  background: var(--blue-chip);
}

.icon-navy i {
  background: var(--navy);
}

.contact-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.contact-topline {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.contact-section h2 {
  max-width: 540px;
  font-size: 44px;
  letter-spacing: 0;
  line-height: 1.08;
}

.contact-section p {
  max-width: 440px;
  margin: 20px 0 34px;
  font-size: 18px;
}

.contact-facts {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-facts div {
  background: var(--navy);
  padding: 26px 28px;
}

.contact-facts dt {
  color: var(--on-navy-kicker);
  font-size: 11.5px;
  letter-spacing: 1.6px;
}

.contact-facts dd {
  color: var(--on-navy);
  font-weight: 400;
}

.contact-facts a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-facts a:hover {
  text-decoration: underline;
}

.site-footer {
  background: var(--deep-navy);
  color: #fff;
}

.footer-content {
  min-height: 126px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-brand span {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  padding: 8px 12px;
}

.footer-brand img {
  width: auto;
  height: 30px;
}

.footer-brand p,
.footer-content > p {
  margin: 0;
  color: var(--on-footer);
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-content > p {
  color: var(--on-footer-muted);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-media img {
    height: min(56vw, 480px);
    min-height: 360px;
  }

  .about-image {
    max-width: 420px;
  }

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

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

  .founder-photo-wrap {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 74px 0 0;
    z-index: 40;
    background: rgba(15, 28, 69, 0.38);
  }

  .site-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-toggle {
    display: block;
    flex: none;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    z-index: 60;
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--header-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 44px -24px rgba(22, 39, 92, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition-property: opacity, transform;
    transition-duration: 0.18s;
    transition-timing-function: var(--ease);
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 8px 10px;
  }

  .nav-links a:hover {
    background: var(--tint);
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section,
  .section-tint,
  .section-dark,
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .direction-cards,
  .facts-grid,
  .contact-facts,
  .engagement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-nav {
    height: 70px;
  }

  .brand-logo {
    height: 35px;
  }

  .nav-menu {
    top: 70px;
  }

  body.nav-open::before {
    inset: 70px 0 0;
  }

  .container,
  .site-nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: 0;
  }

  h2 {
    font-size: 32px;
    letter-spacing: 0;
  }

  .founder-section h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .kicker,
  .section-kicker {
    font-size: 11.5px;
    letter-spacing: 1.8px;
  }

  .kicker {
    align-items: flex-start;
  }

  .kicker span {
    margin-top: 8px;
  }

  .hero-lede,
  .contact-section p {
    font-size: 17px;
  }

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

  .button {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-media img {
    height: 330px;
    min-height: 0;
    border-radius: 14px;
  }

  .hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 16px 18px;
  }

  .credibility-content {
    align-items: flex-start;
  }

  .credibility-content p {
    font-size: 15.5px;
  }

  .credibility-content b {
    margin: 0 6px;
  }

  .split-grid,
  .founder-grid,
  .contact-grid {
    gap: 44px;
  }

  .about-image {
    max-width: none;
    height: 340px;
  }

  .direction-cards,
  .values-grid,
  .why-grid,
  .services-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .statement-card,
  .services-grid article,
  .values-grid article,
  .contact-facts div {
    padding: 26px 24px;
  }

  .services-grid article {
    min-height: auto;
  }

  .section-heading-row {
    margin-bottom: 36px;
  }

  .sector-grid article {
    min-height: 72px;
  }

  .founder-photo-wrap img {
    width: 168px;
    height: 168px;
  }

  .footer-content {
    align-items: flex-start;
  }
}

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