:root {
  --ink: #07111f;
  --ink-soft: #172233;
  --steel: #526173;
  --muted: #697789;
  --line: #d9e0e8;
  --paper: #f5f7fa;
  --white: #ffffff;
  --blue: #075fca;
  --blue-dark: #003b88;
  --amber: #d99125;
  --shadow: 0 22px 60px rgba(7, 17, 31, 0.14);
  --radius: 8px;
  --header-h: 108px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
  backdrop-filter: blur(14px);
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  white-space: nowrap;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__link:hover {
  color: var(--white);
}

.topbar__location {
  color: rgba(255, 255, 255, 0.68);
}

.navbar__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 242px;
}

.brand__mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center 37%;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(7, 17, 31, 0.1);
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-size: 1rem;
  line-height: 1.15;
  color: var(--ink);
}

.brand__text span {
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-links .nav-cta {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(7, 95, 202, 0.22);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 9px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: clamp(560px, 68svh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 58% center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 11, 21, 0.95) 0%, rgba(3, 11, 21, 0.78) 35%, rgba(3, 11, 21, 0.28) 72%, rgba(3, 11, 21, 0.34) 100%),
    linear-gradient(180deg, rgba(3, 11, 21, 0.2), rgba(3, 11, 21, 0.45));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 56px 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.84rem;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button--primary:hover {
  background: #054fa6;
  border-color: #054fa6;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.button--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  background: #121f30;
  border-color: #121f30;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  max-width: 760px;
}

.hero__badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.intro,
.proof-section {
  padding: 70px 0;
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.intro__grid--single {
  grid-template-columns: minmax(0, 940px);
}

.intro__copy h2,
.section-heading h2,
.proof__grid h2,
.cta__inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro__copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.proof-list p,
.footer__brand p,
.site-footer p {
  color: var(--steel);
}

.intro__copy p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.identity-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.identity-panel img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: contain;
  object-position: center;
  background: #f4f5f7;
  border-bottom: 1px solid var(--line);
}

.identity-panel dl {
  margin: 0;
  padding: 24px;
  display: grid;
  gap: 18px;
}

.identity-panel div {
  display: grid;
  gap: 4px;
}

.identity-panel dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.service-band {
  padding: 58px 0 82px;
  background:
    linear-gradient(180deg, #f2f5f8 0%, #ffffff 100%);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 252px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 17, 31, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 95, 202, 0.32);
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--blue);
  background: #e8f1ff;
  font-size: 1.45rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--steel);
}

.video-section {
  position: relative;
  padding: 68px 0 88px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.96), rgba(14, 29, 48, 0.96)),
    var(--ink);
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

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

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

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

.video-card {
  position: relative;
  min-height: 286px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  background: #0b1626;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  text-align: left;
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.video-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.video-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 24, 0.02) 0%, rgba(5, 13, 24, 0.38) 58%, rgba(5, 13, 24, 0.78) 100%);
}

.play-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-size: 1rem;
  padding-left: 3px;
}

.video-card__body {
  position: absolute;
  inset: auto 20px 20px;
  display: grid;
  gap: 6px;
}

.video-card__body strong {
  font-size: 1.22rem;
  line-height: 1.15;
}

.video-card__body small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.proof__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

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

.proof-list article {
  min-height: 210px;
  padding: 24px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: #f7f9fc;
}

.proof-list span {
  color: var(--amber);
  font-weight: 900;
}

.proof-list h3 {
  margin: 10px 0 0;
  font-size: 1.1rem;
}

.proof-list p {
  margin: 10px 0 0;
}

.cta-section {
  padding: 54px 0;
  background: var(--blue);
  color: var(--white);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta__inner .section-kicker {
  color: #ffcf78;
}

.cta__inner h2 {
  color: var(--white);
  max-width: 740px;
}

.site-footer {
  padding: 70px 0 30px;
  background: #07111f;
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 40px;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer__brand img {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.84;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.footer__brand p {
  margin-top: 8px;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a:hover {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 15, 0.78);
  backdrop-filter: blur(10px);
}

.video-modal__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.video-modal__dialog img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0b1626;
}

.video-modal__content {
  padding: 24px;
}

.video-modal__content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.video-modal__content p {
  margin: 10px 0 0;
  color: var(--steel);
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 17, 31, 0.55);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .topbar {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 70px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    min-height: 48px;
    padding: 0 10px;
    border-bottom: 0;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__media img {
    object-position: 67% center;
  }

  .intro__grid,
  .proof__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__text strong {
    font-size: 0.94rem;
  }

  .brand__text span {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero__content {
    padding: 58px 0 52px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 11, 21, 0.94) 0%, rgba(3, 11, 21, 0.78) 58%, rgba(3, 11, 21, 0.48) 100%),
      linear-gradient(180deg, rgba(3, 11, 21, 0.18), rgba(3, 11, 21, 0.44));
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  .hero__actions,
  .hero__badges {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .intro,
  .proof-section,
  .service-band,
  .video-section {
    padding: 52px 0;
  }

  .services-grid,
  .video-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .proof-list article {
    min-height: 0;
  }

  .video-card,
  .video-card img {
    min-height: 242px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .footer__brand {
    align-items: center;
  }
}
