: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;
}

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

.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: 30;
  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.94);
  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;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 999px;
  margin-bottom: 6px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.16);
}

.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;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-ambient {
  position: absolute;
  inset: 0;
}

.hero-ambient {
  z-index: 0;
  background:
    radial-gradient(circle at 75% 42%, rgba(20, 160, 168, 0.36), transparent 28%),
    radial-gradient(circle at 15% 15%, rgba(214, 163, 74, 0.16), transparent 24%),
    linear-gradient(135deg, #06182a 0%, #08243a 46%, #0b3150 100%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0 clamp(58px, 8vw, 96px);
}

.hero-copy {
  max-width: 980px;
  padding: 16px 0;
  text-align: left;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.72);
}

.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.18rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

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

h1 span,
h1 small {
  display: block;
}

h1 span {
  font-size: clamp(3.35rem, 6.6vw, 6.35rem);
}

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

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.65vw, 1.23rem);
  line-height: 1.58;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  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.48);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-photo-card {
  position: relative;
  width: min(410px, 100%);
  aspect-ratio: 4 / 4.75;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 248, 0.92)),
    #ffffff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  padding: 0;
  filter: saturate(1.03) contrast(1.02);
}

.photo-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.5), transparent 30%),
    linear-gradient(180deg, transparent 56%, rgba(7, 28, 47, 0.16));
  pointer-events: none;
}

.hero-media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  width: min(360px, calc(100% - 34px));
  margin: 0 auto;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(7, 28, 47, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.hero-media-caption span,
.hero-media-caption strong {
  display: block;
}

.hero-media-caption span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media-caption strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

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

.video-section {
  padding: clamp(64px, 8vw, 110px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 163, 74, 0.16), transparent 28%),
    linear-gradient(135deg, #06182a 0%, #08243a 55%, #0b3150 100%);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.video-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 0.98;
}

.video-copy p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.68;
}

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

.video-grid.single-video {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  background: #06182a;
}

.video-card span {
  display: block;
  padding: 14px 16px 16px;
  color: var(--white);
  font-weight: 900;
}

.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;
}

.investment-card {
  background:
    linear-gradient(135deg, rgba(214, 163, 74, 0.16), rgba(20, 160, 168, 0.08)),
    var(--white);
}

.price {
  margin: 8px 0 0;
  color: var(--blue-dark) !important;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.facilitator {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(214, 163, 74, 0.18), transparent 28%),
    linear-gradient(135deg, #06182a 0%, #08243a 56%, #0b3150 100%);
}

.facilitator-box {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.facilitator-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.facilitator-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center bottom;
}

.facilitator-copy h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  line-height: 0.95;
}

.facilitator-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.72;
}

.facilitator-copy .bio-lead {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.45;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bio-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.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));
}

.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);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 72px 0 36px;
  color: var(--white);
  background: linear-gradient(135deg, #06182a, #0b3150);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
}

.legal-content {
  padding: 56px 0 88px;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(16, 24, 40, 0.08);
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: #344054;
  line-height: 1.72;
}

.legal-card ul {
  padding-left: 22px;
}

.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;
  }

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

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

  .hero-copy {
    text-align: center;
  }

  .brand-subtitle,
  h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta,
  .hero-actions {
    justify-content: center;
  }

  .hero-photo-card {
    width: min(390px, 100%);
    margin: 0 auto;
  }

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

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

@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: 50px 0 74px;
  }

  h1 span {
    font-size: clamp(3.1rem, 16vw, 4.9rem);
  }

  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,
  .video-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;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
