
:root {
  --navy-950: #04142f;
  --navy-900: #07204a;
  --navy-800: #0a2e68;
  --blue-600: #1268d8;
  --cyan-500: #00a7c7;
  --cyan-300: #66d7e6;
  --amber-500: #f0b72c;
  --amber-300: #ffd66b;
  --ivory: #fbfaf6;
  --sand: #f1eee6;
  --mist: #e9f1f5;
  --ink: #112641;
  --muted: #526579;
  --line: rgba(10, 46, 104, 0.14);
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/geist-ff2310f5.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/geist-001175b1.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/geist-52306abf.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/geist-875ccdd4.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/geist-98bbbccb.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Geist', Arial, sans-serif;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: white;
  background: var(--blue-600);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  background: var(--ivory);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  width: 116px;
  height: 116px;
}

.loader-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.loader-ring {
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 2px solid rgba(9, 40, 89, 0.12);
  border-top-color: var(--amber-500);
  border-right-color: var(--cyan-500);
  border-radius: 50%;
  animation: loaderSpin 1.1s linear infinite;
}

.site-loader p {
  margin: 28px 0 6px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.site-loader > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-500), var(--cyan-500));
  transition: width 0.12s linear;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 clamp(22px, 4.5vw, 74px);
  color: white;
  background: rgba(4, 20, 47, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand > span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0.15em;
}

.brand small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header nav button {
  position: relative;
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  font-weight: 580;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease;
}

.site-header nav button::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 1px;
  background: var(--amber-500);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-header nav button:hover,
.site-header nav button.active {
  color: white;
}

.site-header nav button.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
  padding: 12px 16px;
  color: var(--navy-950);
  font-size: 0.82rem;
  font-weight: 750;
  background: var(--amber-500);
  border-radius: 4px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  background: var(--amber-300);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: white;
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: clamp(50px, 6vw, 105px);
  padding: 142px clamp(24px, 7vw, 116px) 90px;
  color: white;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 167, 199, 0.15), transparent 24%),
    linear-gradient(125deg, #04142f 0%, #071c40 58%, #08285a 100%);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -18vw;
  left: -15vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(240, 183, 44, 0.18);
  box-shadow: 0 0 100px rgba(240, 183, 44, 0.04) inset;
}

.hero-glow-two {
  right: -12vw;
  bottom: -20vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(0, 167, 199, 0.2);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--blue-600);
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

.hero-eyebrow {
  color: var(--cyan-300);
  animation: fadeUp 0.7s 0.9s both;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.55rem, 6.2vw, 7.2rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.93;
  text-wrap: balance;
  animation: fadeUp 0.75s 1s both;
}

h1 em,
h2 em {
  display: block;
  color: var(--amber-300);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.75;
  animation: fadeUp 0.75s 1.1s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
  animation: fadeUp 0.75s 1.2s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 54px;
  padding: 0 21px;
  font-size: 0.86rem;
  font-weight: 720;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--amber-500);
  box-shadow: 0 14px 30px rgba(240, 183, 44, 0.14);
}

.button-primary:hover {
  background: var(--amber-300);
  box-shadow: 0 18px 38px rgba(240, 183, 44, 0.22);
}

.button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  animation: fadeUp 0.75s 1.3s both;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 22px;
}

.hero-proof strong {
  color: white;
  font-size: 1.65rem;
  font-weight: 550;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  line-height: 1.35;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 610px;
  animation: visualIn 1s 1s both;
}

.visual-card {
  position: relative;
  width: min(100%, 515px);
  padding: 26px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  pointer-events: none;
}

.visual-kicker {
  display: block;
  padding-bottom: 19px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.visual-logo {
  position: relative;
  aspect-ratio: 1;
  padding: 7%;
  background: white;
  border-radius: 3px;
  overflow: hidden;
}

.visual-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visual-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(102, 215, 230, 0.18);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 9%;
  width: 9px;
  height: 9px;
  background: var(--amber-500);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--amber-500);
}

.orbit-one {
  width: 590px;
  height: 590px;
}

.orbit-two {
  width: 690px;
  height: 690px;
  opacity: 0.48;
  animation-direction: reverse;
  animation-duration: 26s;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: var(--navy-950);
  font-size: 0.7rem;
  font-weight: 690;
  background: white;
  border-radius: 3px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.floating-note i {
  width: 7px;
  height: 7px;
  background: var(--cyan-500);
  border-radius: 50%;
}

.note-one {
  top: 14%;
  right: -2%;
  animation: float 4s ease-in-out infinite;
}

.note-two {
  bottom: 12%;
  left: -5%;
  animation: float 5s 0.6s ease-in-out infinite;
}

.note-two i {
  background: var(--amber-500);
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  transform: translateX(-50%);
  cursor: pointer;
}

.scroll-cue span {
  position: relative;
  width: 18px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 3px;
  background: var(--amber-500);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}

.section {
  padding: clamp(92px, 10vw, 155px) 0;
}

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 790px;
}

.section-heading h2,
.why-copy h2,
.coverage-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading h2 em,
.why-copy h2 em,
.coverage-copy h2 em,
.contact-copy h2 em {
  color: var(--blue-600);
}

.section-heading > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.overview-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(10, 46, 104, 0.05) 50%, transparent 50.05%),
    var(--ivory);
}

.overview-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
  margin-top: 70px;
}

.overview-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.overview-copy .lead {
  padding-bottom: 26px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.4;
  border-bottom: 1px solid var(--line);
}

.purpose-stack {
  display: grid;
  gap: 18px;
}

.purpose-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.purpose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(7, 32, 74, 0.1);
}

.vision-card {
  background: white;
}

.mission-card {
  color: white;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.purpose-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  background: var(--amber-500);
  border-radius: 50%;
}

.card-label {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-card .card-label {
  color: var(--cyan-300);
}

.purpose-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.purpose-card p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.mission-card p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.expertise-section {
  color: white;
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 167, 199, 0.12), transparent 24%),
    var(--navy-950);
}

.section-heading.light h2 {
  color: white;
}

.section-heading.light h2 em {
  color: var(--amber-300);
}

.section-heading.light .eyebrow {
  color: var(--cyan-300);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.58);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.expertise-card {
  min-height: 315px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.35s ease, transform 0.35s ease;
}

.expertise-card:hover {
  z-index: 2;
  background: var(--navy-800);
  transform: translateY(-6px);
}

.expertise-top {
  display: flex;
  justify-content: space-between;
  color: var(--cyan-300);
  font-size: 0.7rem;
}

.expertise-top i {
  font-style: normal;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.expertise-card:hover .expertise-top i {
  opacity: 1;
  transform: translate(3px, -3px);
}

.expertise-card h3 {
  margin: 60px 0 16px;
  font-size: 1.12rem;
  font-weight: 640;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.expertise-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.81rem;
  line-height: 1.7;
}

.experience-section {
  background: var(--sand);
}

.experience-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 65px;
}

.experience-lead {
  margin: 0 0 4px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.6;
}

.capability-panel {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 70px;
  margin-top: 70px;
  padding: clamp(35px, 5vw, 68px);
  color: white;
  background: var(--navy-900);
}

.capability-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.capability-intro > span {
  margin-bottom: 45px;
  color: var(--cyan-300);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capability-intro strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.capability-intro strong:nth-child(3) {
  color: var(--amber-300);
}

.capability-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-panel li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-panel li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-panel li span {
  color: var(--amber-300);
  font-size: 0.67rem;
}

.capability-panel li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.91rem;
  line-height: 1.5;
}

.selected-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 100px 0 40px;
}

.selected-heading > span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 0.75rem;
  background: var(--blue-600);
  border-radius: 50%;
}

.selected-heading .card-label {
  margin-bottom: 4px;
}

.selected-heading h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.experience-card {
  padding: 35px;
  background: white;
  border-top: 3px solid var(--cyan-500);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.experience-card:nth-child(2) {
  border-top-color: var(--amber-500);
}

.experience-card:nth-child(3) {
  border-top-color: var(--blue-600);
}

.experience-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 55px rgba(7, 32, 74, 0.11);
}

.experience-label {
  color: var(--blue-600);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-card h3 {
  min-height: 62px;
  margin: 18px 0 28px;
  color: var(--navy-900);
  font-size: 1.28rem;
  line-height: 1.25;
}

.experience-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.experience-card li span {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: white;
  font-size: 0.56rem;
  background: var(--navy-800);
  border-radius: 50%;
}

.approach-section {
  color: white;
  background:
    radial-gradient(circle at 85% 75%, rgba(18, 104, 216, 0.24), transparent 32%),
    var(--navy-950);
}

.approach-list {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.approach-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(230px, 0.78fr) 1.22fr 35px;
  gap: 25px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.approach-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 167, 199, 0.09), transparent);
  transform: translateX(-101%);
  transition: transform 0.45s ease;
}

.approach-item:hover::before {
  transform: translateX(0);
}

.approach-item > span {
  z-index: 1;
  color: var(--amber-300);
  font-size: 0.7rem;
}

.approach-item h3 {
  z-index: 1;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 590;
}

.approach-item p {
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
}

.approach-item i {
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.why-section {
  background: var(--ivory);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 145px);
}

.why-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.why-copy p {
  max-width: 450px;
  margin: 28px 0;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.87rem;
  font-weight: 730;
  border-bottom: 1px solid var(--navy-900);
  transition: gap 0.25s ease;
}

.text-link:hover {
  gap: 38px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reason-card {
  min-height: 205px;
  padding: 28px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, transform 0.3s ease;
}

.reason-card:hover {
  z-index: 2;
  background: var(--mist);
  transform: scale(1.025);
}

.reason-card span {
  color: var(--blue-600);
  font-size: 0.67rem;
}

.reason-card p {
  margin: 70px 0 0;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 570;
  line-height: 1.45;
}

.coverage-section {
  position: relative;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 32, 74, 0.97), rgba(7, 32, 74, 0.78)),
    var(--navy-900);
  overflow: hidden;
}

.coverage-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 80px;
  padding-top: clamp(100px, 11vw, 160px);
  padding-bottom: clamp(100px, 11vw, 160px);
}

.coverage-copy .eyebrow {
  color: var(--cyan-300);
}

.coverage-copy h2 {
  color: white;
}

.coverage-copy h2 em {
  color: var(--amber-300);
}

.coverage-copy p {
  max-width: 710px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  line-height: 1.8;
}

.coverage-levels {
  display: grid;
  gap: 13px;
}

.coverage-levels span {
  padding: 17px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.coverage-levels span:nth-child(2) {
  transform: translateX(-30px);
}

.coverage-map {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.map-ring {
  position: absolute;
  top: 50%;
  right: 9%;
  border: 1px solid rgba(102, 215, 230, 0.22);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ring-a {
  width: 240px;
  height: 240px;
}

.ring-b {
  width: 480px;
  height: 480px;
}

.ring-c {
  width: 760px;
  height: 760px;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--amber-500);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(240, 183, 44, 0.1), 0 0 25px var(--amber-500);
}

.dot-a {
  top: 28%;
  right: 16%;
}

.dot-b {
  top: 59%;
  right: 28%;
  background: var(--cyan-300);
  box-shadow: 0 0 0 8px rgba(102, 215, 230, 0.1), 0 0 25px var(--cyan-300);
}

.dot-c {
  right: 9%;
  bottom: 20%;
}

.values-marquee {
  position: relative;
  z-index: 2;
  padding: 23px 0;
  color: var(--navy-950);
  background: var(--amber-500);
  overflow: hidden;
}

.values-marquee > div {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.values-marquee span {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.values-marquee i {
  color: var(--navy-900);
  font-family: Arial, sans-serif;
  font-style: normal;
  font-size: 1rem;
}

.contact-section {
  background: var(--mist);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 9vw, 125px);
}

.contact-copy p {
  max-width: 480px;
  margin: 27px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 38px;
  padding: clamp(30px, 4.5vw, 55px);
  background: white;
  box-shadow: 0 30px 70px rgba(7, 32, 74, 0.1);
}

.contact-logo {
  align-self: start;
  padding: 12px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.contact-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-details {
  display: grid;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details > div:first-child {
  padding-top: 0;
}

.contact-details > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details span {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-details strong,
.contact-details a {
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 660;
}

.contact-details a {
  display: flex;
  justify-content: space-between;
}

.contact-details i {
  color: var(--blue-600);
  font-style: normal;
}

footer {
  padding: 70px clamp(24px, 7vw, 116px) 28px;
  color: white;
  background: var(--navy-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-top > p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.footer-top > button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a:hover {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.75s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.expertise-grid .reveal:nth-child(2),
.experience-grid .reveal:nth-child(2),
.reason-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.expertise-grid .reveal:nth-child(3),
.experience-grid .reveal:nth-child(3),
.reason-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.expertise-grid .reveal:nth-child(4),
.reason-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visualIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 13px); opacity: 0; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr 0.82fr;
    padding-right: 45px;
    padding-left: 45px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .orbit-one {
    width: 470px;
    height: 470px;
  }

  .orbit-two {
    width: 560px;
    height: 560px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-card {
    min-height: 275px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-header nav {
    position: absolute;
    top: 81px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 18px;
    background: var(--navy-950);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-header nav.nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header nav button {
    padding: 14px;
    text-align: left;
  }

  .nav-cta {
    margin: 8px 0 0;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 142px 28px 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 20px;
  }

  .visual-card {
    width: min(100%, 500px);
  }

  .orbit {
    display: none;
  }

  .note-one {
    right: 2%;
  }

  .note-two {
    left: 2%;
  }

  .scroll-cue {
    display: none;
  }

  .overview-layout,
  .experience-intro,
  .why-layout,
  .coverage-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .overview-layout {
    gap: 45px;
  }

  .experience-intro {
    align-items: start;
    gap: 30px;
  }

  .capability-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .capability-intro {
    display: block;
  }

  .capability-intro > span {
    display: block;
    margin-bottom: 25px;
  }

  .capability-intro strong {
    margin-right: 8px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card h3 {
    min-height: auto;
  }

  .why-copy {
    position: static;
  }

  .coverage-layout {
    align-items: start;
  }

  .coverage-levels {
    grid-template-columns: repeat(3, 1fr);
  }

  .coverage-levels span:nth-child(2) {
    transform: none;
  }

  .contact-card {
    max-width: 680px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .site-header nav {
    top: 71px;
  }

  .hero {
    min-height: auto;
    padding: 125px 22px 72px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

  .hero-lead {
    line-height: 1.6;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-proof div {
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .visual-card {
    padding: 14px;
  }

  .visual-kicker {
    font-size: 0.49rem;
  }

  .floating-note {
    display: none;
  }

  .section-shell {
    width: min(100% - 34px, 1240px);
  }

  .section {
    padding: 85px 0;
  }

  .section-heading h2,
  .why-copy h2,
  .coverage-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .purpose-card {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .expertise-card {
    min-height: auto;
  }

  .expertise-card h3 {
    margin-top: 40px;
  }

  .capability-panel {
    margin-right: -17px;
    margin-left: -17px;
  }

  .capability-intro strong {
    display: block;
  }

  .selected-heading {
    margin-top: 75px;
  }

  .approach-item {
    grid-template-columns: 42px 1fr;
    gap: 10px 15px;
  }

  .approach-item p {
    grid-column: 2;
  }

  .approach-item i {
    display: none;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: 170px;
  }

  .reason-card p {
    margin-top: 45px;
  }

  .coverage-layout {
    gap: 45px;
  }

  .coverage-levels {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-logo {
    width: 120px;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-top > button {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

