:root {
  --ink: #101828;
  --muted: #5d6678;
  --line: #dbe2ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #11539c;
  --blue-dark: #25295f;
  --navy: #071c2f;
  --teal: #14a0a8;
  --gold: #d6a34a;
  --soft: #eef6f8;
  --shadow: 0 28px 80px rgba(16, 24, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.topbar {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 10px 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 226, 234, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 176px;
  line-height: 1;
}

.text-brand span {
  color: var(--blue-dark);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.text-brand strong {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(17, 83, 156, 0.24);
}

.header-cta.ghost {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.pay,
.floating-pay {
  color: #171100;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(214, 163, 74, 0.26);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 44%, rgba(20, 160, 168, 0.22), transparent 36%),
    linear-gradient(135deg, #071c2f 0%, #08243a 46%, #0b3150 100%);
}

.hero-overlay {
  position: absolute;
}

.hero-overlay {
  inset: 0;
}

.hero-overlay {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(20, 160, 168, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(7, 28, 47, 0.02), rgba(7, 28, 47, 0.82));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(84px, 12vw, 150px) 0;
}

.hero-video-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(920px, calc(100% - 56px));
  height: min(70vh, 640px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(17, 83, 156, 0.35), rgba(20, 160, 168, 0.18)),
    #071c2f;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -45%);
}

.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 46%, rgba(7, 28, 47, 0.08), rgba(7, 28, 47, 0.28) 52%, rgba(7, 28, 47, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 28, 47, 0.18), rgba(7, 28, 47, 0.56));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #071c2f;
  opacity: 0;
  transform: scale(1.01);
  filter: saturate(1.12) contrast(1.08) brightness(0.98);
  transition: opacity 1000ms ease, transform 4200ms ease;
}

.hero-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding: 28px 18px;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.78);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.program-name {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-subtitle {
  max-width: 620px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  font-weight: 800;
  line-height: 1.45;
}

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

h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span,
h1 small {
  display: block;
}

h1 span {
  font-size: clamp(3.5rem, 7.2vw, 6.7rem);
}

h1 small {
  margin-top: 12px;
  color: var(--gold);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  line-height: 1.58;
}

.hero-meta {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(7, 28, 47, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.word-band {
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.word-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite reverse;
}

.word-track span {
  padding: 24px 46px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.78);
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--white);
}

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

.statement {
  max-width: 980px;
}

.statement h2,
.split h2,
.section-heading h2,
.audience h2,
.cta-box h2 {
  margin-bottom: 0;
  color: var(--blue-dark);
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 0.96;
}

.statement p:last-child {
  max-width: 870px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.72;
}

.impact,
.includes {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.impact-stack,
.feature-grid {
  display: grid;
  gap: 14px;
}

.impact-card,
.feature,
.day-card,
.audience-grid p,
.details-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.impact-card:hover,
.feature:hover,
.day-card:hover,
.audience-grid p:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 160, 168, 0.45);
  box-shadow: 0 22px 55px rgba(16, 24, 40, 0.1);
}

.impact-card {
  padding: 24px;
}

.impact-card span,
.day-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-card h3,
.day-card h3 {
  color: var(--blue-dark);
  font-size: 1.22rem;
}

.impact-card p,
.day-card p,
.feature p,
.audience-grid p {
  color: var(--muted);
  line-height: 1.58;
}

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

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

.day-card {
  min-height: 320px;
  padding: 28px;
}

.feature {
  padding: 24px;
}

.feature strong {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-dark);
  font-size: 1.08rem;
  line-height: 1.24;
}

.feature p {
  margin-bottom: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.audience-grid p {
  min-height: 170px;
  margin: 0;
  padding: 24px;
  font-weight: 800;
}

.cta-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 41, 95, 0.96), rgba(17, 83, 156, 0.94) 58%, rgba(20, 160, 168, 0.88)),
    radial-gradient(circle at 70% 30%, rgba(255, 215, 53, 0.25), transparent 32%);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.cta-box h2 {
  color: var(--white);
}

.cta-copy {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.details-card {
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.details-card p {
  margin-bottom: 14px;
  color: #344054;
  line-height: 1.45;
}

.details-card p:nth-last-child(2) {
  margin-bottom: 22px;
}

.full {
  width: 100%;
  margin-top: 10px;
}

.floating-pay {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  color: var(--muted);
  font-weight: 800;
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-inner,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

  .hero-video-frame {
    width: min(820px, calc(100% - 34px));
    height: min(66vh, 560px);
    transform: translate(-50%, -45%);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    min-width: 132px;
  }

  .text-brand span {
    font-size: 0.84rem;
  }

  .text-brand strong {
    font-size: 0.62rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-cta.ghost {
    display: none;
  }

  .nav {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: calc(100vh - 104px);
  }

  .hero-inner {
    padding: 44px 0 66px;
  }

  .hero-video-frame {
    width: calc(100% - 24px);
    height: 66vh;
    border-radius: 14px;
    transform: translate(-50%, -45%);
  }

  .hero-video {
    object-position: center center;
  }

  h1 span {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  h1 small {
    font-size: clamp(1.18rem, 7vw, 1.7rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .floating-pay {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .word-track span {
    padding: 18px 30px;
    font-size: clamp(2.3rem, 16vw, 4rem);
  }

  .day-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }


  .day-card,
  .audience-grid p {
    min-height: auto;
  }

  .details-card {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
  }
}
