/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--s5);
}

.nav__brand {
  display: flex; align-items: center; gap: var(--s3);
}

.nav__logo {
  display: inline-flex; align-items: center; gap: var(--s3);
  color: var(--text); font-weight: 700; font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav__logo:hover { color: var(--text); }

.logo-mark {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border-radius: var(--r-sm);
  flex-shrink: 0;
}

.nav__sep {
  color: var(--border-strong); font-size: 1.2rem; font-weight: 300;
  margin: 0 var(--s1);
}

.nav__parent {
  font-size: 0.82rem; color: var(--text-dim);
  font-family: var(--font-mono);
}
.nav__parent:hover { color: var(--text-muted); }

.nav__right {
  display: flex; align-items: center; gap: var(--s4);
}

.nav__seats {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--text-dim); white-space: nowrap;
}
.nav__seats strong { color: var(--accent); }

@media (max-width: 640px) { .nav__seats { display: none; } }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 14px var(--s6); border-radius: var(--r-sm);
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all var(--dur) var(--ease); white-space: nowrap;
}

.btn--primary {
  background: var(--text); color: white; border-color: var(--text);
}
.btn--primary:hover {
  background: #1a1d28; color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(11,13,20,0.35);
}

.btn--accent {
  background: var(--accent); color: white; border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark); color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}

.btn--ghost {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--bg-elev); color: var(--text); border-color: var(--text);
}

.btn--wa {
  background: #25D366; color: white; border-color: #25D366;
}
.btn--wa:hover {
  background: #1ebe5d; color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.4);
}

.btn--lg { padding: 18px var(--s7); font-size: 1rem; }
.btn--sm { padding: 10px var(--s5); font-size: 0.875rem; }
.btn .icon { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS + SECTION DOTS
═══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent); z-index: 100;
  transition: width 80ms linear; pointer-events: none;
}

.section-nav {
  position: fixed; right: var(--s6); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: var(--s3);
  z-index: 40;
}
@media (max-width: 1200px) { .section-nav { display: none; } }

.section-nav__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-strong);
  transition: all 350ms var(--ease); position: relative;
}
.section-nav__dot::after {
  content: attr(title);
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-dim); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 200ms;
}
.section-nav__dot:hover::after { opacity: 1; }
.section-nav__dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ═══════════════════════════════════════════════════════════
   HERO CHIPS
═══════════════════════════════════════════════════════════ */
.chip {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
  padding: 6px var(--s4);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-pill); color: var(--text-muted);
}
.chip--accent {
  background: var(--accent-soft); border-color: var(--accent-glow);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════
   COUNTDOWN
═══════════════════════════════════════════════════════════ */
.countdown {
  display: inline-flex;
  align-items: center; gap: var(--s4);
  margin-top: var(--s7);
  padding: var(--s5) var(--s7);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.countdown__label-top {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--s3);
}

.countdown__units { display: flex; align-items: baseline; gap: var(--s3); }

.countdown__unit { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.countdown__num {
  font-family: var(--font-mono); font-size: 1.85rem;
  font-weight: 600; color: var(--text); letter-spacing: -0.03em;
  line-height: 1; min-width: 2.2ch; text-align: center;
}
.countdown__unit-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim);
}
.countdown__sep {
  font-family: var(--font-mono); font-size: 1.4rem;
  color: var(--border-strong); line-height: 1; margin-bottom: 4px;
}

@media (max-width: 480px) {
  .countdown { padding: var(--s4) var(--s5); }
  .countdown__num { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════
   PROJECT CARDS
═══════════════════════════════════════════════════════════ */
.project-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.project-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px -8px rgba(11,13,20,0.12);
  transform: translateY(-3px);
}

.project-card__bar {
  height: 3px; width: 100%;
}

.project-card__head {
  padding: var(--s6) var(--s6) 0;
  display: flex; align-items: center; gap: var(--s4);
}

.project-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); flex-shrink: 0;
}
.project-card__icon svg { width: 20px; height: 20px; }

.project-card__meta { flex-grow: 1; }
.project-card__name { font-size: 1.05rem; margin-bottom: 2px; }
.project-card__cat {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim);
}

.project-card__body { padding: var(--s5) var(--s6) var(--s6); flex-grow: 1; }

.project-card__desc {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: var(--s5);
}

.project-card__builds {
  list-style: none; padding: 0; margin: 0 0 var(--s5);
  font-size: 0.875rem; color: var(--text-muted);
}
.project-card__builds li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.5;
}
.project-card__builds li:last-child { border-bottom: 0; }
.project-card__builds li::before {
  content: '';
  display: inline-block; width: 13px; height: 13px;
  margin-top: 3px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}

.project-card__weeks {
  display: flex; flex-wrap: wrap; gap: var(--s2);
}
.project-card__week-tag {
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 10px; border-radius: var(--r-pill);
  border: 1px solid var(--border); color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS STEPS
═══════════════════════════════════════════════════════════ */
.step { position: relative; padding-top: var(--s6); }

.step::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent); border-radius: 1px;
}

.step__num {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s4);
}
.step__title { font-size: 1.1rem; margin-bottom: var(--s3); }
.step__desc  { font-size: 0.9rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   CURRICULUM ACCORDION
═══════════════════════════════════════════════════════════ */
.week {
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}

.week__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--s5); align-items: center;
  padding: var(--s6) var(--s4);
  background: none; border: none;
  text-align: left; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.week__trigger:hover { background: var(--bg-elev); }

.week.is-active {
  border-left: 3px solid var(--accent);
  margin-left: -3px; padding-left: 3px;
}
.week.is-active .week__trigger { background: transparent; }

.week__num {
  font-family: var(--font-mono); font-size: 0.72rem;
  font-weight: 600; color: var(--text-dim); letter-spacing: 0.08em;
}
.week.is-active .week__num { color: var(--accent); }

.week__title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.week__sub   { font-size: 0.85rem; color: var(--text-dim); }
.week.is-active .week__title { color: var(--accent-dark); }

.week__chevron {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center; color: var(--text-dim);
}
.week__chevron svg { width: 18px; height: 18px; }

.week__content {
  padding: var(--s3) var(--s4) var(--s7);
  padding-left: calc(56px + var(--s5) + var(--s4));
}
@media (max-width: 768px) { .week__content { padding-left: var(--s4); } }

.week__cols {
  display: grid; grid-template-columns: 1fr 260px; gap: var(--s7); align-items: start;
}
@media (max-width: 1024px) { .week__cols { grid-template-columns: 1fr; gap: var(--s5); } }

.week__bullets {
  list-style: none; padding: 0; margin: 0;
  font-size: 0.9rem; color: var(--text-muted);
}
.week__bullets li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--border); line-height: 1.55;
}
.week__bullets li:last-child { border-bottom: 0; }
.week__bullets li::before {
  content: '';
  display: inline-block; width: 13px; height: 13px;
  margin-top: 4px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}

.week__aside {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s5);
}
.week__aside-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--s3);
}
.week__aside-project {
  font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: var(--s4);
}
.week__tools {
  display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s3);
}
.week__tool {
  font-family: var(--font-mono); font-size: 10px;
  border: 1px solid var(--border); padding: 3px 10px;
  border-radius: var(--r-pill); color: var(--text-dim);
  background: var(--bg);
}

/* ═══════════════════════════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════════════════════════ */
.price-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s7);
  display: flex; flex-direction: column;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px -8px rgba(11,13,20,0.1);
}

.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(91,78,255,0.04), var(--bg));
  position: relative;
}
.price-card--featured::before {
  content: 'BEST VALUE';
  position: absolute; top: -11px; right: var(--s5);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; padding: 4px 10px;
  border-radius: var(--r-pill); background: var(--accent); color: white;
}

.price-card__name {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s4);
}

.price-card__price {
  margin-bottom: var(--s3);
}
.price-card__amount {
  font-family: var(--font-mono); font-size: 2.4rem;
  font-weight: 700; color: var(--text); letter-spacing: -0.03em; line-height: 1;
}
.price-card__per {
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--text-dim); margin-left: 4px;
}
.price-card__was {
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--text-dim); text-decoration: line-through; margin-top: 4px;
}
.price-card__save {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--accent); font-weight: 600; margin-top: 4px;
}

.price-card__desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: var(--s6); padding-bottom: var(--s5);
  border-bottom: 1px solid var(--border);
}

.price-card__includes {
  list-style: none; padding: 0; margin: 0 0 var(--s6);
  font-size: 0.875rem; color: var(--text-muted); flex-grow: 1;
}
.price-card__includes li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: 8px 0; border-bottom: 1px dashed var(--border);
  line-height: 1.5;
}
.price-card__includes li:last-child { border-bottom: 0; }
.price-card__includes li::before {
  content: '';
  display: inline-block; width: 13px; height: 13px;
  margin-top: 3px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}

.price-note {
  margin-top: var(--s7);
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dim);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   INTERNSHIPS
═══════════════════════════════════════════════════════════ */
.internship-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s7);
}
.internship-box__list {
  list-style: none; padding: 0; margin: var(--s5) 0 0;
}
.internship-box__list li {
  display: flex; gap: var(--s4); align-items: flex-start;
  padding: var(--s4) 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.55;
}
.internship-box__list li:last-child { border-bottom: 0; }
.internship-box__list .num {
  font-family: var(--font-mono); font-size: 0.72rem;
  font-weight: 600; color: var(--accent); flex-shrink: 0;
  width: 24px; padding-top: 3px;
}

/* ═══════════════════════════════════════════════════════════
   TEACH CALLOUT
═══════════════════════════════════════════════════════════ */
.teach-bar {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: var(--s5);
  padding: var(--s7);
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r);
}
.teach-bar__text h3 { font-size: 1rem; margin-bottom: var(--s2); }
.teach-bar__text p  { font-size: 0.88rem; max-width: 480px; }

/* ═══════════════════════════════════════════════════════════
   ENROLL SECTION
═══════════════════════════════════════════════════════════ */
.seats-badge {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-family: var(--font-mono); font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--s5);
}
.seats-badge__bar {
  width: 120px; height: 6px;
  background: var(--border); border-radius: var(--r-pill); overflow: hidden;
}
.seats-badge__fill {
  height: 100%; background: var(--accent);
  border-radius: var(--r-pill);
  width: 90%; /* 18 of 20 */
}
.seats-badge strong { color: var(--accent); }

.enroll__note {
  margin-top: var(--s6); font-size: 0.85rem; color: var(--text-dim);
  font-family: var(--font-mono);
}
.enroll__note a { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer__brand {
  display: flex; align-items: center; gap: var(--s3);
  font-weight: 700; color: var(--text);
}
.footer__links a {
  font-size: 0.88rem; color: var(--text-muted);
}
.footer__links a:hover { color: var(--text); }
.footer__copy {
  font-size: 0.78rem; color: var(--text-dim); font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM COMPARISON
═══════════════════════════════════════════════════════════ */
.problem__col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s6);
}
.problem__col--bad  { border-top: 3px solid var(--danger); }
.problem__col--good { border-top: 3px solid var(--accent); }

.problem__col-title {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: var(--s5);
}
.problem__col--bad  .problem__col-title { color: var(--danger); }
.problem__col--good .problem__col-title { color: var(--accent); }

.problem__list {
  list-style: none; padding: 0; margin: 0;
}
.problem__list li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s3) 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.55;
}
.problem__list li:last-child { border-bottom: 0; }
.problem__list__icon {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — PHASE CARDS
═══════════════════════════════════════════════════════════ */
.phase-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s7);
}
.phase-card__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s4);
}
.phase-card__weeks {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text-dim); margin-bottom: var(--s3);
}
.phase-card__title { font-size: 1.2rem; margin-bottom: var(--s4); }
.phase-card__desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.phase-card__steps {
  list-style: none; padding: 0; margin: var(--s5) 0 0;
}
.phase-card__steps li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s3) 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.5;
}
.phase-card__steps li:last-child { border-bottom: 0; }
.phase-card__steps li::before {
  content: '';
  display: inline-block; width: 13px; height: 13px;
  margin-top: 3px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}

/* ═══════════════════════════════════════════════════════════
   TRACK CARDS
═══════════════════════════════════════════════════════════ */
.track-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s7);
  display: flex; flex-direction: column;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.track-card:not(.track-card--coming):hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px -8px rgba(11,13,20,.12);
  transform: translateY(-3px);
}

.track-card__bar {
  height: 3px; width: 48px;
  border-radius: 2px; margin-bottom: var(--s6);
}

.track-card__eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--s2);
}

.track-card__name { font-size: 1.25rem; margin-bottom: var(--s2); }

.track-card__for {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--text-dim); margin-bottom: var(--s5);
}

.track-card__desc {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: var(--s6); flex-grow: 1;
}

.track-card__produces {
  list-style: none; padding: 0; margin: 0 0 var(--s6);
  font-size: 0.875rem; color: var(--text-muted);
}
.track-card__produces li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.5;
}
.track-card__produces li:last-child { border-bottom: 0; }
.track-card__produces li::before {
  content: '';
  display: inline-block; width: 13px; height: 13px;
  margin-top: 3px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}

.track-card__footer {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: var(--s3);
  margin-top: auto;
}
.track-card__weeks {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dim);
}
.track-card--coming { opacity: 0.5; cursor: default; }
.coming-badge {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--bg-elev); border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   CURRICULUM TRACK TABS
═══════════════════════════════════════════════════════════ */
.track-tabs {
  display: flex; gap: var(--s2);
  flex-wrap: wrap; margin-bottom: var(--s7);
}
.track-tab {
  padding: 10px var(--s5);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: transparent;
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.track-tab:hover { border-color: var(--border-strong); color: var(--text); }
.track-tab.is-active {
  background: var(--accent); border-color: var(--accent); color: white;
}

/* ── Curriculum phase divider */
.curriculum-phase {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s3) var(--s4);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim);
}
.curriculum-phase span + span { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   THE REAL BRIEF
═══════════════════════════════════════════════════════════ */
.brief-box {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s7);
}
.brief-box__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--s5);
}
.brief-box__examples {
  list-style: none; padding: 0; margin: 0;
}
.brief-box__examples li {
  font-size: 0.88rem; color: var(--text-muted);
  padding: var(--s3) 0; border-bottom: 1px solid var(--border);
  line-height: 1.5; display: flex; gap: var(--s3); align-items: flex-start;
}
.brief-box__examples li:last-child { border-bottom: 0; }
.brief-box__examples li::before {
  content: '→'; color: var(--accent);
  font-family: var(--font-mono); font-size: 0.85rem; flex-shrink: 0;
}

.brief-flow {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--s2); margin-top: var(--s6);
}
.brief-flow__step {
  font-family: var(--font-mono); font-size: 0.78rem;
  padding: 7px var(--s4);
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-muted); white-space: nowrap;
}
.brief-flow__step--accent {
  background: var(--accent-soft); border-color: var(--accent);
  color: var(--accent); font-weight: 600;
}
.brief-flow__arrow { color: var(--text-dim); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   WHAT YOU EARN (OUTCOMES)
═══════════════════════════════════════════════════════════ */
.outcome-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s5) var(--s6);
  display: flex; gap: var(--s4); align-items: flex-start;
}
.outcome-item--highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-soft), var(--bg));
}
.outcome-item__num {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  color: var(--accent); flex-shrink: 0; padding-top: 3px; min-width: 22px;
}
.outcome-item__title { font-size: 0.95rem; margin-bottom: 4px; }
.outcome-item__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   TRACK SUMMARY (merged tracks+curriculum panel)
═══════════════════════════════════════════════════════════ */
.track-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s7);
  margin-bottom: var(--s8);
}

.track-summary__head {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap;
  gap: var(--s5); margin-bottom: var(--s5);
  padding-bottom: var(--s5); border-bottom: 1px solid var(--border);
}

.track-summary__meta {
  display: flex; align-items: center;
  gap: var(--s4); flex-wrap: wrap; flex-shrink: 0;
}

.track-summary__duration {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text-dim); white-space: nowrap;
}

.track-summary__desc {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: var(--s5);
}

.track-summary__produces {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: var(--s2);
}

.track-summary__produces li {
  font-family: var(--font-mono); font-size: 0.78rem;
  padding: 5px var(--s4);
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-pill); color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   CURRICULUM SUBHEAD (within merged section)
═══════════════════════════════════════════════════════════ */
.curriculum-subhead {
  display: flex; align-items: center;
  gap: var(--s5); margin-bottom: var(--s6);
  flex-wrap: wrap;
}
.curriculum-subhead h3 { font-size: 1rem; margin: 0; }
.curriculum-subhead p  { font-size: 0.875rem; color: var(--text-dim); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   COMING TRACK TABS
═══════════════════════════════════════════════════════════ */
.track-tab--coming {
  opacity: 0.42; cursor: not-allowed;
}
.track-tab--coming:hover {
  border-color: var(--border); color: var(--text-muted);
  background: transparent;
}

/* ═══════════════════════════════════════════════════════════
   REGISTRATION STEPS
═══════════════════════════════════════════════════════════ */
.reg-steps {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: var(--s2); margin-bottom: var(--s8);
}
.reg-step {
  display: flex; align-items: center; gap: var(--s2);
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 7px var(--s4);
  white-space: nowrap;
}
.reg-step__num {
  background: var(--accent); color: white;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reg-step--done {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent); font-weight: 600;
}
.reg-steps__arrow { color: var(--text-dim); font-size: 0.85rem; }
@media (max-width: 768px) { .reg-steps__arrow { display: none; } }

/* ═══════════════════════════════════════════════════════════
   PAYMENT METHODS
═══════════════════════════════════════════════════════════ */
.payment-methods {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
@media (max-width: 640px) { .payment-methods { grid-template-columns: 1fr; } }

.payment-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s5); text-align: center;
}
.payment-card__name {
  font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: var(--s2);
}
.payment-card__account {
  font-family: var(--font-mono); font-size: 0.92rem;
  font-weight: 600; color: var(--accent); margin-bottom: var(--s2);
}
.payment-card__note {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   FORMS (enroll + teach application)
═══════════════════════════════════════════════════════════ */
.form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s7); text-align: left;
}

.form-grid { display: grid; gap: var(--s5); }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-full  { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid--2 { grid-template-columns: 1fr; } }

.form-field label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: var(--s2); letter-spacing: 0.01em;
}
.form-field label .req { color: var(--accent); margin-left: 2px; }

.form-control {
  width: 100%; padding: 11px var(--s4);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-family: inherit; font-size: 0.92rem; color: var(--text);
  background: var(--bg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-control::placeholder { color: var(--text-dim); }

select.form-control {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%238B95B0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right var(--s4) center;
  padding-right: 40px; cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 100px; line-height: 1.55; }

.form-hint {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-dim); margin-top: var(--s1); line-height: 1.5;
}

/* ─── Teach form expandable ──────────────────── */
.teach-form-wrap { display: none; }
.teach-form-wrap.is-open { display: block; }

/* ═══════════════════════════════════════════════════════════
   PAYMENT BLOCK (consolidated)
═══════════════════════════════════════════════════════════ */
.payment-block {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s6);
  max-width: 740px; margin: var(--s6) auto 0; text-align: left;
}
.payment-block__label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--s5);
}
.payment-block__methods {
  display: flex; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s5);
}
.payment-method-item {
  flex: 1; min-width: 140px;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: var(--s4);
}
.payment-method-item__name {
  font-weight: 700; font-size: 0.92rem; color: var(--text); margin-bottom: var(--s1);
}
.payment-method-item__detail {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--accent); font-weight: 600;
}
.payment-block__note {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted);
  padding-top: var(--s4); border-top: 1px solid var(--border);
}

/* ── Floating WhatsApp button ────────────────────────────── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-float {
  position: fixed; bottom: var(--s7); right: var(--s7); z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
  animation: wa-pulse 2.5s ease-out 2s 3;
}
.wa-float:hover {
  color: white; transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; pointer-events: auto; transform: translateX(0); }

.wa-float__tooltip {
  position: absolute; right: calc(100% + 12px);
  background: var(--text); color: #fff;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; padding: var(--s2) var(--s3);
  border-radius: var(--r-sm);
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.wa-float__tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--text);
}

@media (max-width: 640px) {
  .wa-float { width: 48px; height: 48px; bottom: var(--s6); right: var(--s6); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OVERRIDES (≤640px / ≤480px / ≤380px)
═══════════════════════════════════════════════════════════ */

/* Nav — hide parent link on very small screens */
@media (max-width: 480px) {
  .nav__sep, .nav__parent { display: none; }
}

/* Track tabs — 2-column grid on tablet, full-width on tiny */
@media (max-width: 640px) {
  .track-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .track-tab  { text-align: center; }
}
@media (max-width: 400px) {
  .track-tabs { grid-template-columns: 1fr; }
}

/* Track summary head — stack title and enroll button vertically */
@media (max-width: 640px) {
  .track-summary { padding: var(--s5); margin-bottom: var(--s7); }
  .track-summary__head { flex-direction: column; }
  .track-summary__meta { width: 100%; justify-content: space-between; }
}

/* Countdown — prevent overflow, shrink further on very small phones */
@media (max-width: 480px) {
  .countdown { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .countdown { padding: var(--s3) var(--s4); }
  .countdown__num { font-size: 1.2rem; }
  .countdown__sep { font-size: 1.1rem; }
}

/* Phase cards — reduce internal padding on mobile */
@media (max-width: 640px) {
  .phase-card { padding: var(--s5); }
}

/* Week aside — tighter padding on mobile */
@media (max-width: 640px) {
  .week__aside { padding: var(--s4); }
  .week__aside-project { margin-bottom: var(--s3); }
}

/* Price cards — reduce padding on small phones */
@media (max-width: 480px) {
  .price-card { padding: var(--s5); }
  .price-card__amount { font-size: 1.9rem; }
}

/* Teach bar — stack + full-width button */
@media (max-width: 640px) {
  .teach-bar { flex-direction: column; align-items: flex-start; }
  .teach-bar .btn { width: 100%; justify-content: center; }
}

/* Registration steps — single column on small phones */
@media (max-width: 480px) {
  .reg-steps { flex-direction: column; align-items: stretch; }
  .reg-step  { justify-content: flex-start; }
}

/* Brief box — tighter padding */
@media (max-width: 640px) {
  .brief-box { padding: var(--s5); }
}

/* Form card — tighter padding */
@media (max-width: 480px) {
  .form-card { padding: var(--s5); }
  textarea.form-control { min-height: 80px; }
}
