:root {
  --ink: #061829;
  --ink-soft: #0b2b49;
  --ink-blue: #0d3f6d;
  --blue: #0786df;
  --blue-bright: #15b9ff;
  --cyan: #5ce1e6;
  --yellow: #ffc52f;
  --paper: #f4f8fb;
  --white: #ffffff;
  --muted: #60758a;
  --line: rgba(6, 24, 41, 0.14);
  --page: min(1240px, calc(100vw - 64px));
  --radius: 28px;
  --shadow: 0 32px 80px rgba(3, 17, 29, 0.2);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, calc(100vw - 44px));
  min-height: 76px;
  margin: 18px auto 0;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(6, 24, 41, 0.24);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, margin 220ms ease, width 220ms ease;
}

.site-header.scrolled {
  width: min(1320px, calc(100vw - 32px));
  margin-top: 10px;
  color: var(--ink);
  border-color: rgba(6, 24, 41, 0.1);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 40px rgba(3, 17, 29, 0.1);
}

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

.brand-logo {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.brand-logo img {
  width: 58px;
  max-width: none;
  transform: translate(-7px, -2px);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.brand-copy small {
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  opacity: 1;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--ink);
  border-radius: 12px;
  background: var(--cyan);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 29, 0.96) 0%, rgba(3, 17, 29, 0.74) 43%, rgba(3, 17, 29, 0.18) 76%),
    linear-gradient(0deg, rgba(3, 17, 29, 0.75) 0%, transparent 44%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 11.111vw 11.111vw;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding-top: clamp(180px, 24vh, 260px);
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(3.65rem, 7.7vw, 7.7rem);
  font-weight: 760;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.hero h1 em,
.closing h2 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.91rem;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  background: var(--cyan);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

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

.play-dot {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 0.58rem;
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 42px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.66);
  border-right: 2px solid var(--cyan);
  background: rgba(3, 17, 29, 0.32);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 18px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 99px;
}

.scroll-cue span::after {
  display: block;
  width: 3px;
  height: 7px;
  margin: 6px auto;
  content: "";
  border-radius: 99px;
  background: var(--cyan);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(11px); opacity: 1; }
}

.section-pad {
  padding: clamp(90px, 10vw, 150px) max(32px, calc((100vw - 1240px) / 2));
}

.section-index {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index.light {
  color: rgba(255, 255, 255, 0.46);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 5fr 3fr;
  gap: clamp(30px, 5vw, 82px);
  align-items: start;
  background: var(--paper);
}

.intro-copy .kicker,
.journey-title .kicker,
.project-panel .kicker,
.operations-copy .kicker {
  color: var(--blue);
}

.intro h2,
.journey h2,
.project h2,
.operations h2,
.film h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.2vw, 5.1rem);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.intro h2 span {
  color: var(--blue);
}

.intro-aside {
  padding-top: 42px;
}

.intro-aside > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.mini-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-rule i {
  width: 48px;
  height: 2px;
  background: var(--yellow);
}

.ecosystem {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(21, 185, 255, 0.17), transparent 24%),
    linear-gradient(145deg, #061829, #08223a 65%, #0a2d4d);
}

.section-heading,
.film-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2 {
  max-width: 830px;
  margin: 18px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p,
.film-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(92, 225, 230, 0.38);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.025), 0 0 0 64px rgba(255, 255, 255, 0.014);
}

.service-featured {
  grid-row: span 2;
  grid-column: span 2;
  min-height: 612px;
  background:
    radial-gradient(circle at 66% 42%, rgba(92, 225, 230, 0.2), transparent 18%),
    linear-gradient(145deg, rgba(14, 72, 115, 0.85), rgba(5, 29, 49, 0.78));
}

.service-featured::before {
  position: absolute;
  right: 10%;
  bottom: 9%;
  width: min(310px, 45%);
  aspect-ratio: 1;
  content: "P";
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 2px solid rgba(92, 225, 230, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(92, 225, 230, 0.055), 0 0 0 72px rgba(92, 225, 230, 0.028);
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 1;
}

.service-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 62px;
  color: var(--cyan);
  border: 1px solid rgba(92, 225, 230, 0.28);
  border-radius: 15px;
  background: rgba(92, 225, 230, 0.07);
  font-size: 1.35rem;
  font-weight: 820;
}

.service-featured .service-symbol {
  margin-bottom: 138px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
}

.service-tag {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  left: 28px;
  padding-top: 13px;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ecosystem .footnote {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.75rem;
}

.journey {
  background: var(--white);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
  margin-top: 45px;
}

.journey-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.journey-title > p:last-child {
  max-width: 480px;
  margin: 30px 0 0;
  color: var(--muted);
}

.journey-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.journey-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-steps > li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(7, 134, 223, 0.25);
  border-radius: 50%;
  background: rgba(7, 134, 223, 0.05);
  font-size: 0.72rem;
  font-weight: 850;
}

.journey-steps h3 {
  margin: 0 0 5px;
  font-size: 1.35rem;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(390px, 0.85fr);
  min-height: 760px;
  background: var(--ink);
}

.project-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.project-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset -80px 0 120px rgba(6, 24, 41, 0.28);
  pointer-events: none;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 30px;
  display: grid;
  gap: 3px;
  padding: 16px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(6, 24, 41, 0.78);
  backdrop-filter: blur(10px);
}

.project-badge span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 6vw, 90px);
  color: var(--white);
}

.project-panel .kicker {
  margin-top: 44px;
  color: var(--cyan);
}

.project-panel h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.2rem);
}

.project-panel > p:not(.kicker):not(.project-note) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.project-stats {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
}

.project-stats > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.project-stats > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.project-stats dt {
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 790;
}

.project-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  text-align: right;
}

.text-link {
  align-self: flex-start;
  margin-top: 30px;
  padding: 0 0 8px;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--cyan);
  background: transparent;
  font-weight: 740;
  cursor: pointer;
}

.text-link span {
  margin-left: 8px;
  color: var(--cyan);
}

.project-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
  line-height: 1.55;
}

.operations {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(540px, 1.25fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
  color: var(--white);
  background: #072440;
}

.operations-copy h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.operations-copy .kicker {
  margin-top: 44px;
  color: var(--cyan);
}

.operations-copy > p:not(.kicker) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.check-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.dashboard {
  min-height: 560px;
  padding: 22px;
  border: 1px solid rgba(92, 225, 230, 0.18);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(5, 23, 40, 0.88), rgba(10, 53, 88, 0.72));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), inset 0 0 80px rgba(21, 185, 255, 0.06);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 3px 3px 18px;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dashboard-top i {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-style: normal;
}

.dashboard-top i::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 14px;
  min-height: 470px;
  padding-top: 14px;
}

.dash-map {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  border-radius: 17px;
  background:
    linear-gradient(rgba(92, 225, 230, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 225, 230, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 54% 43%, rgba(21, 185, 255, 0.18), transparent 32%),
    #061829;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.map-rings {
  position: absolute;
  top: 46%;
  left: 54%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
}

.map-rings::after {
  position: absolute;
  inset: 7px;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 22px var(--yellow);
}

.map-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(92, 225, 230, 0.5);
  border-radius: 50%;
  animation: map-pulse 2.6s ease-out infinite;
}

.map-rings span:nth-child(2) { animation-delay: 0.8s; }
.map-rings span:nth-child(3) { animation-delay: 1.6s; }

@keyframes map-pulse {
  0% { opacity: 0.8; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(8); }
}

.dash-map b {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
}

.dash-map small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.44);
}

.dash-side {
  display: grid;
  grid-template-rows: 1fr 1fr auto;
  gap: 12px;
}

.dash-metric {
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.dash-metric small {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dash-metric strong {
  font-size: 0.93rem;
  line-height: 1.4;
}

.line {
  height: 58px;
  margin-top: 18px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.line-a {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 60' preserveAspectRatio='none'%3E%3Cpath d='M0 48 C30 43 35 20 65 30 S105 55 130 22 S175 11 220 17' fill='none' stroke='%235ce1e6' stroke-width='2'/%3E%3Cpath d='M0 48 C30 43 35 20 65 30 S105 55 130 22 S175 11 220 17 L220 60 L0 60 Z' fill='%235ce1e6' fill-opacity='.08'/%3E%3C/svg%3E");
}

.line-b {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 60' preserveAspectRatio='none'%3E%3Cpath d='M0 42 C28 10 55 52 83 28 S130 42 155 18 S190 35 220 9' fill='none' stroke='%23ffc52f' stroke-width='2'/%3E%3Cpath d='M0 42 C28 10 55 52 83 28 S130 42 155 18 S190 35 220 9 L220 60 L0 60 Z' fill='%23ffc52f' fill-opacity='.08'/%3E%3C/svg%3E");
}

.dash-metric.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
}

.dash-metric.compact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-metric.compact i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.film {
  background: var(--paper);
}

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

.film-heading h2 {
  margin-top: 20px;
}

.film-card {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.film-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 17, 29, 0.8), rgba(3, 17, 29, 0.04) 62%);
}

.film-card video {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.film-card:hover video {
  transform: scale(1.025);
}

.film-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
}

.film-card:hover .film-play {
  background: var(--yellow);
  transform: translate(-50%, -50%) scale(1.06);
}

.film-meta {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.film-meta b {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.film-meta small {
  color: rgba(255, 255, 255, 0.55);
}

.closing {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.closing > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-shade {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 29, 0.72);
}

.closing-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  text-align: center;
}

.closing-content .eyebrow {
  justify-content: center;
}

.closing h2 {
  max-width: 1050px;
  margin: 0 auto;
}

.closing .button {
  margin-top: 40px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 34px max(32px, calc((100vw - 1240px) / 2));
  color: rgba(255, 255, 255, 0.6);
  background: #04121f;
  font-size: 0.76rem;
}

.footer-logo-link {
  display: block;
  width: 116px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer p {
  margin: 0;
}

.footer > p:nth-child(2) {
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.copyright {
  text-align: right;
}

.media-dialog {
  width: min(1100px, calc(100vw - 32px));
  max-width: none;
  padding: 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: #051726;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
}

.media-dialog::backdrop {
  background: rgba(1, 9, 16, 0.86);
  backdrop-filter: blur(8px);
}

.media-dialog video,
.media-dialog img {
  width: 100%;
  max-height: 78vh;
  border-radius: 15px;
  object-fit: contain;
  background: #000;
}

.media-dialog p {
  margin: 10px 54px 6px 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(3, 17, 29, 0.72);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.image-dialog {
  width: min(1380px, calc(100vw - 32px));
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 48px, 960px);
  }

  .site-nav {
    gap: 20px;
  }

  .intro {
    grid-template-columns: 1fr 5fr;
  }

  .intro-aside {
    grid-column: 2;
    max-width: 650px;
    padding-top: 0;
  }

  .section-heading,
  .film-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p,
  .film-heading > p {
    max-width: 620px;
  }

  .service-featured {
    grid-column: span 2;
  }

  .journey-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
  }

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

  .project-panel {
    padding: 72px max(32px, calc((100vw - 960px) / 2));
  }

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

  .operations-copy {
    max-width: 700px;
  }

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

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 32px);
    --radius: 20px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header,
  .site-header.scrolled {
    width: calc(100vw - 20px);
    min-height: 64px;
    margin-top: 10px;
    padding: 8px 9px 8px 11px;
    border-radius: 15px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-logo img {
    width: 54px;
    transform: translate(-7px, -2px);
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .menu-button {
    display: block;
  }

  .site-header.scrolled .menu-button {
    background: rgba(6, 24, 41, 0.06);
  }

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

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    color: var(--ink);
    border: 1px solid rgba(6, 24, 41, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 50px rgba(3, 17, 29, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 13px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    min-height: 780px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(3, 17, 29, 0.94) 0%, rgba(3, 17, 29, 0.58) 70%, rgba(3, 17, 29, 0.4) 100%);
  }

  .hero-content {
    padding-top: 170px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-rail,
  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 82px 16px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .intro-aside {
    grid-column: auto;
  }

  .intro h2,
  .journey h2,
  .project h2,
  .operations h2,
  .film h2,
  .closing h2,
  .section-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

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

  .service-featured {
    grid-row: auto;
    grid-column: auto;
    min-height: 470px;
  }

  .service-featured::before {
    right: 2%;
    bottom: 8%;
    width: 220px;
  }

  .service-featured .service-symbol {
    margin-bottom: 108px;
  }

  .journey-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .journey-title {
    position: static;
  }

  .journey-steps li {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .journey-steps > li > span {
    width: 44px;
    height: 44px;
  }

  .project {
    min-height: auto;
  }

  .project-visual {
    min-height: 460px;
  }

  .project-visual img {
    object-position: 55% center;
  }

  .project-badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .project-panel {
    padding: 72px 16px;
  }

  .project-stats > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .project-stats dd {
    text-align: left;
  }

  .operations {
    gap: 50px;
  }

  .dashboard {
    min-height: 610px;
    padding: 12px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    min-height: 530px;
  }

  .dash-map {
    min-height: 300px;
  }

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

  .dash-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .dash-metric.compact {
    grid-column: 1 / -1;
  }

  .film-heading {
    margin-bottom: 38px;
  }

  .film-card,
  .film-card video {
    min-height: 470px;
  }

  .film-play {
    width: 76px;
    height: 76px;
  }

  .film-meta {
    right: 20px;
    bottom: 20px;
    left: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .closing {
    min-height: 650px;
    padding: 90px 0;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 36px 16px;
    text-align: left;
  }

  .footer > p:nth-child(2) {
    text-align: left;
  }

  .media-dialog {
    width: calc(100vw - 16px);
    padding: 6px;
    border-radius: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video,
  .closing > video {
    display: none;
  }

  .hero {
    background: linear-gradient(130deg, #061829, #0b4875);
  }
}
