/* Education ERP: a product-led composition with real, readable example records. */
.edu-site {
  --edu-paper: #fbfaf6;
  --edu-surface: #fff;
  --edu-ink: #171815;
  --edu-muted: #656861;
  --edu-line: #d9d9d2;
  --edu-line-strong: #b9bbb4;
  --edu-accent: #9f3b24;
  --edu-accent-hover: #7d2c1a;
  --edu-accent-soft: #f4dfd6;
  --edu-blue: #e8edf7;
  --edu-green: #e4eee6;
  --edu-yellow: #f3edcf;
  --edu-nav: rgb(251 250 246 / 94%);
  --edu-shadow: 0 28px 80px -42px rgb(34 37 31 / 38%);
  --edu-rail: 1280px;
  --edu-radius: 18px;
  color: var(--edu-ink);
  background: var(--edu-paper);
  font-family: var(--font-body), Supreme, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}
.dark .edu-site {
  --edu-paper: #171815;
  --edu-surface: #20221e;
  --edu-ink: #f4f2ea;
  --edu-muted: #b5b7af;
  --edu-line: #3b3d37;
  --edu-line-strong: #585b53;
  --edu-accent: #e38a70;
  --edu-accent-hover: #efaa95;
  --edu-accent-soft: #4e2c24;
  --edu-blue: #272e3b;
  --edu-green: #26352b;
  --edu-yellow: #3b3724;
  --edu-nav: rgb(23 24 21 / 94%);
  --edu-shadow: 0 28px 80px -42px rgb(0 0 0 / 70%);
}
.edu-site *,
.edu-site *::before,
.edu-site *::after {
  box-sizing: border-box;
}
.edu-site :where(h1, h2, h3, p, figure, dl, dd, ol, ul) {
  margin: 0;
}
.edu-site :where(ol, ul) {
  padding: 0;
  list-style: none;
}
.edu-site :where(h1, h2, h3) {
  color: var(--edu-ink);
  font-family: var(--font-heading), 'Cooper Hewitt ERP', sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.edu-site h1 {
  max-width: 16ch;
  font-size: clamp(3.4rem, 6.4vw, 6rem);
  line-height: 0.98;
}
.edu-site h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 1.02;
}
.edu-site h3 {
  font-size: 1.45rem;
  line-height: 1.18;
}
.edu-site a {
  color: inherit;
  text-decoration: none;
}
.edu-site :where(a, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--edu-accent);
  outline-offset: 4px;
}
.edu-site [id] {
  scroll-margin-top: 100px;
}
.edu-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  width: min(var(--edu-rail), calc(100% - 56px));
  min-height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid var(--edu-line);
  background: var(--edu-nav);
  backdrop-filter: blur(18px);
}
.edu-brand {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 600;
}
.edu-brand img {
  display: block;
  width: 96px;
  height: 25px;
  object-fit: contain;
}
.dark .edu-brand img {
  filter: invert(1);
}
.edu-brand span {
  padding-left: 18px;
  border-left: 1px solid var(--edu-line);
}
.edu-nav nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.9rem;
}
.edu-nav nav a,
.edu-text-link {
  text-underline-offset: 5px;
}
.edu-nav nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.edu-nav nav a:hover,
.edu-text-link:hover {
  color: var(--edu-accent);
  text-decoration: underline;
}
.edu-nav > .edu-button {
  justify-self: end;
}
.edu-button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--edu-ink);
  border-radius: 8px;
  color: var(--edu-paper) !important;
  background: var(--edu-ink);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background 160ms ease;
}
.edu-button:hover {
  background: var(--edu-accent-hover);
  transform: translateY(-2px);
}
.edu-button:active {
  transform: translateY(0);
}
.edu-button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.86rem;
}
.edu-text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 600;
}
.edu-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.edu-eyebrow,
.edu-app-kicker {
  color: var(--edu-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.edu-hero {
  max-width: var(--edu-rail);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0 72px;
}
.edu-hero-copy {
  max-width: 980px;
}
.edu-hero-copy .edu-eyebrow {
  margin-bottom: 24px;
}
.edu-lead {
  max-width: 680px;
  margin-top: 30px !important;
  color: var(--edu-muted);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.55;
  text-wrap: pretty;
}
.edu-hero-copy .edu-actions {
  margin-top: 32px;
}
.edu-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 56px !important;
  border-top: 1px solid var(--edu-line);
  border-bottom: 1px solid var(--edu-line);
}
.edu-hero-facts div {
  padding: 18px 22px 20px 0;
}
.edu-hero-facts div + div {
  padding-left: 22px;
  border-left: 1px solid var(--edu-line);
}
.edu-hero-facts dt {
  margin-bottom: 4px;
  color: var(--edu-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.edu-hero-facts dd {
  font-size: 0.92rem;
  font-weight: 600;
}
.edu-workspace {
  margin-top: 72px !important;
  overflow: hidden;
  border: 1px solid var(--edu-line-strong);
  border-radius: var(--edu-radius);
  background: var(--edu-surface);
  box-shadow: var(--edu-shadow);
}
.edu-workspace > figcaption,
.edu-ledger > figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--edu-line);
  color: var(--edu-muted);
  background: var(--edu-paper);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.edu-app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--edu-line);
}
.edu-app-brand,
.edu-app-context,
.edu-review-person,
.edu-ledger header > div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.edu-app-brand b,
.edu-app-context,
.edu-view-chip {
  font-size: 0.78rem;
}
.edu-app-mark,
.edu-avatar,
.edu-person i {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: var(--edu-ink);
  background: var(--edu-green);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
}
.edu-app-mark {
  color: var(--edu-paper);
  background: var(--edu-ink);
}
.edu-avatar-large {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 0.76rem;
}
.edu-app-body {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 610px;
}
.edu-app-nav {
  padding: 22px 14px;
  border-right: 1px solid var(--edu-line);
  background: var(--edu-paper);
}
.edu-app-nav p {
  padding: 0 10px 10px;
  color: var(--edu-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.edu-app-nav span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--edu-muted);
  font-size: 0.77rem;
}
.edu-app-nav span.is-active {
  color: var(--edu-ink);
  background: var(--edu-green);
  font-weight: 650;
}
.edu-app-nav i {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
}
.edu-app-nav .is-active i {
  background: var(--edu-accent);
  border-color: var(--edu-accent);
}
.edu-app-main {
  min-width: 0;
  padding: 30px;
}
.edu-app-heading {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: start;
}
.edu-app-heading h2 {
  margin-top: 6px;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.edu-view-chip,
.edu-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid var(--edu-line);
  border-radius: 6px;
  background: var(--edu-paper);
  white-space: nowrap;
}
.edu-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--edu-line);
  border-radius: 10px;
  background: var(--edu-line);
}
.edu-metrics div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 18px;
  background: var(--edu-surface);
}
.edu-metrics span {
  color: var(--edu-muted);
  font-size: 0.75rem;
}
.edu-metrics b {
  grid-row: span 2;
  align-self: center;
  font-size: 1.65rem;
  font-variant-numeric: tabular-nums;
}
.edu-metrics small {
  color: var(--edu-muted);
  font-size: 0.75rem;
}
.edu-app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 20px;
  margin-top: 20px;
}
.edu-table-wrap,
.edu-review-card,
.edu-ledger {
  overflow: hidden;
  border: 1px solid var(--edu-line);
  border-radius: 10px;
  background: var(--edu-surface);
}
.edu-table-wrap {
  overflow-x: auto;
}
.edu-table-toolbar {
  display: flex;
  justify-content: space-between;
  min-width: 660px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--edu-line);
  font-size: 0.75rem;
}
.edu-table-toolbar span {
  color: var(--edu-muted);
}
.edu-site table {
  width: 100%;
  border-collapse: collapse;
  color: var(--edu-ink);
  font: inherit;
}
.edu-table-wrap table {
  min-width: 660px;
}
.edu-site th,
.edu-site td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--edu-line);
  text-align: left;
  vertical-align: middle;
}
.edu-site th {
  color: var(--edu-muted);
  background: var(--edu-paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.edu-site td {
  font-size: 0.75rem;
}
.edu-site tbody tr:last-child td {
  border-bottom: 0;
}
.edu-person {
  display: flex;
  gap: 10px;
  align-items: center;
}
.edu-person b {
  display: grid;
  white-space: nowrap;
  font-size: 0.75rem;
}
.edu-person small,
.edu-review-person small,
.edu-ledger header small {
  color: var(--edu-muted);
  font-size: 0.75rem;
  font-weight: 400;
}
.edu-status {
  min-height: 25px;
  padding: 4px 7px;
  border: 0;
  font-size: 0.75rem;
  font-weight: 650;
}
.edu-status.is-ready {
  background: var(--edu-green);
}
.edu-status.is-due {
  background: var(--edu-yellow);
}
.edu-status.is-review {
  background: var(--edu-blue);
}
.edu-review-card {
  padding: 18px;
}
.edu-review-person {
  margin: 18px 0;
}
.edu-review-person > div,
.edu-ledger header > div > div {
  display: grid;
}
.edu-review-person b,
.edu-ledger header b {
  font-size: 0.78rem;
}
.edu-review-card dl {
  display: grid;
  gap: 10px;
}
.edu-review-card dl div {
  padding-top: 10px;
  border-top: 1px solid var(--edu-line);
}
.edu-review-card dt,
.edu-review-gate span,
.edu-review-gate small,
.edu-ledger header > div:last-child span {
  color: var(--edu-muted);
  font-size: 0.75rem;
}
.edu-review-card dd {
  font-size: 0.75rem;
  font-weight: 600;
}
.edu-review-gate {
  display: grid;
  margin-top: 18px;
  padding: 13px;
  border: 1px solid var(--edu-accent);
  border-radius: 5px;
  background: var(--edu-accent-soft);
}
.edu-review-gate b {
  font-size: 0.78rem;
}
.edu-proof {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  max-width: var(--edu-rail);
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid var(--edu-line);
  border-bottom: 1px solid var(--edu-line);
}
.edu-proof p {
  max-width: 620px;
  font-size: 0.9rem;
  font-weight: 600;
}
.edu-proof ul {
  display: flex;
  gap: 18px;
  color: var(--edu-muted);
  font-size: 0.78rem;
}
.edu-section {
  max-width: var(--edu-rail);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 170px) 0;
  border-bottom: 1px solid var(--edu-line);
}
.edu-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}
.edu-section-heading .edu-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -44px;
}
.edu-section-heading > p:last-child,
.edu-feature-copy > p,
.edu-start > div > p:last-child,
.edu-closing > div > p:last-child {
  color: var(--edu-muted);
  font-size: 1.03rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.edu-flow {
  margin-top: 72px;
  border-top: 1px solid var(--edu-line-strong);
}
.edu-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 146px;
  padding: 28px 0;
  border-bottom: 1px solid var(--edu-line);
}
.edu-flow li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35px;
  width: 1px;
  background: var(--edu-line);
  content: '';
}
.edu-flow > li > span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--edu-line-strong);
  border-radius: 50%;
  background: var(--edu-paper);
  font-size: 0.75rem;
  font-weight: 700;
}
.edu-flow li.has-gate > span {
  color: var(--edu-paper);
  background: var(--edu-accent);
  border-color: var(--edu-accent);
}
.edu-flow p {
  margin-bottom: 5px;
  color: var(--edu-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.edu-flow small {
  display: block;
  margin-top: 7px;
  color: var(--edu-muted);
  font-size: 0.84rem;
}
.edu-flow a,
.edu-flow strong {
  min-width: 190px;
  font-size: 0.8rem;
  font-weight: 650;
  text-align: right;
}
.edu-flow a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
}
.edu-flow a:hover {
  color: var(--edu-accent);
}
.edu-flow strong {
  width: fit-content;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 5px;
  color: var(--edu-accent);
  background: var(--edu-accent-soft);
}
.edu-fees {
  display: grid;
  grid-template-columns: minmax(310px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}
.edu-feature-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 4vw, 4rem);
}
.edu-feature-copy > p:not(.edu-eyebrow) {
  margin-top: 26px;
}
.edu-feature-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.edu-feature-copy li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
}
.edu-feature-copy li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--edu-accent);
  content: '';
}
.edu-ledger {
  border-radius: 14px;
  box-shadow: var(--edu-shadow);
}
.edu-ledger header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--edu-line);
}
.edu-ledger header > div:last-child {
  display: grid;
  gap: 2px;
  text-align: right;
}
.edu-ledger header > div:last-child b {
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}
.edu-ledger-table {
  overflow-x: auto;
}
.edu-ledger table {
  min-width: 630px;
}
.edu-ledger td:nth-child(n + 4),
.edu-ledger th:nth-child(n + 4) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.edu-ledger tr.is-credit td:nth-child(4) {
  color: var(--edu-accent);
  font-weight: 650;
}
.edu-ledger > p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 20px;
  padding: 18px 22px;
  background: var(--edu-green);
  font-size: 0.75rem;
}
.edu-ledger > p span {
  color: var(--edu-muted);
}
.edu-ledger > p b {
  text-align: right;
}
.edu-ledger > p small {
  grid-column: 1 / -1;
  color: var(--edu-muted);
  font-size: 0.75rem;
  text-align: right;
}
.edu-module-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  margin-top: 72px;
  border-top: 1px solid var(--edu-line-strong);
  border-left: 1px solid var(--edu-line);
}
.edu-module {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: start;
  min-height: 128px;
  padding: 28px;
  border-right: 1px solid var(--edu-line);
  border-bottom: 1px solid var(--edu-line);
  background: var(--edu-surface);
  transition: background 160ms ease;
}
.edu-module:hover {
  background: var(--edu-blue);
}
.edu-module > span,
.edu-module > i {
  color: var(--edu-muted);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
}
.edu-module > i {
  justify-self: end;
  font-size: 1rem;
}
.edu-module p {
  max-width: 48ch;
  margin-top: 9px;
  color: var(--edu-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.edu-module-featured {
  grid-row: span 5;
  grid-template-rows: auto 1fr;
  min-height: 640px;
  background: var(--edu-green);
}
.edu-module-featured:hover {
  background: var(--edu-green);
}
.edu-module-featured h3 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}
.edu-module-queue {
  grid-column: 2 / -1;
  align-self: end;
  display: grid;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--edu-line-strong);
  border-radius: 10px;
  background: var(--edu-surface);
}
.edu-module-queue span,
.edu-module-queue small {
  color: var(--edu-muted);
  font-size: 0.75rem;
}
.edu-module-queue b {
  align-self: end;
  font-family: var(--font-heading), 'Cooper Hewitt ERP', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.edu-module-queue em {
  align-self: end;
  justify-self: end;
  color: var(--edu-accent);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
}
.edu-role-table {
  margin: 72px 0 28px;
  border-top: 1px solid var(--edu-line-strong);
}
.edu-role-table [role='row'] {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr 0.65fr;
  gap: 30px;
  align-items: center;
  min-height: 82px;
  padding: 18px 0;
  border-bottom: 1px solid var(--edu-line);
}
.edu-role-table [role='row'] > * {
  font-size: 0.88rem;
}
.edu-role-table [role='row'] > span {
  color: var(--edu-muted);
}
.edu-role-table [role='row'] > strong {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 5px;
  color: var(--edu-accent);
  background: var(--edu-accent-soft);
  font-size: 0.75rem;
}
.edu-role-table .edu-role-head {
  min-height: 48px;
  color: var(--edu-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.edu-role-table .edu-role-head > * {
  font-size: inherit;
}
.edu-start {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  padding-inline: 52px;
  border: 1px solid var(--edu-line);
  border-radius: var(--edu-radius);
  background: var(--edu-blue);
}
.edu-start h2 {
  margin: 18px 0 24px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}
.edu-start ol {
  border-top: 1px solid var(--edu-line-strong);
}
.edu-start li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--edu-line);
}
.edu-start li span {
  color: var(--edu-accent);
  font-size: 0.75rem;
  font-weight: 700;
}
.edu-start li b {
  font-size: 0.92rem;
}
.edu-start li small {
  grid-column: 2;
  margin-top: -14px;
  color: var(--edu-muted);
  font-size: 0.76rem;
}
.edu-start > .edu-actions {
  grid-column: 1 / -1;
  padding-top: 8px;
}
.edu-faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.edu-faq h2 {
  margin: 18px 0 26px;
  font-size: clamp(2.6rem, 4vw, 4rem);
}
.edu-faq details {
  border-top: 1px solid var(--edu-line);
}
.edu-faq details:last-child {
  border-bottom: 1px solid var(--edu-line);
}
.edu-faq summary {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}
.edu-faq summary::-webkit-details-marker {
  display: none;
}
.edu-faq summary span {
  color: var(--edu-accent);
  font-size: 1.3rem;
  transition: transform 160ms ease;
}
.edu-faq details[open] summary span {
  transform: rotate(45deg);
}
.edu-faq details p {
  max-width: 66ch;
  padding: 0 48px 24px 0;
  color: var(--edu-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}
.edu-closing {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: end;
  max-width: var(--edu-rail);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 170px) 0;
}
.edu-closing h2 {
  max-width: 13ch;
  margin: 18px 0 24px;
}
.edu-closing > div > p:last-child {
  max-width: 680px;
}
.edu-closing > .edu-actions {
  flex: 0 0 auto;
}

@media (max-width: 1340px) {
  .edu-nav,
  .edu-hero,
  .edu-proof,
  .edu-section,
  .edu-closing {
    width: calc(100% - 56px);
  }
}
@media (max-width: 1040px) {
  .edu-app-grid {
    grid-template-columns: 1fr;
  }
  .edu-review-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }
  .edu-review-card > .edu-app-kicker,
  .edu-review-person {
    grid-column: span 1;
  }
  .edu-review-card dl {
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / -1;
  }
  .edu-review-gate {
    grid-column: 1 / -1;
  }
  .edu-fees,
  .edu-start,
  .edu-faq {
    grid-template-columns: 1fr;
  }
  .edu-feature-copy {
    max-width: 700px;
  }
  .edu-start > .edu-actions {
    grid-column: auto;
  }
  .edu-faq {
    gap: 60px;
  }
}
@media (max-width: 820px) {
  .edu-nav {
    grid-template-columns: 1fr auto;
  }
  .edu-nav nav {
    display: none;
  }
  .edu-hero-facts,
  .edu-section-heading,
  .edu-module-layout {
    grid-template-columns: 1fr;
  }
  .edu-section-heading {
    gap: 26px;
    align-items: start;
  }
  .edu-section-heading .edu-eyebrow {
    margin-bottom: 0;
  }
  .edu-app-body {
    grid-template-columns: 1fr;
  }
  .edu-app-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--edu-line);
  }
  .edu-app-nav p {
    display: none;
  }
  .edu-app-nav span {
    flex: 0 0 auto;
  }
  .edu-proof {
    align-items: start;
  }
  .edu-proof ul {
    flex-direction: column;
    gap: 6px;
  }
  .edu-flow li {
    grid-template-columns: 60px 1fr;
  }
  .edu-flow a,
  .edu-flow strong {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }
  .edu-flow a {
    justify-content: flex-start;
  }
  .edu-module-featured {
    grid-row: auto;
    min-height: 520px;
  }
  .edu-closing {
    display: grid;
    align-items: start;
  }
}
@media (max-width: 620px) {
  .edu-site {
    font-size: 16px;
  }
  .edu-nav,
  .edu-hero,
  .edu-proof,
  .edu-section,
  .edu-closing {
    width: calc(100% - 36px);
  }
  .edu-nav {
    min-height: 68px;
  }
  .edu-brand img {
    width: 82px;
    height: auto;
  }
  .edu-brand span {
    display: none;
  }
  .edu-button-small {
    min-height: 40px;
  }
  .edu-hero {
    padding-top: 60px;
  }
  .edu-site h1 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
  }
  .edu-site h2 {
    font-size: clamp(2.3rem, 10vw, 3.25rem);
  }
  .edu-hero-facts {
    margin-top: 40px !important;
  }
  .edu-hero-facts div,
  .edu-hero-facts div + div {
    padding: 14px 0;
    border-left: 0;
  }
  .edu-hero-facts div + div {
    border-top: 1px solid var(--edu-line);
  }
  .edu-workspace {
    margin-top: 48px !important;
    border-radius: 12px;
  }
  .edu-workspace > figcaption span:last-child,
  .edu-app-context > span:first-child,
  .edu-view-chip {
    display: none;
  }
  .edu-app-main {
    padding: 20px 14px;
  }
  .edu-metrics {
    grid-template-columns: 1fr;
  }
  .edu-metrics div {
    min-height: 82px;
  }
  .edu-table-toolbar,
  .edu-table-wrap table {
    min-width: 0;
  }
  .edu-table-wrap thead {
    display: none;
  }
  .edu-table-wrap tbody {
    display: grid;
  }
  .edu-table-wrap tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3px 12px;
    align-items: center;
    padding: 13px;
    border-bottom: 1px solid var(--edu-line);
  }
  .edu-table-wrap tr:last-child {
    border-bottom: 0;
  }
  .edu-table-wrap td {
    padding: 0;
    border: 0;
  }
  .edu-table-wrap td:first-child,
  .edu-table-wrap td:nth-child(2) {
    grid-column: 1;
  }
  .edu-table-wrap td:nth-child(3),
  .edu-table-wrap td:nth-child(4) {
    display: none;
  }
  .edu-table-wrap td:last-child {
    grid-row: 1 / span 2;
    grid-column: 2;
  }
  .edu-review-card {
    display: block;
  }
  .edu-review-card dl {
    display: grid;
    grid-template-columns: 1fr;
  }
  .edu-proof {
    display: grid;
    gap: 18px;
  }
  .edu-section {
    padding-block: 92px;
  }
  .edu-flow {
    margin-top: 48px;
  }
  .edu-flow li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
  .edu-flow li::before {
    left: 20px;
  }
  .edu-flow > li > span {
    width: 40px;
    height: 40px;
  }
  .edu-ledger header {
    align-items: start;
  }
  .edu-ledger > p {
    grid-template-columns: 1fr;
  }
  .edu-ledger > p b,
  .edu-ledger > p small {
    text-align: left;
  }
  .edu-module {
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    padding: 22px 18px;
  }
  .edu-module-featured {
    min-height: 450px;
  }
  .edu-module-queue {
    grid-column: 1 / -1;
  }
  .edu-role-table [role='row'] {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }
  .edu-role-table .edu-role-head {
    display: none;
  }
  .edu-start {
    width: 100%;
    padding: 78px 24px;
    border-radius: 0;
  }
  .edu-faq details p {
    padding-right: 0;
  }
  .edu-closing {
    padding-block: 100px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .edu-site *,
  .edu-site *::before,
  .edu-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
