:root {
  --navy: #101f5a;
  --navy-deep: #07103b;
  --red: #f01525;
  --ink: #151515;
  --charcoal: #303030;
  --stone: #f4f6f8;
  --line: #d9dee5;
  --white: #ffffff;
  --muted: #63666b;
  --shadow: 0 22px 54px rgba(7, 16, 59, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 16, 59, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 59, 0.94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
}

.brand img {
  width: 168px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.main-nav a {
  padding: 10px 0;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.header-action:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 16, 59, 0.92), rgba(7, 16, 59, 0.56) 48%, rgba(21, 21, 21, 0.18)),
    linear-gradient(0deg, rgba(7, 16, 59, 0.68), rgba(7, 16, 59, 0.06) 40%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  min-height: 92svh;
  padding: 132px clamp(20px, 6vw, 86px) 52px;
}

.hero-copy {
  max-width: 780px;
}

.hero-logo {
  width: min(270px, 72vw);
  margin-bottom: 34px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 36px rgba(240, 21, 37, 0.28);
}

.button-primary:hover {
  background: #cf101f;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-dark {
  color: var(--white);
  background: var(--navy-deep);
}

.hero-facts {
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  justify-self: end;
}

.hero-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-facts strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.section-pad {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.section-heading p:last-child,
.program-copy p,
.resources p,
.contact p {
  color: var(--muted);
  font-size: 1.06rem;
}

.method {
  color: var(--white);
  background: var(--navy-deep);
}

.method .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-card,
.time-card,
.video-card,
.level-panel,
.lead-form {
  border-radius: 8px;
}

.method-card {
  min-height: 238px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.method-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
  font-weight: 900;
}

.method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.program {
  background: var(--stone);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--charcoal);
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  box-shadow: inset 0 0 0 5px var(--stone);
}

.level-panel {
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.level-panel h3 {
  margin-bottom: 20px;
}

.level-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.level-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.schedule {
  background: var(--white);
}

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

.time-card {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.time-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.time-card strong {
  display: block;
  color: var(--navy-deep);
  font-size: clamp(1.02rem, 1.35vw, 1.32rem);
  line-height: 1.22;
}

.time-card.is-accent {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.time-card.is-accent span,
.time-card.is-accent strong {
  color: var(--white);
}

.media-section {
  color: var(--white);
  background: #202225;
}

.media-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.video-feature,
.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.video-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 8px;
}

.video-feature video,
.video-card video {
  width: 100%;
  background: #0b0b0d;
}

.video-feature video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-feature div {
  padding: 22px;
}

.video-feature span {
  color: var(--red);
  font-weight: 900;
}

.video-feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.video-card {
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 8px;
}

.video-card video {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.video-card h3 {
  margin: 0;
  padding: 18px;
}

.mobile-video,
.summary-mobile {
  display: none;
}

.summary-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.summary-band h3 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.summary-band p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.summary-video-card {
  justify-self: end;
  width: min(100%, 320px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.summary-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #0b0b0d;
}

.summary-video-card h3 {
  margin: 0;
  padding: 18px;
}

.mobile-summary-copy {
  padding: 18px;
}

.mobile-summary-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-summary-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 9vw, 2.6rem);
}

.mobile-summary-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.resources {
  color: var(--white);
  background: var(--red);
}

.resources .section-kicker,
.resources p {
  color: rgba(255, 255, 255, 0.84);
}

.resources-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.resource-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--red);
  background: var(--white);
  font-weight: 900;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.contact-media {
  position: absolute;
  inset: 0;
  width: 44%;
  background: url("../img/contact-bg.webp") center top / cover no-repeat;
}

.contact-media::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 59, 0.36);
  content: "";
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 520px;
}

.contact-copy {
  grid-column: 2;
}

.contact img {
  width: 270px;
  margin-bottom: 34px;
}

.lead-form {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(16, 31, 90, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.lead-form .button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note a {
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  padding: 26px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(7, 16, 59, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .header-action {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner,
  .intro-grid,
  .program-layout,
  .resources-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 120px;
  }

  .hero-facts {
    justify-self: start;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .contact-media {
    width: 100%;
    height: 320px;
    inset: 0 auto auto 0;
  }

  .contact-layout {
    padding-top: 360px;
    min-height: 0;
  }

  .contact-copy,
  .lead-form {
    grid-column: 1;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 142px;
  }

  .header-action {
    display: none;
  }

  .main-nav {
    top: 70px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 16, 59, 0.94), rgba(7, 16, 59, 0.5)),
      rgba(7, 16, 59, 0.18);
  }

  .hero-inner {
    min-height: 96svh;
    padding: 108px 20px 34px;
  }

  .hero-logo {
    width: 210px;
    margin-bottom: 28px;
  }

  .button,
  .button-primary,
  .button-secondary,
  .button-dark {
    width: 100%;
  }

  .hero-facts,
  .method-grid,
  .schedule-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .desktop-video,
  .summary-band {
    display: none;
  }

  .mobile-video,
  .summary-mobile {
    display: grid;
  }

  .method-card {
    min-height: 0;
  }

  .time-card {
    min-height: 0;
  }

  .video-card video {
    min-height: 0;
    aspect-ratio: 9 / 16;
    object-fit: contain;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .section-shell {
    width: min(100% - 32px, 1160px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }
}
