:root {
  --blue: #00358a;
  --blue-2: #192b7b;
  --blue-3: #235096;
  --red: #fc1a2e;
  --white: #f6f8f8;
  --ink: #050a12;
  --purple: #26005f;
  --card: #101b2a;
  --muted: #b9c4d4;
  --line: rgba(246, 248, 248, 0.16);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

.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: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.74), rgba(5, 10, 18, 0));
  transition: background 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(5, 10, 18, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 248, 248, 0.08);
}

.brand {
  width: min(190px, 38vw);
}

.brand img {
  max-height: 48px;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(246, 248, 248, 0.12);
  border-radius: 999px;
  background: rgba(0, 53, 138, 0.22);
}

.site-nav a {
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--red);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(252, 26, 46, 0.9) 0%, rgba(252, 26, 46, 0.68) 32%, rgba(0, 53, 138, 0) 52%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.18), rgba(5, 10, 18, 0.08));
}

.hero-content {
  width: min(520px, 42vw);
  margin-left: clamp(48px, 10vw, 190px);
  padding-top: 80px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(246, 248, 248, 0.74);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 5.2vw, 5.5rem);
  line-height: 0.98;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.28);
}

.hero-content p:not(.hero-kicker) {
  width: min(390px, 100%);
  margin: 24px 0 30px;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.18;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.36);
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 18px 34px;
  border: 2px solid rgba(246, 248, 248, 0.72);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(90deg, #00358a, #00358a);
  box-shadow: 0 0 0 0 rgba(246, 248, 248, 0);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  animation: buttonOutline 2.6s ease-in-out infinite;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(252, 26, 46, 0.18), 0 14px 32px rgba(0, 0, 0, 0.28);
}

.hero-mobile-cta {
  display: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 42px;
  height: 70px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  width: 2px;
  height: 28px;
  background: #fff;
  transform: translateX(-50%);
  animation: arrowDrop 1.2s ease-in-out infinite;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 37px;
  width: 13px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  animation: arrowDrop 1.2s ease-in-out infinite;
}

.watch-callout,
.video-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(252, 26, 46, 0.22), transparent 32%),
    linear-gradient(180deg, #21004d 0%, #100025 100%);
}

.watch-callout {
  padding: clamp(38px, 7vw, 82px) 22px clamp(26px, 5vw, 56px);
  text-align: center;
}

.watch-callout p {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.watch-callout h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 5rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.video-section {
  scroll-margin-top: 88px;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.section-divider {
  width: min(1120px, 100%);
  margin: 0 auto clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(12px, 3vw, 34px);
}

.logo-divider {
  grid-template-columns: minmax(140px, 1fr) minmax(260px, 380px) minmax(140px, 1fr);
}

.section-divider span {
  display: block;
  height: 1px;
  min-width: 90px;
  background: linear-gradient(90deg, transparent, rgba(246, 248, 248, 0.5), rgba(252, 26, 46, 0.58), transparent);
}

.section-divider span:first-child {
  background: linear-gradient(90deg, transparent, rgba(252, 26, 46, 0.58), rgba(246, 248, 248, 0.5), transparent);
}

.text-divider h2 {
  margin: 0;
  padding: 12px 24px;
  border: 1px solid rgba(246, 248, 248, 0.14);
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.4);
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  text-transform: uppercase;
}

.logo-divider img {
  width: 100%;
  max-height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.video-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.video-card {
  min-height: 100%;
  border: 1px solid rgba(35, 80, 150, 0.78);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 27, 42, 0.96), rgba(13, 22, 35, 0.98));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(252, 26, 46, 0.78);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.info-card {
  padding: clamp(26px, 3vw, 34px);
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid rgba(246, 248, 248, 0.16);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #18bfff;
  stroke-width: 2;
  stroke-linejoin: round;
}

.info-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.info-card h3 strong {
  color: #16bfff;
}

.info-card p,
.video-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.video-frame,
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 210px;
  display: block;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.video-frame iframe,
.video-thumb img,
.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 53, 138, 0.92), rgba(5, 10, 18, 0.92)),
    radial-gradient(circle at 72% 24%, rgba(252, 26, 46, 0.56), transparent 28%);
  color: rgba(246, 248, 248, 0.9);
  font-weight: 900;
  text-transform: uppercase;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(252, 26, 46, 0.92);
  box-shadow: 0 0 0 8px rgba(252, 26, 46, 0.2);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-icon::before {
  content: "";
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
}

.video-thumb:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--blue);
}

.video-body {
  padding: 22px;
}

.video-body h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.youtube-link:hover {
  transform: translateY(-2px);
  background: #df1024;
}

.youtube-link.is-disabled {
  pointer-events: none;
  background: rgba(246, 248, 248, 0.12);
  color: rgba(246, 248, 248, 0.68);
}

.site-footer {
  background: #03060d;
  border-top: 1px solid rgba(246, 248, 248, 0.08);
}

.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer-brand img {
  width: min(118px, 34vw);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.1rem;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.footer-column .contact-label {
  margin: 16px 0 4px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 248, 248, 0.08);
  border: 1px solid rgba(246, 248, 248, 0.22);
  color: rgba(246, 248, 248, 0.82);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon svg .icon-cut {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover .social-icon {
  border-color: rgba(246, 248, 248, 0.45);
  color: #fff;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px;
  border-top: 1px solid rgba(246, 248, 248, 0.08);
  color: rgba(246, 248, 248, 0.72);
  font-size: 0.9rem;
  text-align: center;
}

@keyframes buttonOutline {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(246, 248, 248, 0), 0 0 0 rgba(35, 80, 150, 0);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(246, 248, 248, 0.12), 0 0 18px rgba(35, 80, 150, 0.34);
  }
}

@keyframes arrowDrop {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-50%) translateY(-5px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px) rotate(45deg);
  }
}

.scroll-cue::before {
  animation-name: arrowLineDrop;
}

@keyframes arrowLineDrop {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-50%) translateY(-5px);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

@media (max-width: 980px) {
  .hero-content {
    width: min(460px, 48vw);
    margin-left: 42px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 14px 20px;
  }

  .brand {
    width: 132px;
  }

  .brand img {
    max-height: 38px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    width: 42px;
    height: 42px;
    display: grid;
    gap: 5px;
    align-content: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 27px;
    height: 3px;
    border-radius: 999px;
    background: #fff;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    left: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: rgba(0, 53, 138, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 82vh;
    max-height: 86vh;
    align-items: end;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 53, 138, 0.08), rgba(5, 10, 18, 0.04));
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-content {
    display: none;
  }

  .hero-mobile-cta {
    display: inline-flex;
    width: calc(100% - 36px);
    min-height: 78px;
    margin: 0 auto 16px;
    background: var(--red);
    font-size: 1rem;
    line-height: 1.35;
  }

  .scroll-cue {
    display: none;
  }

  .watch-callout {
    padding-top: 28px;
  }

  .watch-callout p {
    font-size: 0.95rem;
  }

  .watch-callout h2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .video-section {
    scroll-margin-top: 72px;
    padding-inline: 18px;
  }

  .section-divider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-divider span {
    display: none;
  }

  .logo-divider {
    grid-template-columns: minmax(42px, 1fr) minmax(190px, 70vw) minmax(42px, 1fr);
    gap: 10px;
  }

  .logo-divider span {
    display: block;
    min-width: 42px;
  }

  .text-divider h2 {
    justify-self: center;
  }

  .logo-divider img {
    width: 100%;
    max-height: 104px;
    margin: 0 auto;
  }

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

  .video-frame,
  .video-thumb {
    min-height: 200px;
  }

  .info-card,
  .video-card {
    border-radius: 7px;
  }

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

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