/* Page-local extensions — only what the design system does not define.
   Brand, surface, ink, line, type, spacing, radii, shadow and motion
   tokens all come from colors_and_type.css. We add deep variants of the
   supporting trio, used only as small accent detail per the system. */
:root {
  --cyan-deep:   #2598bd;
  --purple-deep: #4f4b96;
  --orange-deep: #c97318;
  --bg-soft:     var(--bg-alt);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; position: relative; }
section + section { border-top: 1px solid var(--rule-soft); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -0.045em; font-weight: 700; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.25rem); line-height: 1.05; letter-spacing: -0.035em; font-weight: 600; }
h3 { font-size: 1.45rem; line-height: 1.2; letter-spacing: -0.02em; font-weight: 600; }
h4 { font-size: 1.125rem; line-height: 1.3; letter-spacing: -0.015em; font-weight: 600; }

p { margin: 0; color: var(--ink-soft); }
p + p { margin-top: 0.85em; }

a { color: var(--ink); text-decoration-color: var(--rule); text-underline-offset: 3px; transition: color .2s, text-decoration-color .2s; }
a:hover { color: var(--red); text-decoration-color: currentColor; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.eyebrow.cyan { color: var(--cyan-deep); }
.eyebrow.cyan::before { background: var(--cyan); }
.eyebrow.purple { color: var(--purple); }
.eyebrow.purple::before { background: var(--purple); }
.eyebrow.orange { color: var(--orange-deep); }
.eyebrow.orange::before { background: var(--orange); }

.section-lede {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 24px;
  font-weight: 400;
}

.section-head { margin-bottom: 64px; }

/* ---------- Buttons & forms ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), padding .25s var(--ease);
}
.topbar.is-scrolled {
  border-bottom-color: var(--rule);
  box-shadow: 0 1px 2px rgba(20,20,25,.04), 0 12px 28px -22px rgba(20,20,25,.28);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.wordmark {
  font-family: var(--font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.wordmark:hover { color: var(--red); }
.wordmark svg { width: 26px; height: 26px; flex-shrink: 0; }
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink-soft);
}
.topbar-meta a:hover { color: var(--red); }
.topbar-meta .back-arrow { display: inline-block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 84px 0 100px;
  text-align: center;
  overflow: hidden;
  border-top: none;
}
/* Ambient blobs — the design system's only decorative hero gradient:
   three soft, blurred brand-color washes that drift slowly. No noise. */
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(38% 50% at 18% 22%, rgba(222,33,39,0.10), transparent 70%),
    radial-gradient(34% 46% at 84% 30%, rgba(106,102,178,0.10), transparent 72%),
    radial-gradient(40% 48% at 60% 88%, rgba(95,196,229,0.10), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: translate3d(-1.2%, -1%, 0) scale(1); }
  to   { transform: translate3d(1.6%, 1.4%, 0) scale(1.05); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(222,33,39,0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: heroFade 0.9s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  max-width: 18ch;
  margin: 0 auto;
  animation: heroFade 0.9s ease 0.08s both;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--ink-soft);
  animation: heroFade 0.9s ease 0.16s both;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero stats ---------- */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 56px auto 0;
  max-width: 720px;
  animation: heroFade 0.9s ease 0.24s both;
}
.hero-stat {
  flex: 1;
  padding: 4px;
  text-align: center;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--rule);
}
.hero-stat-num {
  display: block;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: var(--red);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.hero-stat-lbl {
  display: block;
  margin-top: 10px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}

.hero-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroFade 0.9s ease 0.32s both;
}

/* ---------- Section: Why this format ---------- */
.why-format-callout {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 760px;
}
.why-format-callout em {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}
.why-format-body {
  margin-top: 28px;
  font-size: 1.05rem;
  max-width: 640px;
}

.skill-arc {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  max-width: 720px;
  flex-wrap: wrap;
}
.skill-step {
  flex: 1;
  min-width: 160px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--rule-soft);
  border-radius: 12px;
  position: relative;
}
.skill-step-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 8px;
  display: block;
}
.skill-step-name {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.skill-arrow {
  color: var(--red);
  font-weight: 600;
  font-size: 18px;
  flex: 0 0 auto;
}

/* ---------- Section: Audience ---------- */
.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  max-width: 760px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: border-color .2s, color .2s;
}
.chip:hover { border-color: var(--red); color: var(--red); }

/* ---------- Section: Curriculum ---------- */
.curriculum { background: var(--bg-soft); }
.curriculum-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
}
.curriculum-meta strong { color: var(--ink); font-weight: 600; }

.modules { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 16px; }
.module {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  border-left: 4px solid var(--accent, var(--red));
  transition: transform .25s ease, box-shadow .25s ease;
  --accent: var(--red);
}
.module:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.module.cyan { --accent: var(--cyan); }
.module.purple { --accent: var(--purple); }
.module.orange { --accent: var(--orange); }

.module-meta-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.module.cyan .module-meta-num { color: var(--cyan-deep); }
.module.purple .module-meta-num { color: var(--purple); }
.module.orange .module-meta-num { color: var(--orange-deep); }

.module-name {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
}
.module-duration {
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.module-duration .dot-sep { color: var(--rule); margin: 0 8px; }
.module-extra {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-style: italic;
}

.module-body-desc {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 56ch;
}
.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}
.module-list li {
  font-size: 0.97rem;
  color: var(--ink);
  padding: 12px 16px 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.module-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 21px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.module.cyan .module-list li::before { background: var(--cyan); }
.module.purple .module-list li::before { background: var(--purple); }
.module.orange .module-list li::before { background: var(--orange); }

/* ---------- Section: Scenarios ---------- */
.scenarios-subhead {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin: 0 0 20px;
}
.scenarios-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.scenarios-list li {
  font-size: 0.98rem;
  color: var(--ink);
  padding: 18px 22px 18px 40px;
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.scenarios-list li:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
.scenarios-list li:nth-last-child(-n+2) { border-bottom: none; }
.scenarios-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 28px;
  width: 12px;
  height: 1px;
  background: var(--orange);
}
.scenarios-note {
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--ink-mute);
  font-style: italic;
  max-width: 640px;
}

.discipline {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--rule-soft);
}
.discipline-head {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.discipline-lede {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 40px;
}
.discipline-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
.discipline-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: baseline;
}
.discipline-item dt {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.discipline-item dd {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.discipline-close {
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  max-width: 680px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--red);
  line-height: 1.5;
}

/* ---------- Section: Schedule ---------- */
.schedule-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule-soft);
}
.schedule-meta-item {
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.schedule-meta-item strong { color: var(--ink); font-weight: 600; }
.schedule-meta-item .label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-right: 4px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  margin: 32px 0 14px;
}
.live-indicator .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(222,33,39,0.5);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(222,33,39,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(222,33,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(222,33,39,0); }
}

.schedule-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th, .schedule-table td {
  text-align: left;
  padding: 18px 28px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.97rem;
  vertical-align: middle;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table th {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  background: var(--bg-soft);
  padding-top: 14px;
  padding-bottom: 14px;
}
.schedule-table tr { transition: background .15s; }
.schedule-table tbody tr:hover { background: rgba(222,33,39,0.018); }
.schedule-table .sess-num {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-mute);
  width: 60px;
  font-variant-numeric: tabular-nums;
}
.schedule-table .sess-date {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.schedule-table .sess-day { color: var(--ink-soft); }
.schedule-table .sess-seats {
  text-align: right;
  white-space: nowrap;
}
.seat-count {
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.seat-of {
  color: var(--ink-mute);
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 2px;
}

.schedule-cta {
  text-align: center;
  margin-top: 40px;
}
.schedule-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.005em;
}

/* ---------- Section: Logistics ---------- */
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 8px;
}
.logistics-col h3 {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.logistics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.logistics-list li {
  font-size: 1.02rem;
  color: var(--ink);
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.logistics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 12px;
  height: 1px;
  background: var(--red);
}

.delivery-note {
  margin-top: 56px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 880px;
}
.delivery-note strong { color: var(--ink); font-weight: 600; }

/* ---------- Section: Pricing ---------- */
.pricing { padding-top: 96px; padding-bottom: 110px; }
.pricing-head { text-align: center; }
.pricing-head .eyebrow { justify-content: center; }
.pricing-head .section-lede { margin-left: auto; margin-right: auto; text-align: center; }

.price-card {
  margin: 64px auto 0;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 22px 36px;
  border-bottom: 1px solid var(--rule-soft);
}
.price-row .label {
  font-size: 0.98rem;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.price-row .value {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.price-row.strike .value {
  text-decoration: line-through;
  color: var(--ink-mute);
}
.price-row.discount .label,
.price-row.discount .value { color: var(--ink); font-weight: 500; }
.price-row.credit .label,
.price-row.credit .value { color: var(--cyan-deep); }
.price-row.credit .value::before { content: "− "; }

.price-net {
  background: rgba(222,33,39,0.04);
  padding: 30px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.price-net .label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
}
.price-net .value {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-net .value .cur {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: 0.3em;
  margin-right: 4px;
  letter-spacing: 0;
}

.price-fine {
  text-align: center;
  margin: 22px auto 0;
  max-width: 560px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ---------- Section: Enlistment ---------- */
.enlistment { background: var(--bg-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
  position: relative;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.step p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.step p + p { margin-top: 12px; }
.step .highlight {
  display: block;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  word-break: break-all;
}
.step .highlight a { color: var(--red); text-decoration: none; }
.step .highlight a:hover { text-decoration: underline; }

.step-note {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-style: italic;
  line-height: 1.5;
}

/* Email template card */
.email-template {
  margin-top: 18px;
  padding: 20px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.92rem;
  line-height: 1.5;
}
.email-template .et-line {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  align-items: baseline;
}
.email-template .et-label {
  font-weight: 700;
  color: var(--ink);
  flex: 0 0 76px;
  font-size: 0.85rem;
}
.email-template .et-value {
  color: var(--ink-mute);
  font-style: italic;
  flex: 1;
  min-width: 0;
}
.email-template .et-divider {
  height: 1px;
  background: var(--rule);
  margin: 6px 0;
}

/* ---------- Section: Before you enlist ---------- */
.before-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.before-card {
  background: var(--bg-card);
  border: 1px solid var(--rule-soft);
  border-radius: 16px;
  padding: 32px 32px;
}
.before-card .b-eyebrow {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}
.before-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.before-card p { font-size: 1rem; }
.before-card .b-action {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  font-size: 0.97rem;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
}
.before-card .b-action:hover { gap: 10px; }

.learn-more {
  margin-top: 56px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-top: 36px;
  border-top: 1px solid var(--rule-soft);
}
.learn-more a { color: var(--red); font-weight: 500; }

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 40px;
  background: var(--ink);
  color: #d6d6d2;
  border-top: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid #2a2a2e;
}
.footer-left .wordmark { color: #fff; font-size: 22px; }
.footer-left .wordmark:hover { color: var(--red); }
.footer-left .wordmark svg { width: 28px; height: 28px; }
.footer-tag {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #a2a2a0;
  max-width: 40ch;
  line-height: 1.5;
}
.footer-right { text-align: right; }
.footer-right .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--red);
  transition: all .2s;
}
.footer-right .footer-cta:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 0.88rem;
  color: #82828a;
  letter-spacing: 0.01em;
}
.footer-bottom a { color: #d6d6d2; text-decoration-color: #2a2a2e; }
.footer-bottom a:hover { color: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .module { grid-template-columns: 1fr; gap: 24px; padding: 28px 28px; }
  .module-list { grid-template-columns: 1fr; }
  .logistics-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .before-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-right { text-align: left; }
  .schedule-meta { gap: 16px; }
  .hero-stats { max-width: 100%; }
  .discipline-item { grid-template-columns: 160px 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  section { padding: 72px 0; }
  .container, .container-narrow { padding: 0 22px; }
  .hero { padding: 56px 0 80px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 16px; }
  .hero-stats { flex-wrap: wrap; margin-top: 40px; }
  .hero-stat { flex: 0 0 50%; padding: 16px 4px; }
  .hero-stat + .hero-stat::before { display: none; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-top: 1px solid var(--rule); }
  .hero-cta { margin-top: 40px; }
  .skill-arc { gap: 8px; }
  .skill-arrow { width: 100%; text-align: center; transform: rotate(90deg); }
  .schedule-table th, .schedule-table td { padding: 14px 16px; font-size: 0.9rem; }
  .schedule-table .sess-num { width: 36px; }
  .seat-count { font-size: 1rem; }
  .price-row { padding: 18px 24px; }
  .price-net { padding: 24px 24px; }
  .section-head { margin-bottom: 48px; }
  .topbar { padding: 18px 0; }
  .footer-right .footer-cta { font-size: 14px; padding: 11px 20px; }
  .module-name { font-size: 1.5rem; }
  .scenarios-list { grid-template-columns: 1fr; }
  .scenarios-list li:nth-child(odd) { border-right: none; }
  .scenarios-list li:nth-last-child(2) { border-bottom: 1px solid var(--rule-soft); }
  .discipline { margin-top: 64px; padding-top: 44px; }
  .discipline-item { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.schedule { background: var(--bg-soft); }