:root {
  --navy: #0a192f;
  --navy-deep: #06111f;
  --navy-soft: #10233d;
  --amber: #ffb800;
  --amber-dark: #7c5800;
  --surface: #f9f9ff;
  --surface-blue: #e7eeff;
  --line: #c5c6cd;
  --text: #111c2d;
  --muted: #44474d;
  --white: #ffffff;
  --max: 1440px;
  --pad: clamp(20px, 5.4vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Geist", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

::selection {
  background: var(--amber);
  color: var(--navy);
}

.cursor-dot {
  position: fixed;
  z-index: 1000;
  width: 10px;
  height: 10px;
  border: 2px solid var(--amber);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.site-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 999;
  width: 0;
  height: 4px;
  background: var(--amber);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 18px), 1180px);
  min-height: 58px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 54px);
  border-bottom: 0;
  border-radius: 0 0 18px 18px;
  background: transparent;
  color: var(--white);
  transition: min-height 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 58px;
  background: rgba(6, 17, 31, 0.82);
  backdrop-filter: blur(14px);
}

.brand,
.desktop-nav,
.nav-cta,
.mobile-nav {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--amber);
  letter-spacing: 0.02em;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  width: 26px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  background: rgba(255, 184, 0, 0.1);
  color: var(--amber);
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  color: rgba(255, 255, 255, 0.88);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  padding: 0 24px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-cta {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
}

.nav-cta:hover,
.button-amber {
  border-color: var(--amber);
  background: transparent;
  color: var(--amber);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-ghost {
  background: transparent;
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--navy);
}

.hero .button-amber {
  min-width: 210px;
  min-height: 56px;
  border: 2px solid rgba(255, 232, 77, 0.78);
  border-radius: 999px;
  background: rgba(7, 14, 27, 0.16);
  color: rgba(255, 232, 77, 0.72);
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 400;
  backdrop-filter: blur(5px);
}

.hero .button-amber:hover {
  background: rgba(255, 184, 0, 0.9);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 90;
  display: none;
  gap: 0;
  padding: 0 var(--pad) 24px;
  background: var(--surface);
  border-bottom: 2px solid var(--amber);
  transform: translateY(-120%);
  transition: transform 0.3s ease;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  min-height: min(760px, calc(100svh - 10px));
  margin: 0 auto;
  padding: clamp(110px, 15vw, 188px) clamp(44px, 12vw, 220px) 72px;
  border-radius: 0 0 0 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 184, 0, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(7, 14, 27, 0.82) 0%, rgba(7, 14, 27, 0.74) 42%, rgba(7, 14, 27, 0.4) 100%),
    linear-gradient(0deg, rgba(7, 14, 27, 0.66) 0%, rgba(7, 14, 27, 0.08) 52%);
  content: "";
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.08) brightness(0.76);
}

.hero-fog {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.58;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 78%, rgba(255, 255, 255, 0.1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 42px);
  mix-blend-mode: screen;
}

.hero-copy,
.hero-portrait,
.hero-arrow,
.hero-dots {
  position: relative;
  z-index: 2;
}

.hero-copy {
  align-self: center;
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 540px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 strong {
  display: block;
  color: var(--white);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(22px, 3vw, 46px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1.12;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 28px;
  color: #d6e3ff;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.video-shell,
.wide-video {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.video-shell {
  min-height: min(66vh, 680px);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.video-shell video,
.video-shell img,
.wide-video video,
.wide-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shell video,
.wide-video video {
  z-index: 2;
  filter: grayscale(0.2) contrast(1.05) brightness(0.72);
}

.video-shell img,
.wide-video img {
  z-index: 1;
  filter: grayscale(0.35) brightness(0.7);
}

.video-shell::after,
.wide-video::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.58), rgba(10, 25, 47, 0.05));
  content: "";
  pointer-events: none;
}

.play-button {
  position: relative;
  z-index: 4;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.55);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.play-button:hover {
  background: var(--amber);
  transform: scale(1.04);
}

.play-button:hover span {
  border-left-color: var(--navy);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--amber);
}

.service-panel span,
.timeline-item span,
.leader-title,
.metric p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.slide-index {
  position: absolute;
  left: -58px;
  top: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-50%);
}

.hero-portrait {
  align-self: end;
  justify-self: center;
  width: min(45vw, 500px);
  margin-bottom: -76px;
}

.hero-portrait img {
  width: 100%;
  filter: saturate(0.9) contrast(1.05) drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42));
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-arrow::before {
  position: absolute;
  inset: 14px;
  border-top: 2px solid rgba(255, 255, 255, 0.46);
  border-left: 2px solid rgba(255, 255, 255, 0.46);
  content: "";
  transition: border-color 0.2s ease;
}

.hero-arrow:hover::before {
  border-color: var(--amber);
}

.hero-arrow-left {
  left: clamp(20px, 8vw, 124px);
}

.hero-arrow-left::before {
  transform: rotate(-45deg);
}

.hero-arrow-right {
  right: clamp(20px, 8vw, 124px);
}

.hero-arrow-right::before {
  transform: rotate(135deg);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 28px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--white);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) var(--pad);
}

.about-grid,
.process-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.identity-tile {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 184, 0, 0.32);
  background: var(--navy-soft);
}

.identity-tile::before {
  position: absolute;
  inset: -28px auto auto -28px;
  width: 46%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 184, 0, 0.35);
  content: "";
}

.identity-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy p:not(.eyebrow),
.process-sticky p:not(.eyebrow),
.section-heading p,
.leader-copy blockquote,
.leader-copy p,
.footer p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.metric {
  min-height: 190px;
  padding: 34px var(--pad);
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.counter {
  display: block;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.9;
  font-weight: 900;
}

.metric p {
  margin: 18px 0 0;
  color: var(--muted);
}

.services,
.insights {
  padding: clamp(56px, 7vw, 100px) var(--pad);
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 32px;
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto 56px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: var(--amber-dark);
}

.section-heading h2 {
  color: var(--navy);
  text-transform: uppercase;
}

.section-heading p {
  color: var(--muted);
}

.service-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid var(--line);
  overflow: hidden;
}

.service-panel {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 25, 47, 0.04), rgba(10, 25, 47, 0.92)),
    var(--image, url("assets/worker-portrait.png")) center / cover;
  color: var(--white);
  overflow: hidden;
}

.service-panel:nth-child(1) {
  --image: url("https://unsplash.com/photos/JpzMc-FMUes/download?force=true&w=1400");
}

.service-panel:nth-child(2) {
  --image: url("https://images.pexels.com/photos/35562107/pexels-photo-35562107.png?auto=compress&cs=tinysrgb&w=1400");
}

.service-panel:nth-child(3) {
  --image: url("https://images.pexels.com/photos/29786116/pexels-photo-29786116.jpeg?auto=compress&cs=tinysrgb&w=1400");
}

.service-panel:nth-child(4) {
  --image: url("https://images.pexels.com/photos/6758528/pexels-photo-6758528.jpeg?auto=compress&cs=tinysrgb&w=1400");
}

.service-panel:nth-child(5) {
  --image: url("https://images.pexels.com/photos/7709124/pexels-photo-7709124.jpeg?auto=compress&cs=tinysrgb&w=1400");
}

.service-panel:last-child {
  border-right: 0;
}

.service-panel::before {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.55);
  content: "";
  transition: background 0.35s ease;
}

.service-panel::after {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 5px;
  background: var(--amber);
  content: "";
  transition: width 0.35s ease;
}

.service-panel:hover::before {
  background: rgba(10, 25, 47, 0.28);
}

.service-panel:hover::after {
  width: 100%;
}

.service-panel span,
.service-panel h3,
.service-panel p {
  position: relative;
  z-index: 1;
}

.service-panel span {
  display: inline-block;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 8px;
}

.service-panel h3 {
  margin-top: 300px;
}

.service-panel p {
  max-width: 270px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.process {
  border-top: 4px solid var(--amber);
}

.process-grid {
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 112px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  border: 1px solid rgba(214, 227, 255, 0.22);
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.035);
}

.timeline-item span {
  color: var(--amber);
}

.timeline-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.leadership {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  min-height: 780px;
  background: var(--surface-blue);
}

.leader-media {
  min-height: 620px;
}

.leader-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.04);
}

.leader-copy {
  align-self: center;
  margin: clamp(24px, 6vw, 80px);
  padding: clamp(34px, 5vw, 72px);
  border-left: 8px solid var(--amber);
  background: var(--navy);
  color: var(--white);
}

.leader-copy blockquote {
  margin: 0 0 34px;
  font-style: italic;
}

.leader-name {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
}

.leader-title {
  margin: 0;
  color: var(--amber);
}

.media-band {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 150px) var(--pad);
}

.video-marquee {
  position: absolute;
  top: 18px;
  left: 0;
  display: flex;
  gap: 38px;
  width: max-content;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(40px, 9vw, 132px);
  font-weight: 900;
}

.media-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.wide-video {
  min-height: 520px;
  border: 1px solid rgba(255, 184, 0, 0.32);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.news-card {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, color 0.25s ease;
}

.news-card time,
.news-card span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.news-card h3 {
  margin: 42px 0 48px;
}

.news-card:hover {
  background: var(--navy);
  color: var(--white);
}

.news-card:hover time,
.news-card:hover span {
  color: var(--amber);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: clamp(72px, 9vw, 130px) var(--pad) 54px;
  border-top: 4px solid var(--amber);
}

.footer h2 {
  max-width: 720px;
}

.contact-grid {
  display: grid;
  gap: 18px;
  align-self: end;
  justify-self: end;
  min-width: min(100%, 440px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 800;
}

.contact-grid a,
.contact-grid span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-bottom: 14px;
}

.contact-grid a:hover {
  color: var(--amber);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background: rgba(6, 17, 31, 0.92);
}

.video-modal[hidden] {
  display: none;
}

.video-modal video {
  width: min(100%, 1080px);
  max-height: 78svh;
  border: 2px solid var(--amber);
  background: var(--navy);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 44px;
  border: 1px solid var(--amber);
  padding: 0 18px;
  background: var(--amber);
  color: var(--navy);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: grid;
  }

  .hero,
  .about-grid,
  .process-grid,
  .leadership,
  .media-layout,
  .footer,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-portrait {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: min(58vw, 420px);
    opacity: 0.82;
  }

  .metrics,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-track {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-panel h3 {
    margin-top: 220px;
  }

  .process-sticky {
    position: static;
  }

  .leader-copy {
    margin-top: -80px;
  }

  .contact-grid {
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .cursor-dot {
    display: none;
  }

  .site-header {
    min-height: 68px;
  }

  .mobile-nav {
    top: 68px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: auto;
    padding: 120px 26px 110px;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .slide-index {
    position: static;
    display: block;
    margin-bottom: 18px;
    transform: none;
  }

  .hero-portrait {
    right: -96px;
    width: 330px;
    opacity: 0.52;
  }

  .hero-arrow {
    top: auto;
    bottom: 44px;
  }

  .hero-arrow-left {
    left: 22px;
  }

  .hero-arrow-right {
    right: 22px;
  }

  .stat-card {
    min-width: 170px;
    padding: 20px;
  }

  .metrics,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .service-panel {
    min-height: 390px;
    padding: 26px;
  }

  .service-panel h3 {
    margin-top: 190px;
  }

  .leader-media,
  .wide-video {
    min-height: 420px;
  }

  .leader-copy {
    margin: -60px 20px 64px;
  }
}

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