:root {
  color-scheme: dark;
  --black: #030303;
  --graphite: #111317;
  --ice: #f4f8fb;
  --orange: #ff6a00;
  --yellow: #ffd23f;
  --red: #e2322e;
  --cyan: #00c8ff;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--ice);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ice);
  color: var(--black);
  padding: 10px 14px;
}

.skip-link:focus { top: 16px; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(16px, 4vw, 54px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(3,3,3,.86), rgba(3,3,3,.28));
  backdrop-filter: blur(18px);
}

.brand,
.topbar nav,
.footer div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img,
.footer img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.topbar nav {
  gap: 22px;
  color: rgba(244,248,251,.76);
  font-size: 13px;
  text-transform: uppercase;
}

.top-cta {
  justify-self: end;
  border: 1px solid rgba(255,106,0,.48);
  color: var(--orange);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 70px) 64px;
  isolation: isolate;
  overflow: hidden;
}

.hero::after,
.finale::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3,3,3,.94) 0%, rgba(3,3,3,.58) 46%, rgba(3,3,3,.16) 76%),
    linear-gradient(0deg, #030303 0%, rgba(3,3,3,0) 48%);
}

.hero-reel,
.shot,
.finale-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-reel video,
.finale-bg video,
.media-panel video,
.summit-row video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-reel video,
.finale-bg video,
.media-panel video,
.summit-row video {
  filter: contrast(1.16) saturate(.88);
}

.shot {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: reel 24s infinite;
}

.shot.is-sunrise {
  background-image: url("https://images.pexels.com/photos/8853536/pexels-photo-8853536.jpeg?cs=srgb&fm=jpg");
}

.shot.is-rapel {
  background-image: url("https://images.unsplash.com/photo-1763478545926-e988846846f7?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=72&w=2400");
  animation-delay: 6s;
}

.shot.is-rescue {
  background-image: url("https://images.pexels.com/photos/16207693/pexels-photo-16207693.jpeg?cs=srgb&fm=jpg");
  animation-delay: 12s;
}

.shot.is-height {
  background-image: url("https://images.unsplash.com/photo-1754620906703-496ec2451744?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=72&w=2400");
  animation-delay: 18s;
}

@keyframes reel {
  0%, 100% { opacity: 0; transform: scale(1.06); }
  7%, 24% { opacity: 1; transform: scale(1.15) translate3d(-1.6%, -1.2%, 0); }
  30% { opacity: 0; }
}

.grain,
.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: -1;
  opacity: .14;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.75) 0 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.scanlines {
  z-index: 1;
  opacity: .28;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.032), rgba(255,255,255,.032) 1px, transparent 1px, transparent 7px);
}

.hero-content {
  width: min(980px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 9vw, 116px);
  line-height: .85;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 80px rgba(0,0,0,.86);
}

.hero-lead {
  max-width: 760px;
  color: rgba(244,248,251,.92);
  font-size: clamp(22px, 3.4vw, 44px);
  line-height: 1.04;
  font-weight: 780;
}

.impact-line {
  display: grid;
  gap: 6px;
  max-width: 720px;
  margin: 26px 0 30px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}

.impact-line span {
  color: rgba(244,248,251,.72);
  font-size: clamp(17px, 2vw, 24px);
}

.impact-line strong {
  color: var(--ice);
  font-size: clamp(21px, 2.8vw, 34px);
  line-height: 1.05;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #130800;
  box-shadow: 0 18px 70px rgba(255,106,0,.34);
}

.btn.secondary {
  background: rgba(255,255,255,.08);
  color: var(--ice);
}

.mission-panel {
  position: absolute;
  right: clamp(16px, 5vw, 70px);
  bottom: 64px;
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(3,3,3,.42);
  backdrop-filter: blur(18px);
}

.mission-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mission-panel strong {
  font-size: 22px;
  line-height: 1.08;
}

.signal-bars {
  display: flex;
  gap: 5px;
  align-items: end;
  height: 28px;
  margin-top: 18px;
}

.signal-bars i {
  width: 22px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(0,200,255,.7);
}

.signal-bars i:nth-child(1) { height: 35%; }
.signal-bars i:nth-child(2) { height: 55%; }
.signal-bars i:nth-child(3) { height: 78%; }
.signal-bars i:nth-child(4) { height: 100%; }

section:not(.hero):not(.finale) {
  padding: 92px clamp(18px, 5vw, 70px);
}

.section-heading,
.services-section,
.companies-section,
.results-section,
.cta-band {
  max-width: var(--max);
  margin-inline: auto;
}

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

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2,
.cta-band h2,
.finale h2 {
  max-width: 930px;
  font-size: clamp(34px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.section-heading p,
.section-copy p {
  max-width: 860px;
  color: rgba(244,248,251,.72);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

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

.service-grid article,
.results-grid article {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.025)),
    rgba(12, 14, 18, .72);
}

.service-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--orange);
  font-weight: 950;
}

.service-grid strong,
.results-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.08;
}

.split-section {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.media-panel {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  box-shadow: 0 40px 120px rgba(0,0,0,.58);
}

.media-panel img,
.media-panel video {
  width: 100%;
  height: 680px;
  object-fit: cover;
  filter: contrast(1.16) saturate(.86);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span,
.company-track span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.companies-section {
  overflow: hidden;
}

.company-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(190px, 1fr));
  gap: 12px;
  width: max(1540px, 100%);
  animation: rowDrift 24s linear infinite alternate;
}

@keyframes rowDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-180px); }
}

.results-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.results-grid article {
  min-height: 190px;
}

.results-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(244,248,251,.66);
  line-height: 1.5;
}

.cta-band {
  min-height: 460px;
  display: grid;
  align-content: center;
  border-block: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 10% 0, rgba(255,106,0,.16), transparent 34%),
    radial-gradient(circle at 82% 38%, rgba(0,200,255,.11), transparent 30%);
}

.cta-band .hero-actions {
  margin-top: 18px;
}

.finale {
  min-height: 92svh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 18px;
  overflow: hidden;
}

.finale-bg {
  background-image: url("https://images.pexels.com/photos/8853536/pexels-photo-8853536.jpeg?cs=srgb&fm=jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(1.2);
}

.finale-content {
  position: relative;
  z-index: 1;
}

.finale p {
  color: var(--yellow);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 950;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(244,248,251,.72);
}

.footer strong { color: var(--ice); }
.footer a { color: var(--cyan); font-weight: 850; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .mission-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .split-section,
  .results-section {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 430px;
  }

  .media-panel img,
  .media-panel video {
    height: 500px;
  }

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

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

@media (max-width: 560px) {
  h1 {
    font-size: clamp(42px, 16vw, 68px);
  }

  .btn,
  .feature-list span,
  .company-track span {
    width: 100%;
  }

  section:not(.hero):not(.finale) {
    padding-block: 70px;
  }

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

  .section-heading h2,
  .section-copy h2,
  .cta-band h2,
  .finale h2 {
    font-size: 38px;
  }
}

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