:root {
  --ink: #121826;
  --muted: #5c6677;
  --line: #d9e1ea;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --navy: #071b33;
  --blue: #1168d8;
  --cyan: #14bfd0;
  --mint: #35d39a;
  --amber: #f5a524;
  --violet: #6c3df4;
  --shadow: 0 22px 60px rgba(10, 32, 60, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 78px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.light-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(18, 24, 38, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #ffffff;
}

.brand span {
  font-size: 1.02rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.nav-item > a {
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav .is-active,
.nav-item.is-active > a {
  opacity: 1;
  color: var(--cyan);
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.nav-item {
  position: relative;
  padding: 28px 0;
}

.subnav {
  position: absolute;
  top: 72px;
  left: 50%;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 44px rgba(10, 32, 60, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .subnav,
.nav-item:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.subnav a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  opacity: 1;
}

.subnav a:hover,
.subnav a.is-active {
  color: var(--blue);
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 17, 35, 0.9) 0%, rgba(5, 17, 35, 0.72) 34%, rgba(5, 17, 35, 0.18) 72%),
    url("assets/hero-ai-lab.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--paper));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, calc(100% - 40px));
  min-height: 760px;
  margin-left: clamp(20px, 6vw, 84px);
  padding-top: 90px;
  padding-bottom: 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.5vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  color: #071b33;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 42px;
}

.hero-stats div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 20, 38, 0.52);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding: 96px clamp(20px, 6vw, 84px);
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  padding: 96px clamp(20px, 6vw, 84px) 72px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(15, 99, 163, 0.9)),
    var(--navy);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.course-page-hero {
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(17, 104, 216, 0.88) 62%, rgba(20, 191, 208, 0.82)),
    var(--navy);
}

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

.feature-links a {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(10, 32, 60, 0.06);
}

.feature-links span {
  color: var(--amber);
  font-weight: 800;
}

.feature-links strong {
  display: block;
  margin: 16px 0 10px;
  font-size: 1.2rem;
}

.feature-links em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.course-body p,
.competition p,
.outcome-grid p,
.contact p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--paper);
}

.value-grid span,
.process span {
  color: var(--amber);
  font-weight: 800;
}

.value-grid h3,
.path-card h3,
.course-body h3,
.domain-grid h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

.value-grid p,
.path-card p,
.domain-grid p,
.process p {
  color: var(--muted);
  line-height: 1.65;
}

.band {
  background:
    linear-gradient(180deg, #f6fbff, #ffffff 58%),
    var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

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

.path-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(10, 32, 60, 0.06);
}

.path-card.accent {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #0a2547, #0d6fcf 68%, #13bdd0);
  box-shadow: var(--shadow);
}

.path-card.accent p,
.path-card.accent li,
.path-card.accent .path-meta {
  color: rgba(255, 255, 255, 0.8);
}

.path-meta {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-card ul,
.outcome-grid ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.path-card li,
.outcome-grid li {
  position: relative;
  margin-top: 12px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.path-card li::before,
.outcome-grid li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: var(--mint);
}

.course-list {
  display: grid;
  gap: 18px;
}

.course-group {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.course-link {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.course-link:hover {
  border-color: rgba(17, 104, 216, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.course-meta span,
.course-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: #0a4d83;
  background: #eaf7fb;
  font-size: 0.82rem;
  font-weight: 800;
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.schedule-section {
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

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

.schedule-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(10, 32, 60, 0.06);
}

.schedule-card h3 {
  margin: 14px 0 8px;
  font-size: 1.28rem;
}

.schedule-card p {
  color: var(--muted);
  line-height: 1.6;
}

.schedule-card dl,
.enrollment-summary dl {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.schedule-card dl div,
.enrollment-summary dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: #ffffff;
}

.schedule-card dt,
.enrollment-summary dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.schedule-card dd,
.enrollment-summary dd {
  margin: 0;
  font-weight: 800;
}

.enrollment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.enrollment-summary,
.enrollment-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(10, 32, 60, 0.06);
}

.enrollment-summary {
  position: sticky;
  top: 102px;
  padding: 28px;
}

.enrollment-summary h2 {
  margin: 16px 0 24px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.enrollment-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

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

.enrollment-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 500;
}

.enrollment-form textarea {
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.course-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
  font-size: 1.4rem;
  font-weight: 800;
}

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

.level-grid div,
.detail-grid article,
.single-level {
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
}

.level-grid strong,
.detail-grid strong,
.single-level strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.level-grid span,
.detail-grid span,
.single-level span {
  display: block;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.58;
}

.wide-detail {
  margin-top: 36px;
  padding: 26px;
}

.competition {
  padding: 92px clamp(20px, 6vw, 84px);
  color: #ffffff;
  background: #08162a;
}

.competition-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.competition p {
  color: rgba(255, 255, 255, 0.76);
}

.competition-points {
  display: grid;
  gap: 14px;
}

.competition-points div {
  padding: 22px;
  border-left: 4px solid var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

.competition-points strong,
.competition-points span {
  display: block;
}

.competition-points span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process div {
  min-height: 230px;
  padding: 24px;
  background: #ffffff;
}

.process strong {
  display: block;
  margin: 12px 0 10px;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.domain-grid article {
  padding: 24px;
  border-radius: 8px;
  background: #eef7f8;
}

.domain-grid article:nth-child(2) {
  background: #f6f2ff;
}

.domain-grid article:nth-child(3) {
  background: #fff7e8;
}

.domain-grid article:nth-child(4) {
  background: #eefaf3;
}

.domain-grid article:nth-child(5) {
  background: #f0f6ff;
}

.outcomes {
  background: var(--soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

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

.outcome-grid li {
  min-height: 74px;
  margin: 0;
  padding: 20px 20px 20px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.outcome-grid li::before {
  top: 27px;
  left: 20px;
}

.contact {
  padding: 76px clamp(20px, 6vw, 84px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(10, 77, 131, 0.94)),
    var(--navy);
}

.contact-page {
  min-height: 520px;
  padding-top: 118px;
}

.contact-page h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1.02;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact h2 {
  max-width: 740px;
}

.contact p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
}

footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 84px);
  color: #ffffff;
  background: #050b15;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: #ffffff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.footer-meta a,
.footer-meta span,
.social-links span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-meta a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
}

.social-icon.xhs {
  background: #ff2442;
}

.social-icon.instagram {
  background:
    radial-gradient(circle at 30% 105%, #fdf497 0%, #fdf497 18%, #fd5949 43%, #d6249f 62%, #285aeb 100%);
}

.policy-content {
  display: grid;
  gap: 20px;
  max-width: 980px;
}

.policy-content article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.policy-content p {
  color: var(--muted);
  line-height: 1.78;
}

.policy-content a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .value-grid,
  .domain-grid,
  .feature-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway-grid,
  .level-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .site-header {
    height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 28px rgba(18, 24, 38, 0.12);
  }

  .nav-item {
    padding: 0;
  }

  .nav-item > a {
    display: block;
    padding: 14px 0;
  }

  .subnav {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .subnav a {
    padding: 9px 0;
    color: var(--muted);
  }

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

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

  .nav-cta {
    margin-top: 8px;
    padding: 14px 16px;
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .page-main {
    padding-top: 70px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(5, 17, 35, 0.94) 0%, rgba(5, 17, 35, 0.74) 58%, rgba(5, 17, 35, 0.34) 100%),
      url("assets/hero-ai-lab.png");
    background-position: 62% center;
  }

  .hero-stats,
  .split,
  .section-heading,
  .competition-inner,
  .outcome-grid,
  .contact-inner,
  .enrollment-layout {
    grid-template-columns: 1fr;
  }

  .enrollment-summary {
    position: static;
  }

  .contact-inner {
    display: grid;
  }

  .hero-stats {
    max-width: 420px;
  }

  .course-group {
    grid-template-columns: 1fr;
  }

  .outcome-grid ul {
    grid-template-columns: 1fr;
  }

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

  .form-footer {
    display: grid;
  }

  footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-content: flex-start;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 0 16px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.03;
  }

  .hero-content {
    width: calc(100% - 32px);
    min-height: 980px;
    margin-left: 16px;
    padding-top: 104px;
    padding-bottom: 72px;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 230px;
    margin-top: 12px;
  }

  .hero-stats {
    gap: 10px;
    margin-top: 34px;
  }

  .hero-stats div {
    min-height: 104px;
    padding: 16px 18px;
  }

  .hero-stats,
  .value-grid,
  .process,
  .domain-grid,
  .feature-links {
    grid-template-columns: 1fr;
  }

  .section,
  .competition,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .course-group,
  .path-card,
  .value-grid article,
  .process div,
  .domain-grid article,
  .schedule-card,
  .enrollment-form,
  .enrollment-summary {
    padding: 22px;
  }

  .schedule-card dl div,
  .enrollment-summary dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
