@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Outfit:wght@500;600;700;800;900&display=swap");

:root {
  --navy: #0a2252;
  --blue: #0b4c97;
  --blue-2: #123c7c;
  --red: #d51826;
  --red-dark: #ad111c;
  --white: #ffffff;
  --ice: #f5f8ff;
  --muted: #647084;
  --ink: #0c1730;
  --line: rgba(10, 34, 82, 0.12);
  --shadow: 0 28px 80px rgba(10, 34, 82, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(213, 24, 38, 0.11), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(11, 76, 151, 0.14), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fd 48%, #ffffff 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.site-shell { overflow: visible; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(10, 34, 82, 0.08);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 255, 0.86));
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(10, 34, 82, 0.14);
}
.brand-mark img { width: 84%; height: 84%; object-fit: contain; }
.brand strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.08rem; letter-spacing: -0.04em; }
.brand small { display: block; color: var(--muted); font-size: 0.69rem; text-transform: uppercase; letter-spacing: 0.14em; }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a {
  padding: 11px 13px;
  border-radius: 999px;
  color: #27344d;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
}
.nav-links a:hover { background: rgba(11, 76, 151, 0.08); color: var(--blue); }
.nav-links .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  box-shadow: 0 10px 24px rgba(213, 24, 38, 0.2);
}
.menu-button { display: none; border: 0; background: var(--navy); color: var(--white); border-radius: 12px; padding: 10px 14px; }

.section, .hero, .stats-band, .cta-section, .footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hero {
  padding-top: 76px;
  padding-bottom: 42px;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: var(--navy);
}
h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--navy);
}
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
.hero-lead, .section-heading p, .registration-copy p, .program-card p, .payment-card p, .pillar p, .level-card p, .coach-note p, .footer p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}
.hero-lead { max-width: 650px; font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  box-shadow: 0 18px 38px rgba(213, 24, 38, 0.23);
}
.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(10, 34, 82, 0.08);
}
.button.light { background: var(--white); color: var(--navy); }
.button.pay { width: 100%; color: var(--white); background: var(--navy); }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue-2);
  font-weight: 800;
  font-size: 0.9rem;
}
.hero-card {
  position: relative;
  border-radius: 42px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,248,253,0.8)),
    radial-gradient(circle at top right, rgba(213, 24, 38, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.7);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(213, 24, 38, 0.35), rgba(11, 76, 151, 0.45));
  z-index: -1;
}
.logo-stage {
  min-height: 420px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(213, 24, 38, 0.16), transparent 11rem),
    linear-gradient(135deg, rgba(10, 34, 82, 0.07), rgba(213, 24, 38, 0.09)),
    #fff;
  position: relative;
  overflow: hidden;
}
.logo-stage::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 28px solid rgba(213, 24, 38, 0.08);
  border-left-color: transparent;
  border-radius: 50%;
  right: -72px;
  bottom: -72px;
}
.logo-stage img {
  width: min(92%, 430px);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 44px rgba(10, 34, 82, 0.22));
}
.score-card {
  margin-top: 18px;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: var(--white);
}
.score-card small { display: block; opacity: 0.74; font-weight: 700; margin-bottom: 4px; }
.score-card strong { display: block; }
.badge {
  min-width: 74px;
  height: 56px;
  padding: 0 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: grid;
  place-items: center;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.stats-band {
  padding-top: 16px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.stats-band article {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(10,34,82,0.07);
}
.stats-band strong { display: block; color: var(--red); font-size: 2rem; letter-spacing: -0.06em; }
.stats-band span { color: var(--muted); font-weight: 800; }

.section { padding-top: 78px; padding-bottom: 78px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.pillars, .level-grid, .program-grid, .payment-grid {
  display: grid;
  gap: 18px;
}
.pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pillar, .program-card, .level-card, .payment-card, .form-preview, .registration-copy, .coach-note {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 56px rgba(10,34,82,0.08);
}
.pillar { padding: 24px; }
.icon, .program-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(213, 24, 38, 0.1);
  margin-bottom: 18px;
  font-size: 1.55rem;
}
.pillar h3, .program-card h3, .level-card h3, .payment-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.coach-note {
  margin-top: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.coach-note h3, .coach-note p, .coach-note .eyebrow { color: var(--white); }
.coach-note p { margin-bottom: 0; opacity: 0.88; }
.coach-note .eyebrow { opacity: 0.78; }

.levels-section {
  position: relative;
}
.level-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.level-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.level-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  right: -70px;
  top: -70px;
  background: rgba(213,24,38,0.11);
}
.level-card.intermediate::after { background: rgba(11,76,151,0.12); }
.level-card.elite { background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%); }
.level-card.elite::after { background: rgba(10,34,82,0.13); }
.level-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 1000;
  letter-spacing: -0.04em;
  font-size: 2rem;
}
.level-card ul {
  padding-left: 19px;
  margin: 20px 0 0;
  color: #2c3a55;
  line-height: 1.85;
  font-weight: 700;
}
.program-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.program-card { padding: 28px; }
.program-card a { color: var(--red); font-weight: 900; }
.apparel-spotlight {
  margin-top: 18px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(10, 34, 82, 0.98), rgba(18, 60, 124, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 56px rgba(10,34,82,0.12);
}
.apparel-spotlight h3,
.apparel-spotlight p,
.apparel-spotlight .eyebrow {
  color: var(--white);
}
.apparel-spotlight p {
  max-width: 700px;
  margin-bottom: 0;
  opacity: 0.86;
}
.apparel-spotlight .button.secondary {
  border-color: rgba(255,255,255,0.18);
}

.apparel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.58fr);
  gap: 22px;
  align-items: start;
}
.apparel-flyer,
.apparel-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 56px rgba(10,34,82,0.08);
}
.apparel-flyer {
  padding: 18px;
}
.apparel-flyer img {
  width: 100%;
  border-radius: 18px;
}
.apparel-panel {
  padding: 28px;
  position: sticky;
  top: 106px;
}
.apparel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(213, 24, 38, 0.1);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.apparel-panel h3 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}
.apparel-panel p,
.apparel-note {
  color: var(--muted);
  line-height: 1.7;
}
.apparel-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}
.apparel-points span {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ice);
  color: var(--blue-2);
  font-weight: 850;
}
.apparel-panel .button {
  width: 100%;
}
.apparel-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.registration-copy, .form-preview { padding: 30px; }
.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.mini-list span {
  border-radius: 14px;
  background: var(--ice);
  color: var(--blue-2);
  font-weight: 850;
  padding: 12px;
}
.form-preview { background: var(--navy); color: var(--white); }
.form-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.form-topbar span { width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.form-topbar span:nth-child(2) { background: #ffffff; opacity: 0.55; }
.form-topbar span:nth-child(3) { background: var(--blue); }
.form-topbar strong { margin-left: auto; opacity: 0.8; font-size: 0.88rem; }
.mock-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  border-radius: 22px;
  padding: 20px;
  color: var(--navy);
}
.mock-form label { display: grid; gap: 8px; font-weight: 900; }
.mock-form input, .mock-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #f8faff;
}
.mock-form button {
  border: 0;
  border-radius: 16px;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 1000;
}
.embed-note { margin: 16px 0 0; color: rgba(255,255,255,0.74); }

.cta-section {
  margin-top: 34px;
  margin-bottom: 72px;
  padding-top: 36px;
  padding-bottom: 36px;
  min-height: 220px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.28), transparent 22rem),
    linear-gradient(135deg, var(--red), var(--blue) 62%, var(--navy));
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-section h2, .cta-section .eyebrow { color: var(--white); margin-bottom: 0; }
.cta-section .eyebrow { opacity: 0.82; margin-bottom: 10px; }
.footer {
  padding-top: 40px;
  padding-bottom: 46px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
  color: var(--white);
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
}
.footer .brand strong, .footer .brand small { color: var(--white); }
.footer .brand-mark {
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  box-shadow: none;
}
.footer p { color: rgba(255,255,255,0.68); margin: 12px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.74); font-weight: 800; }
.footer-links a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

body.menu-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  html { scroll-padding-top: 96px; }
  .section-grid, .split-section { grid-template-columns: 1fr; }
  .apparel-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .level-grid, .program-grid, .payment-grid { grid-template-columns: 1fr; }
  .payment-card.featured { transform: none; }
  .logo-stage { min-height: 340px; }
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coach-note { grid-template-columns: 1fr; }
  .apparel-panel {
    position: static;
  }
  .apparel-spotlight {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .menu-button { display: inline-flex; }
  .site-header {
    top: 0;
    background: rgba(255, 255, 255, 0.92);
  }
  .nav {
    padding: 12px 18px;
    gap: 14px;
  }
  .brand {
    min-width: 0;
    gap: 10px;
    flex: 1 1 auto;
  }
  .brand > span:last-child {
    min-width: 0;
  }
  .brand strong,
  .brand small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
    z-index: 30;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    text-align: center;
    padding: 14px 16px;
  }
  .nav-links .nav-cta {
    margin-top: 6px;
  }
  .hero {
    padding-top: 42px;
    padding-bottom: 20px;
  }
  h1 { font-size: clamp(2.7rem, 16vw, 4rem); }
  .hero-lead,
  .section-heading p,
  .registration-copy p,
  .program-card p,
  .payment-card p,
  .pillar p,
  .level-card p,
  .coach-note p,
  .footer p {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
  }
  .trust-strip span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
  .hero-card {
    padding: 18px;
    border-radius: 28px;
  }
  .logo-stage {
    min-height: 280px;
    border-radius: 24px;
  }
  .logo-stage img {
    width: min(86%, 320px);
  }
  .score-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .pillars, .stats-band, .mini-list { grid-template-columns: 1fr; }
  .stats-band article,
  .pillar,
  .program-card,
  .level-card,
  .payment-card,
  .apparel-panel,
  .apparel-flyer,
  .registration-copy,
  .form-preview,
  .coach-note {
    padding: 22px;
  }
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    margin-bottom: 48px;
  }
  .footer {
    flex-direction: column;
    gap: 24px;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-mark { width: 48px; height: 48px; }
  .brand small { font-size: 0.62rem; letter-spacing: 0.1em; }
}

@media (max-width: 520px) {
  .section, .hero, .stats-band, .cta-section, .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .nav { padding-left: 0; padding-right: 0; }
  h1 {
    font-size: clamp(2.45rem, 15vw, 3.5rem);
    line-height: 0.98;
  }
  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
  .brand strong { font-size: 1rem; }
}
