@font-face {
  font-family: "Switzer";
  src: url("/fonts/switzer-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("/fonts/switzer-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("/fonts/switzer-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("/fonts/switzer-700-italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --void: #050506;
  --ink: #161618;
  --paper: #f5f6f8;
  --white: #ffffff;
  --muted: #62636a;
  --line: #d7d8de;
  --purple: #9900d3;
  --purple-dark: #7900a7;
  --purple-light: #c44bff;
  --purple-wash: #f3e8fa;
  --success: #176b45;
  --danger: #b42318;
  --shell: 1180px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(5, 5, 6, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background: var(--void);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Switzer", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:hover {
  text-decoration-color: var(--purple-light);
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--purple-light);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

h1 {
  margin-bottom: 24px;
  max-width: 930px;
  font-size: clamp(2.8rem, 6.4vw, 6.25rem);
  font-style: italic;
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 8vw, 120px);
  scroll-margin-top: 90px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 11px 18px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 6, 0.96);
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 138px;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.header-cta:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 76px));
  overflow: hidden;
  background: var(--void);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -44%;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(196, 75, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-circuit {
  position: absolute;
  z-index: 0;
  right: max(2vw, calc((100vw - var(--shell)) / 2));
  bottom: 6%;
  width: min(38vw, 520px);
  -webkit-mask-image: radial-gradient(ellipse closest-side at 55% 52%, #000 48%, transparent 100%);
  mask-image: radial-gradient(ellipse closest-side at 55% 52%, #000 48%, transparent 100%);
  opacity: 0.42;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(860px, calc(100svh - 76px));
  align-items: center;
  padding-block: 88px;
}

.hero-copy {
  width: min(760px, 72%);
}

.eyebrow,
.section-kicker,
.panel-label,
.track-index,
.lia-eyebrow {
  margin-bottom: 20px;
  color: var(--purple-dark);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--purple-light);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 20px;
  color: #e8e7ea;
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
}

.hero-format {
  margin-bottom: 18px;
  color: #c8c6cc;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.hero-offer-slot {
  min-height: 50px;
  margin-bottom: 24px;
}

.hero-offer {
  display: grid;
  width: fit-content;
  min-height: 50px;
  margin-bottom: 0;
  padding: 14px 18px;
  border-left: 3px solid var(--purple-light);
  background: rgba(255, 255, 255, 0.06);
  gap: 2px;
}

.hero-offer-slot .offer-unavailable {
  display: flex;
  min-height: 50px;
  align-items: center;
  margin: 0;
}

.hero-offer p {
  margin: 0;
}

.hero-offer p:first-child {
  font-size: 19px;
}

.hero-offer p:last-child {
  color: #c8c6cc;
  font-size: 14px;
}

.hero-offer span,
.hero-offer strong {
  font-variant-numeric: tabular-nums;
}

.hero-actions {
  display: flex;
  max-width: 500px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button-light {
  background: var(--white);
  color: var(--void);
}

.button-light:hover {
  background: #ececf0;
}

.button-purple {
  background: var(--purple);
  color: var(--white);
}

.button-purple:hover {
  background: var(--purple-dark);
}

.button-outline {
  border-color: #777881;
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--purple);
  color: var(--purple-dark);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--purple-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link-dark {
  color: var(--white);
}

.action-note {
  flex-basis: 100%;
  margin: 0;
  color: #b6b4bc;
  font-size: 14px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid p {
  display: flex;
  min-height: 138px;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-left: 1px solid var(--line);
}

.proof-grid p:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  margin-bottom: 4px;
  font-size: 22px;
}

.proof-grid span {
  color: var(--muted);
  font-size: 14px;
}

.diploma-section {
  background: var(--paper);
}

.diploma-grid,
.faculty-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(44px, 7vw, 110px);
}

.diploma-answer {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(5, 5, 6, 0.06);
}

.diploma-answer p:last-child {
  margin-bottom: 0;
}

.answer-lead {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.rule-short {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--purple-dark);
  font-weight: 700;
}

.track-section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(44px, 7vw, 84px);
}

.section-heading > p:last-child,
.details-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.section-heading-wide {
  max-width: 920px;
}

.implementation-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.track-line {
  position: absolute;
  top: 17px;
  right: 10%;
  left: 10%;
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.track-line span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--purple);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.implementation-track.is-progressed .track-line span {
  transform: scaleX(1);
}

.track-step {
  position: relative;
  padding-top: 58px;
}

.track-step::before {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
  content: "";
}

.track-index {
  margin-bottom: 12px;
}

.track-step p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.emphasis-section {
  background: var(--paper);
}

.emphasis-chooser {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.emphasis-chooser button {
  display: grid;
  min-height: 152px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.emphasis-chooser button:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.emphasis-chooser button[aria-pressed="true"] {
  border-color: var(--void);
  background: var(--void);
  color: var(--white);
}

.emphasis-chooser span {
  margin-bottom: 12px;
  color: var(--purple-dark);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.emphasis-chooser button[aria-pressed="true"] span {
  color: var(--purple-light);
}

.emphasis-chooser strong {
  font-size: 22px;
}

.emphasis-chooser small {
  align-self: end;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.emphasis-chooser button[aria-pressed="true"] small {
  color: #c8c6cc;
}

.emphasis-panel {
  display: grid;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 100px);
}

.panel-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.panel-label {
  color: var(--purple-dark);
}

.module-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-list li {
  display: grid;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
}

.module-list li:first-child {
  border-top: 1px solid var(--line);
}

.module-list span {
  color: var(--purple-dark);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
}

.inline-help {
  display: flex;
  margin-top: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inline-help p {
  margin: 0;
  font-weight: 700;
}

.faculty-section {
  background: var(--purple-wash);
}

.expertise-list {
  display: grid;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.expertise-list li {
  min-height: 100px;
  padding: 22px;
  border: 1px solid rgba(121, 0, 167, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.faculty-note {
  margin: 0;
  color: #53545a;
  font-size: 14px;
}

.offer-section {
  background: var(--void);
  color: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: start;
  gap: clamp(44px, 7vw, 100px);
}

.section-kicker-dark {
  color: var(--purple-light);
}

.offer-copy {
  position: sticky;
  top: 118px;
}

.offer-copy > p:not(.section-kicker):not(.action-note) {
  color: #d2d0d6;
  font-size: 19px;
}

.offer-copy .text-link {
  color: var(--white);
}

.offer-facts {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.offer-facts li {
  position: relative;
  min-height: 44px;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-facts li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  content: "";
}

.lead-card {
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-card-heading {
  margin-bottom: 32px;
}

.lead-card-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.lead-card-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.field,
.field-row {
  min-width: 0;
}

.field {
  margin-bottom: 20px;
}

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

.field-row .field {
  margin-bottom: 20px;
}

.field label {
  display: flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 0;
  flex-wrap: wrap;
  font-weight: 700;
}

.field label span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #777881;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field select {
  padding-right: 40px;
}

.field input:focus,
.field select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(153, 0, 211, 0.15);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
}

.field small,
.field-error {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.field-error {
  color: var(--danger);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}

.form-rule {
  margin: 4px 0 24px;
  padding: 16px;
  border-left: 3px solid var(--purple);
  background: var(--purple-wash);
  font-size: 14px;
  font-weight: 700;
}

.privacy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-note a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-block: 11px;
  color: var(--purple-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.form-alert {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #f2b8b5;
  border-radius: 10px;
  background: #fff1f0;
  color: #8a1c13;
  font-weight: 700;
}

.lead-success {
  padding: 28px;
  border: 1px solid #9ad2b7;
  border-radius: 14px;
  background: #eefaf3;
}

.lead-success h3 {
  font-size: 28px;
}

.lead-success .button + .button {
  margin-top: 12px;
}

.success-label {
  margin-bottom: 10px;
  color: var(--success);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.details-section {
  background: var(--paper);
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(44px, 7vw, 100px);
}

.details-heading {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

.details-list {
  border-top: 1px solid #aaabb2;
}

.details-list details {
  border-bottom: 1px solid #aaabb2;
}

.details-list summary {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 18px 50px 18px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.details-list summary::-webkit-details-marker {
  display: none;
}

.details-list summary::before,
.details-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: var(--purple-dark);
  content: "";
  transition: transform 180ms ease;
}

.details-list summary::after {
  transform: rotate(90deg);
}

.details-list details[open] summary::after {
  transform: rotate(0deg);
}

.detail-content {
  padding: 0 40px 26px 0;
  color: #45464c;
}

.detail-content p:last-child,
.detail-content ol:last-child {
  margin-bottom: 0;
}

.detail-content .button,
.detail-content .text-link {
  margin-top: 10px;
}

.schedule-list strong {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-variant-numeric: tabular-nums;
}

.details-help {
  grid-column: 2;
}

.site-footer {
  padding-block: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--void);
  color: var(--white);
}

.privacy-page {
  background: var(--paper);
}

.privacy-article {
  max-width: 900px;
  padding-block: clamp(72px, 9vw, 128px);
}

.privacy-article h1 {
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 5.3rem);
}

.privacy-intro {
  max-width: 700px;
  margin-bottom: 64px;
  color: var(--muted);
  font-size: 20px;
}

.privacy-article h2 {
  margin-top: 52px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.privacy-article > p:not(.section-kicker):not(.privacy-intro) {
  max-width: 760px;
  color: #45464c;
}

.privacy-actions {
  display: flex;
  margin-top: 54px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer-grid img {
  width: 138px;
  height: 49px;
  margin-bottom: 14px;
}

.footer-grid p {
  margin: 0;
  color: #b6b4bc;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 88px 96px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-circuit {
    right: 0;
    bottom: -10px;
    width: min(92vw, 360px);
    opacity: 0.22;
  }

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

  .proof-grid p {
    min-height: 116px;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid p:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .diploma-grid,
  .faculty-grid,
  .offer-grid,
  .details-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .implementation-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .track-line {
    display: none;
  }

  .track-step {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .track-step::before {
    display: none;
  }

  .emphasis-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .offer-grid {
    gap: 56px;
  }

  .offer-copy,
  .details-heading {
    position: static;
  }

  .details-help {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 36px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    margin-bottom: 16px;
    font-size: 2rem;
  }

  .eyebrow,
  .section-kicker,
  .panel-label,
  .track-index {
    margin-bottom: 12px;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    max-width: 174px;
    padding-inline: 13px;
  }

  .hero-inner {
    padding-block: 44px 52px;
  }

  .hero::after {
    right: -45%;
    bottom: -8%;
    width: 110vw;
    height: 110vw;
  }

  .hero-circuit {
    display: none;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
    text-align: center;
  }

  .hero-offer {
    width: 100%;
  }

  .proof-grid p {
    min-height: 108px;
    padding: 18px;
  }

  .proof-grid strong {
    font-size: 19px;
  }

  .diploma-grid,
  .faculty-grid {
    gap: 20px;
  }

  .diploma-answer {
    padding: 22px;
  }

  .answer-lead {
    font-size: 19px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

  .implementation-track {
    gap: 12px;
  }

  .track-step {
    min-height: 190px;
    padding: 18px;
  }

  .track-step h3 {
    font-size: 20px;
  }

  .track-step p:last-child {
    margin-bottom: 0;
  }

  .emphasis-chooser button {
    min-height: 136px;
    padding: 18px;
  }

  .emphasis-chooser strong {
    font-size: 19px;
  }

  .emphasis-panel {
    padding: 24px 20px;
    gap: 24px;
  }

  .module-list li {
    min-height: 46px;
  }

  .inline-help {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-help .button {
    width: 100%;
  }

  .expertise-list li {
    min-height: auto;
  }

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

  .offer-facts li {
    padding-left: 22px;
    font-size: 14px;
  }

  .lead-card {
    padding: 26px 20px;
  }

  .offer-grid {
    gap: 40px;
  }

  .field,
  .field-row .field {
    margin-bottom: 14px;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .detail-content {
    padding-right: 0;
  }

  .details-list summary {
    min-height: 60px;
    padding-block: 14px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links a {
    margin-right: 16px;
  }
}

@media (max-width: 350px) {
  .implementation-track {
    grid-template-columns: minmax(0, 1fr);
  }

  .track-step {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
