:root {
  color-scheme: light;
  --ink: #0b1020;
  --muted: #596170;
  --line: #d8dde7;
  --paper: #f3f5f8;
  --white: #ffffff;
  --enu-blue: #008bd2;
  --enu-blue-dark: #005aa3;
  --anse-red: #e30613;
  --anse-red-dark: #a80f19;
  --blue: var(--enu-blue);
  --blue-dark: var(--enu-blue-dark);
  --red: var(--anse-red);
  --gold: #b9904b;
  --green: #0f766e;
  --night: #07111f;
  --night-2: #101827;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.05) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--enu-blue) 0 50%, var(--anse-red) 50% 100%);
  opacity: 0.85;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: clamp(96px, 12vw, 142px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  opacity: 0.68;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #0b1220;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 20%, rgba(0, 139, 210, 0.26), transparent 30%),
    radial-gradient(circle at 14% 78%, rgba(227, 6, 19, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(4, 10, 20, 0.96), rgba(4, 10, 20, 0.66) 42%, rgba(4, 10, 20, 0.24)),
    linear-gradient(0deg, rgba(4, 10, 20, 0.94), transparent 50%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 46px;
}

.hero-logo {
  width: min(245px, 58vw);
  margin: 0 0 34px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.36));
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.3vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--enu-blue), var(--anse-red));
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  margin: 58px 0 0;
}

.hero-facts div {
  width: min(260px, 100%);
  padding: 20px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 3px solid var(--enu-blue);
  background: rgba(7, 17, 31, 0.48);
  backdrop-filter: blur(14px);
}

.hero-facts div:nth-child(2) {
  border-left-color: var(--anse-red);
}

.hero-facts div:nth-child(3) {
  border-left-color: var(--gold);
}

.hero-facts dt {
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 940px;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.intro-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--enu-blue), var(--anse-red));
}

.intro-grid article {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.intro-grid article:last-child {
  border-right: 0;
}

.intro-grid p,
.media-card p,
.story-copy p,
.highlight-copy p,
.recording-copy p {
  color: var(--muted);
}

.outcomes {
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 139, 210, 0.16), transparent 32%),
    linear-gradient(270deg, rgba(227, 6, 19, 0.13), transparent 34%),
    var(--night);
}

.outcomes .kicker,
.outcomes h2 {
  color: var(--white);
}

.outcome-feature {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0b1627;
  box-shadow: inset 0 4px 0 var(--enu-blue), inset 0 -4px 0 var(--anse-red);
}

.story-copy {
  padding: clamp(30px, 5vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0b1627;
}

.outcomes .story-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.outcome-hero-photo {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
}

.outcome-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.outcome-strip figure {
  position: relative;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  background: #152033;
}

.outcome-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(7, 17, 31, 0.74);
  font-weight: 900;
}

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

.check-list li {
  padding-left: 22px;
  position: relative;
  color: var(--white);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--enu-blue), var(--anse-red));
}

.recording {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 42px;
  align-items: center;
}

.recording-copy {
  padding: 34px 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.18);
  display: block;
  background: #111827;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
  text-decoration: none;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-frame:hover img {
  transform: scale(1.03);
  opacity: 0.58;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.media-grid {
  display: grid;
  border-top: 1px solid var(--line);
  max-width: 980px;
}

.media-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 150px 1.05fr 1.35fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-card:hover {
  transform: translateX(6px);
  box-shadow: none;
}

.media-card span {
  width: fit-content;
  padding: 6px 9px;
  color: var(--white);
  background: var(--enu-blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.media-card.accent span {
  background: var(--anse-red);
}

.media-card.video span {
  background: linear-gradient(90deg, var(--enu-blue-dark), var(--anse-red));
}

.media-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

.media-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.highlights {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: center;
}

.highlight-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.highlight-photos img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.highlight-photos img:first-child {
  grid-row: span 2;
  height: 512px;
}

.gallery {
  columns: 3 260px;
  column-gap: 14px;
}

.gallery button {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
}

.gallery img {
  width: 100%;
  border-radius: 3px;
  background: #dce1ea;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--night);
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  width: 168px;
  margin-bottom: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(8, 13, 23, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .brand strong {
    white-space: normal;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 13, 28, 0.9), rgba(6, 13, 28, 0.5)),
      linear-gradient(90deg, rgba(6, 13, 28, 0.86), rgba(6, 13, 28, 0.22));
  }

  .intro-grid,
  .media-grid,
  .outcome-feature,
  .recording,
  .highlights {
    grid-template-columns: 1fr;
  }

  .intro-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid article:last-child {
    border-bottom: 0;
  }

  .outcome-hero-photo {
    min-height: 330px;
  }

  .story-copy {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .media-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .highlight-photos img,
  .highlight-photos img:first-child {
    height: 260px;
  }

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

@media (max-width: 560px) {
  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 40px;
  }

  .hero-facts div {
    width: 100%;
  }

  .highlight-photos {
    grid-template-columns: 1fr;
  }
}
