:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-alt: rgba(255, 255, 255, 0.08);
  --text: #f5f9ff;
  --muted: #d7e5f9;
  --primary: #66b6ff;
  --primary-dark: #46a4f7;
  --line: rgba(168, 201, 236, 0.55);
  --shadow: none;
  --font-body: "Source Sans 3", sans-serif;
  --font-display: "Merriweather", serif;
  --header-offset: 72px;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
  overflow-x: hidden;
  position: relative;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f6efe2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 500ms ease, visibility 500ms ease;
}

#splash-screen img {
  width: min(320px, 74vw);
  height: auto;
  border-radius: 18px;
}

#splash-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.bg-ambient {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--header-offset);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 25%, rgba(45, 111, 185, 0.32), transparent 38%),
    radial-gradient(circle at 82% 30%, rgba(57, 136, 216, 0.24), transparent 36%),
    linear-gradient(180deg, #051427 0%, #081f3e 42%, #0c2a54 100%);
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.42;
}

.orb-a {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 16%;
  background: rgba(91, 176, 255, 0.5);
  animation: driftOne 18s ease-in-out infinite alternate;
}

.orb-b {
  width: 300px;
  height: 300px;
  right: -70px;
  top: 38%;
  background: rgba(65, 143, 223, 0.45);
  animation: driftTwo 22s ease-in-out infinite alternate;
}

.orb-c {
  width: 270px;
  height: 270px;
  left: 38%;
  bottom: -90px;
  background: rgba(116, 194, 255, 0.38);
  animation: driftThree 20s ease-in-out infinite alternate;
}

@keyframes driftOne {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(55px, 24px, 0) scale(1.12); }
}

@keyframes driftTwo {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-52px, -26px, 0) scale(1.1); }
}

@keyframes driftThree {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(24px, -40px, 0) scale(1.08); }
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid #dbe3ee;
  backdrop-filter: none;
}

.top-ticker {
  position: sticky;
  top: var(--header-offset);
  z-index: 25;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 20, 39, 0.55);
  backdrop-filter: blur(2px);
}

.scroll-progress {
  position: sticky;
  top: var(--header-offset);
  z-index: 26;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

#scroll-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #66b6ff, #c7e4ff);
  transition: width 120ms linear;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  color: #e9f3ff;
  font-size: 0.9rem;
  padding: 8px 24px;
  letter-spacing: 0.02em;
}

.blink-urgent {
  color: #ffdf8a;
  animation: blinkUrgent 1s steps(1, end) infinite;
}

@keyframes blinkUrgent {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.35;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #10233b;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 0;
  height: 0;
  object-fit: contain;
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.85);
  transform-origin: left center;
  transition: width 320ms ease, height 320ms ease, opacity 260ms ease, transform 320ms ease;
}

.site-header.settled .brand-logo {
  width: 92px;
  height: 92px;
  opacity: 1;
  transform: scale(1.7);
}

.site-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 34px;
  border: 1px solid #d8e2ef;
  background: #ffffff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #173a59;
  border-radius: 2px;
}

.nav-tab {
  border: 1px solid transparent;
  background: transparent;
  color: #29435d;
  padding: 8px 11px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  text-shadow: none;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-tab.active {
  color: var(--primary);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-tab:hover {
  color: #1c5f97;
  transform: translateY(-1px);
}

.page-host {
  padding: 6px 0 64px;
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  flex: 1 0 auto;
}

.tab-page {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.tab-page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tab-page.entering {
  display: block;
  opacity: 0;
  transform: translateY(12px);
}

.tab-page.leaving {
  display: block;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

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

.hero-copy,
.hero-panel,
.course-card,
.timeline-step,
.results-copy,
.results-cards,
.delivery-card,
.faq-list,
.enroll-wrap {
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-copy,
.hero-panel {
  padding: clamp(18px, 3vw, 26px) 0;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0;
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
}

.hero h1 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.12;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  color: var(--primary);
}

.home-brand-logo {
  width: clamp(260px, 40vw, 470px);
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -38px;
  border-radius: 18px;
  margin-bottom: 6px;
  transition: transform 320ms ease, opacity 320ms ease;
}

.home-brand-logo.shrink {
  transform: scale(0.92);
  opacity: 0.88;
}

.hero-copy .home-brand-name {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #eaf4ff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 70ch;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 14px;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #07203b;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: #e8f2ff;
  border-color: var(--line);
}

.btn-small {
  padding: 8px 12px;
}

.header-inner .btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(62, 142, 220, 0.35);
}

.trust-strip {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip li {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #cde0f9;
  font-size: 0.9rem;
  padding: 0;
}

.panel-top {
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel h2 {
  margin-top: 8px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.panel-copy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
}

.metric-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.metric-grid article {
  border: 0;
  border-left: 2px solid rgba(171, 199, 231, 0.8);
  border-radius: 0;
  padding: 4px 0 4px 10px;
  background: transparent;
}

.metric-num {
  margin: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.metric-label {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head h2 {
  margin-top: 7px;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.22;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.section-copy {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 78ch;
  font-size: 1.02rem;
  line-height: 1.78;
}

.course-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.module-head {
  margin-top: 18px;
}

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

.course-card {
  padding: 6px 0 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.course-tag {
  margin: 0;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(102, 182, 255, 0.2);
  color: #eaf4ff;
  border: 1px solid rgba(102, 182, 255, 0.55);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.course-card h3 {
  font-size: 1.4rem;
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.course-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.course-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #d8e7fb;
  font-size: 1rem;
  line-height: 1.7;
}

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

.timeline-step {
  padding: 10px 0 0;
  border-top: 1px solid var(--line);
}

.step-num {
  margin: 0;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.timeline-step h3 {
  margin-top: 5px;
  font-size: 1.18rem;
  font-weight: 700;
}

.timeline-step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.journey-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journey-card {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.journey-card h3 {
  margin-top: 8px;
  font-size: 1.14rem;
}

.roadmap-shell {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.roadmap-track {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 34px;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, rgba(102, 182, 255, 0.9), rgba(102, 182, 255, 0.25));
}

.roadmap-step {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 10px 0 0;
}

.roadmap-step::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #77beff;
  box-shadow: 0 0 0 4px rgba(119, 190, 255, 0.2);
}

.roadmap-step h3 {
  margin-top: 5px;
  font-size: 1.24rem;
  font-weight: 700;
}

.roadmap-step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.roadmap-side {
  display: grid;
  gap: 16px;
}

.roadmap-panel {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.roadmap-panel h3 {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.results-extended {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.results-extended article {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.results-extended h3 {
  margin-top: 8px;
  font-size: 1.18rem;
  font-weight: 700;
}

.results-copy,
.results-cards {
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
}

.result-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.results-cards {
  display: grid;
  gap: 10px;
}

.results-cards article {
  border: 0;
  border-left: 2px solid rgba(171, 199, 231, 0.85);
  border-radius: 0;
  background: transparent;
  padding: 4px 0 4px 10px;
}

.result-number {
  margin: 0;
  color: var(--primary);
  font-size: 1.9rem;
  font-family: var(--font-display);
}

.result-label {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  align-items: start;
}

.faq-list {
  padding: 4px 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 8px 0;
  color: #eaf4ff;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  padding-right: 18px;
  font: inherit;
  font-size: 1.03rem;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--primary);
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer p {
  margin: 9px 0 2px;
  color: #d3e4fb;
  font-size: 1rem;
  line-height: 1.7;
}

.enroll-wrap {
  padding: 10px 0 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.cohort-last {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.enroll-extra {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.enroll-extra article {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.enroll-extra h3 {
  margin-top: 8px;
  font-size: 1.06rem;
}

.enroll-wrap p {
  color: var(--muted);
}

.enroll-form {
  display: grid;
  gap: 10px;
}

.enroll-form label {
  display: grid;
  gap: 5px;
  font-size: 0.98rem;
  font-weight: 700;
}

.enroll-form input,
.enroll-form select,
.enroll-form textarea {
  border: 1px solid rgba(171, 199, 231, 0.95);
  border-radius: 9px;
  padding: 10px 11px;
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
}

.contact-form-wrap {
  grid-column: span 2;
}

.contact-link {
  color: #dff0ff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
  cursor: pointer;
}

.contact-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

.contact-icon {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: -2px;
  fill: #8fd0ff;
}

.module-list .course-card .module-title {
  transition: color 220ms ease, transform 220ms ease, text-shadow 220ms ease;
}

.module-list .course-card:hover .module-title {
  color: #9ad4ff;
  transform: translateX(2px);
  text-shadow: 0 2px 12px rgba(80, 165, 245, 0.42);
}

.whatsapp-float {
  position: fixed;
  left: 14px;
  bottom: 18px;
  z-index: 40;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.back-to-top {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 40;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(8, 22, 42, 0.75);
  color: #ecf5ff;
  border-radius: 999px;
  min-width: 58px;
  height: 46px;
  font: inherit;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-footer {
  border-top: 1px solid rgba(168, 201, 236, 0.28);
  background: #ffffff;
  margin-top: auto;
  position: relative;
  z-index: 5;
}

.footer-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-inner p {
  margin: 0;
  color: #23384f;
  font-size: 0.95rem;
  text-shadow: none;
}

.section-head {
  position: relative;
  padding-left: 14px;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, #79c1ff, #3a8bd0);
  border-radius: 4px;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  color: #1f4f7b;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:not(:last-child)::after {
  content: " ";
}

.privacy-policy {
  margin-top: 12px;
  display: grid;
  gap: 16px;
}

.privacy-policy article {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.privacy-policy h3 {
  margin: 0;
  font-size: 1.16rem;
}

.privacy-policy p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.policy-list {
  margin: 9px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #d8e7fb;
}

.panel-image,
.media-row img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.panel-image {
  height: 190px;
  margin-bottom: 10px;
}

.media-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.media-row img {
  height: 190px;
  border-radius: 14px;
}

.media-row .software-image {
  object-fit: cover;
  object-position: center center;
  justify-self: stretch;
  background: transparent;
  padding: 0;
  border-radius: 14px;
  height: 230px;
}

.media-row .taxforms-image {
  object-fit: cover;
  object-position: center center;
  justify-self: stretch;
  background: transparent;
  padding: 0;
  border-radius: 14px;
  height: 230px;
}

.module-image {
  width: 100%;
  height: 230px;
  margin-top: 10px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.home-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #d7e7fd;
}

.home-bottom p {
  margin: 8px 0;
}

.home-pillars {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pillar-item {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.pillar-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.pillar-item h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.pillar-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.next-steps {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #d7e7fd;
}

@media (max-width: 1024px) {
  .hero-grid,
  .results-grid,
  .results-extended,
  .faq-grid,
  .enroll-wrap,
  .enroll-extra,
  .journey-grid,
  .roadmap-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-offset: 58px;
  }

  .header-inner {
    min-height: 52px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 2;
  }

  .brand {
    min-width: 32px;
    z-index: 2;
  }

  .header-inner .btn-small {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1;
  }

  .header-inner .btn-small:hover {
    transform: translateX(-50%) translateY(-1px);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d8e2ef;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(16, 35, 59, 0.14);
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 40;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-tab,
  .btn-small {
    min-height: 30px;
    font-size: 0.78rem;
    padding: 4px 7px;
    flex: 0 0 auto;
  }

  .nav-tab {
    width: 100%;
    text-align: left;
  }

  .page-host {
    padding-top: 4px;
  }

  .course-list,
  .module-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .roadmap-track {
    padding-left: 28px;
  }

  .roadmap-step::before {
    left: -22px;
  }

  .home-pillars {
    grid-template-columns: 1fr;
  }

  .media-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .brand-logo {
    width: 0;
    height: 0;
  }

  .site-header.settled .brand-logo {
    width: 36px;
    height: 36px;
    transform: scale(1.9);
  }

  .home-brand-logo {
    width: clamp(240px, 70vw, 320px);
    margin-top: -26px;
  }

  .hero-copy .home-brand-name {
    font-size: clamp(2.2rem, 9.2vw, 3rem);
  }

  .section-head h2 {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .enroll-form input,
  .enroll-form select,
  .enroll-form textarea {
    min-height: 42px;
  }

  .ticker-track span {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .contact-form-wrap {
    grid-column: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .module-image {
    height: 200px;
  }
}
