:root {
  --ink: #191919;
  --muted: #5f6368;
  --paper: #fff;
  --card: #fff;
  --line: #e5e7eb;
  --red: #e91c24;
  --deep: #191919;
  --gold: #e91c24;
  --shadow: 0 24px 60px rgba(25, 25, 25, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.55 Inter,
    Aptos,
    Arial,
    sans-serif;
}
button,
a {
  font: inherit;
}
.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 78px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}
.identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.identity > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font:
    800 11px Georgia,
    serif;
  letter-spacing: 1px;
}
.identity b {
  line-height: 1.05;
}
.identity small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  gap: 6px;
}
.site-header nav a,
.outline-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.site-header nav a {
  padding: 8px 10px;
  border-radius: 4px;
  transition: background-color 0.18s ease;
}
.site-header nav a:hover {
  background: #f7f7f7;
}
.site-header nav a.active,
.site-header nav a[aria-current="location"] {
  background: #f2f2f2;
}
.outline-link {
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: 8px 14px;
}
.hero {
  min-height: 700px;
  padding: 100px clamp(24px, 7vw, 116px) 85px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 80px;
  align-items: center;
  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(233, 28, 36, 0.12),
      transparent 28%
    ),
    linear-gradient(145deg, #fff, #fff);
  overflow: hidden;
}
.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.hero h1 {
  font:
    600 clamp(55px, 7vw, 102px) / 0.95 Georgia,
    serif;
  letter-spacing: -4px;
  max-width: 950px;
  margin: 0;
}
.hero h1 em {
  color: var(--red);
  font-weight: 500;
}
.hero-lead {
  font-size: 20px;
  color: #5c5655;
  max-width: 750px;
  margin: 30px 0;
}
.hero-actions {
  display: flex;
  gap: 10px;
}
.hero-actions button,
.hero-actions a {
  border-radius: 4px;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.hero-actions button {
  border: 0;
  background: var(--red);
  color: white;
}
.hero-actions a {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}
.hero-proof {
  justify-self: end;
  width: min(370px, 100%);
  background: var(--deep);
  color: white;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-proof:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #59434b;
  pointer-events: none;
}
.hero-proof > p {
  color: #d9cdd0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin: 0 0 20px;
}
.proof-number {
  display: flex;
  align-items: center;
  gap: 17px;
  position: relative;
}
.proof-number b {
  font: 600 88px/0.9 Georgia;
  color: #e3a760;
}
.proof-number span {
  font: 600 25px/1.05 Georgia;
}
.proof-line {
  height: 1px;
  background: #4b5563;
  margin: 24px 0;
}
.hero-proof small {
  display: block;
  color: #bcaeb3;
  margin-top: 25px;
}
.promise-strip {
  background: var(--red);
  color: white;
  padding: 27px clamp(24px, 8vw, 140px);
}
.promise-strip p {
  max-width: 1100px;
  margin: auto;
  font: 500 21px/1.45 Georgia;
}
.promise-strip b {
  color: #191919;
  margin-right: 12px;
}
.section {
  padding: 95px clamp(24px, 7vw, 116px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 45px;
}
.section-head h2 {
  font: 500 clamp(37px, 4.4vw, 61px) / 1.06 Georgia;
  margin: 0;
  max-width: 850px;
  letter-spacing: -1px;
}
.section-head > p {
  max-width: 470px;
  color: var(--muted);
}
.section-head.compact {
  margin-bottom: 30px;
}
.journey {
  background: var(--card);
}
.rhythm {
  display: grid;
  grid-template-columns: 1fr 55px 1fr 55px 1fr;
  align-items: stretch;
}
.rhythm article {
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.rhythm article span {
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.rhythm article b {
  font: 600 28px Georgia;
  margin: 7px 0 8px;
}
.rhythm article p {
  color: var(--muted);
}
.rhythm article small {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}
.rhythm > i {
  font: 600 25px Georgia;
  color: #c5b8b1;
  display: grid;
  place-items: center;
}
.cycles-section {
  background: #f2f2f2;
}
.cycle-interface {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
}
.cycle-tabs {
  display: grid;
  gap: 6px;
  align-content: start;
}
.cycle-tabs button {
  --cycle: #999;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cycle);
  background: rgba(255, 255, 255, 0.55);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  cursor: pointer;
}
.cycle-tabs button span {
  font: 600 24px Georgia;
  color: var(--cycle);
}
.cycle-tabs button b {
  font-size: 14px;
}
.cycle-tabs button.active {
  background: var(--deep);
  border-color: var(--deep);
  color: white;
}
.cycle-panel {
  --cycle: var(--red);
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 7px solid var(--cycle);
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
}
.cycle-panel small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}
.cycle-question {
  padding: 0 35px 30px 0;
  border-bottom: 1px solid var(--line);
}
.cycle-question h3 {
  font: 500 37px/1.12 Georgia;
  margin: 0 0 15px;
}
.cycle-question p {
  color: var(--muted);
}
.verdict {
  color: var(--cycle);
  font-size: 12px;
  font-weight: 850;
}
.cycle-study {
  padding: 0 0 30px 35px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cycle-study h4 {
  font: 600 26px/1.15 Georgia;
  margin: 5px 0;
}
.cycle-study p {
  color: var(--muted);
}
.cycle-study > b {
  font-size: 13px;
}
.cycle-methods {
  padding: 28px 35px 0 0;
}
.cycle-methods > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cycle-methods span {
  background: #f2f2f2;
  border: 1px solid var(--line);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 750;
}
.cycle-output {
  padding: 28px 0 0 35px;
  border-left: 1px solid var(--line);
}
.cycle-output p {
  margin: 0;
}
.cycle-result {
  grid-column: 1/-1;
  background: #f2f2f2;
  margin: 30px -12px -12px;
  padding: 20px 22px;
  border-left: 4px solid var(--cycle);
}
.cycle-result p {
  margin: 0;
}
.methods-texts-section {
  background: #f2f2f2;
}
.access-key {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: -14px 0 28px;
}
.access {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}
.access.purchase {
  background: var(--deep);
  color: #fff;
}
.access.oreilly {
  background: var(--red);
  color: #fff;
}
.access.free {
  background: #fff;
  color: var(--deep);
  border: 1px solid #bbb;
}
.methods-cycle-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d5d5d5;
  border: 1px solid #d5d5d5;
  margin-bottom: 18px;
}
.methods-cycle-map article {
  background: #fff;
  padding: 22px;
}
.methods-cycle-map small,
.method-book header small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.methods-cycle-map h3 {
  font: 600 21px Georgia;
  margin: 5px 0 9px;
}
.methods-cycle-map p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.method-book {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  min-width: 0;
}
.method-book header {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.method-book header small {
  text-align: right;
}
.method-book h3 {
  font: 600 24px/1.15 Georgia;
  margin: 20px 0 8px;
}
.method-book h3 a {
  color: var(--ink);
  text-decoration: none;
}
.method-book h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
}
.method-book p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
}
.method-book > b {
  font-size: 12px;
  margin-top: auto;
}
.method-book .companion-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  margin-top: 12px;
}
.method-book em {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}
.access-note {
  border-left: 5px solid var(--red);
  padding: 15px 18px;
  background: #fff;
  font-size: 13px;
  margin: 18px 0 0;
}
.semester-section {
  background: var(--card);
}
.filters {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.filters button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.filters button.active {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}
.class-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.class-card {
  --cycle: #999;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cycle);
  background: #fff;
}
.class-card > button {
  width: 100%;
  border: 0;
  background: none;
  padding: 19px;
  display: grid;
  grid-template-columns: 54px 1fr 30px;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.class-number {
  font: 600 32px Georgia;
  color: var(--cycle);
}
.class-card button small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 9px;
  margin-bottom: 4px;
}
.class-card button b {
  font: 600 18px/1.25 Georgia;
}
.class-card button i {
  font: 400 25px Georgia;
  color: var(--cycle);
}
.class-details {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: white;
}
.class-card.open {
  grid-column: 1/-1;
  box-shadow: var(--shadow);
}
.class-card.open .class-details {
  display: grid;
}
.class-details section {
  padding: 18px;
  border-right: 1px solid var(--line);
}
.class-details section:last-child {
  border: 0;
}
.class-details small {
  font-size: 9px;
  color: var(--cycle);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.class-details p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}
.assessment-section {
  background: #f2f2f2;
}
.assessment-layout {
  display: grid;
  grid-template-columns: 260px 1fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.assessment-meter {
  --selected: var(--red);
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--selected) 0 72%, #ddd2c8 72% 100%);
  transition: 0.25s;
}
.assessment-meter:before {
  content: "";
  position: absolute;
}
.meter-inner {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 18px;
}
.meter-inner b {
  font: 600 43px Georgia;
  color: var(--selected);
}
.meter-inner span {
  font-size: 11px;
  color: var(--muted);
}
.assessment-list {
  display: grid;
  gap: 3px;
}
.assessment-list button {
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 5px 1fr 40px;
  gap: 10px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.assessment-list button > span {
  height: 100%;
  min-height: 28px;
  background: var(--item);
}
.assessment-list button b {
  font-size: 12px;
}
.assessment-list button em {
  font: 600 18px Georgia;
  text-align: right;
}
.assessment-list button.active {
  background: var(--deep);
  color: white;
}
.assessment-detail {
  border-left: 5px solid var(--red);
  background: var(--card);
  padding: 28px;
}
.assessment-detail small {
  color: var(--red);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 1.2px;
}
.assessment-detail p {
  margin: 7px 0 23px;
}
.assessment-detail p:last-child {
  margin-bottom: 0;
}
.independence {
  display: grid;
  grid-template-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  margin-top: 55px;
  align-items: center;
}
.independence div {
  border-top: 2px solid var(--red);
  padding: 13px 5px;
}
.independence small,
.independence b {
  display: block;
}
.independence small {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
}
.independence i {
  text-align: center;
  color: var(--red);
}
.evidence-section {
  background: var(--deep);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
  align-items: center;
}
.evidence-section .eyebrow {
  color: #e2a45c;
}
.evidence-copy h2 {
  font: 500 clamp(38px, 4.5vw, 62px) / 1.04 Georgia;
  margin: 0 0 20px;
}
.evidence-copy p:last-child {
  color: #d3c8cb;
}
.ladder {
  display: grid;
  gap: 7px;
}
.ladder div {
  border: 1px solid #59464d;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  background: #191919;
}
.ladder span {
  color: #e2a45c;
  font: 600 22px Georgia;
  text-align: center;
  border-right: 1px solid #59464d;
  padding: 13px;
}
.ladder b {
  padding: 0 15px;
  font-size: 13px;
}
.evidence-section blockquote {
  grid-column: 1/-1;
  margin: 0;
  border-top: 1px solid #5d4850;
  padding: 25px 0 0;
  color: #e2a45c;
  font: italic 500 27px Georgia;
  text-align: center;
}
.start-section {
  background: var(--card);
}
.start-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.checklist {
  display: grid;
  gap: 7px;
}
.checklist label {
  border: 1px solid var(--line);
  padding: 16px;
  display: grid;
  grid-template-columns: 0 26px 1fr;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.checklist input {
  opacity: 0;
}
.checklist label > span {
  width: 23px;
  height: 23px;
  border: 2px solid #b9aca5;
  display: grid;
  place-items: center;
}
.checklist input:checked + span {
  background: var(--red);
  border-color: var(--red);
}
.checklist input:checked + span:after {
  content: "✓";
  color: white;
  font-weight: 900;
}
.checklist input:checked ~ b {
  text-decoration: line-through;
  color: var(--muted);
}
.checklist label b {
  font-size: 13px;
}
.start-layout aside {
  background: #f2f2f2;
  border-top: 6px solid var(--red);
  padding: 28px;
  align-self: start;
}
.start-layout aside > b {
  font: 600 25px Georgia;
}
.check-progress {
  height: 8px;
  background: #d1d5db;
  margin: 15px 0 22px;
}
.check-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: 0.25s;
}
.start-layout aside p {
  color: var(--muted);
  font-size: 14px;
}
.start-layout aside button {
  border: 0;
  background: none;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  padding: 0;
  cursor: pointer;
}
.faq-section {
  background: #f2f2f2;
}
.faq {
  max-width: 1000px;
}
.faq article {
  border-top: 1px solid #cfc3ba;
}
.faq button {
  width: 100%;
  border: 0;
  background: none;
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  text-align: left;
  cursor: pointer;
}
.faq button b {
  font: 600 19px Georgia;
}
.faq button span {
  color: var(--red);
  font-size: 23px;
}
.faq article > p {
  display: none;
  max-width: 820px;
  color: var(--muted);
  margin: 0;
  padding: 0 40px 22px 0;
}
.faq article.open > p {
  display: block;
}
.closing {
  padding: 100px clamp(24px, 9vw, 150px);
  background: #fff;
  text-align: center;
}
.closing h2 {
  font: 500 clamp(40px, 5.5vw, 75px) / 1.03 Georgia;
  max-width: 1150px;
  margin: 0 auto 38px;
}
.closing a {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 850;
}
footer {
  padding: 30px clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
footer div {
  margin-right: auto;
}
footer b,
footer span {
  display: block;
}
footer b {
  color: var(--ink);
}
footer p {
  margin: 0;
}
footer a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 1050px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-proof {
    justify-self: start;
  }
  .section-head {
    display: block;
  }
  .rhythm {
    grid-template-columns: 1fr;
  }
  .rhythm > i {
    display: none;
  }
  .cycle-interface,
  .assessment-layout,
  .start-layout {
    grid-template-columns: 1fr;
  }
  .methods-cycle-map,
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cycle-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
  .cycle-tabs button {
    display: block;
  }
  .assessment-meter {
    margin: auto;
  }
  .evidence-section {
    grid-template-columns: 1fr;
  }
  .evidence-section blockquote {
    grid-column: auto;
  }
  .independence {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .independence i {
    display: none;
  }
}
@media (max-width: 700px) {
  .site-header {
    padding: 0 15px;
  }
  .outline-link {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 70px 20px;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero-proof {
    width: 100%;
  }
  .section {
    padding: 70px 18px;
  }
  .section-head h2 {
    font-size: 39px;
  }
  .cycle-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .cycle-tabs button {
    text-align: center;
    border-left: 1px solid var(--line);
    border-top: 4px solid var(--cycle);
  }
  .cycle-panel {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .cycle-question,
  .cycle-study,
  .cycle-methods,
  .cycle-output {
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .cycle-question {
    padding-top: 0;
  }
  .cycle-result {
    margin: 20px 0 0;
  }
  .methods-cycle-map,
  .methods-grid {
    grid-template-columns: 1fr;
  }
  .method-book {
    min-height: 0;
  }
  .method-book header {
    display: block;
  }
  .method-book header small {
    margin-top: 8px;
    text-align: left;
  }
  .class-grid {
    grid-template-columns: 1fr;
  }
  .class-card.open {
    grid-column: auto;
  }
  .class-card > button {
    grid-template-columns: 43px 1fr 25px;
  }
  .class-details {
    grid-template-columns: 1fr;
  }
  .class-details section {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .assessment-layout {
    gap: 24px;
  }
  .assessment-meter {
    width: 210px;
  }
  .independence {
    grid-template-columns: 1fr 1fr;
  }
  .evidence-section {
    gap: 35px;
  }
  .evidence-section blockquote {
    font-size: 22px;
  }
  .start-layout {
    gap: 30px;
  }
  .closing {
    padding: 75px 18px;
  }
  .closing h2 {
    font-size: 42px;
  }
  footer {
    display: block;
  }
  footer p {
    margin: 15px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.assessment-meter {
  --portion: 12%;
  background: conic-gradient(
    var(--selected) 0 var(--portion),
    #ddd2c8 var(--portion) 100%
  );
}
.class-grid {
  display: block;
}
.semester-cycle-row {
  --cycle: #999;
  margin: 0 0 34px;
}
.semester-cycle-row > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 11px;
  padding: 0 2px 10px;
  border-bottom: 2px solid var(--cycle);
}
.semester-cycle-row > header div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.semester-cycle-row > header span {
  color: var(--cycle);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.semester-cycle-row > header h3 {
  font: 600 27px/1 Georgia;
  margin: 0;
}
.semester-cycle-row > header small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cycle-class-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.cycle-class-grid.filtered,
.cycle-class-grid.solo {
  grid-template-columns: minmax(0, 1fr);
}
.cycle-class-grid:not(.filtered):not(.solo) .class-card > button {
  min-height: 142px;
  align-items: start;
}
.cycle-class-grid .class-card.open {
  grid-column: 1/-1;
}
.capstone-row {
  margin-top: 45px;
}
.capstone-row > header {
  border-bottom-color: var(--deep);
}
@media (max-width: 900px) {
  .cycle-class-grid {
    grid-template-columns: 1fr;
  }
  .cycle-class-grid:not(.filtered):not(.solo) .class-card > button {
    min-height: 0;
  }
  .semester-cycle-row {
    margin-bottom: 40px;
  }
}
.three-class-label {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0 0 14px;
}
.three-class-label span {
  background: var(--deep);
  color: white;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.three-class-label p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .three-class-label {
    display: block;
  }
  .three-class-label span {
    display: inline-block;
  }
  .three-class-label p {
    margin-top: 9px;
  }
}
.journey .rhythm {
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  margin-bottom: 50px;
}
.journey .rhythm article {
  padding: 24px;
  min-height: 210px;
}
.journey .rhythm h3 {
  font: 600 25px Georgia;
  margin: 8px 0;
}
.journey .rhythm article > b {
  font:
    800 12px/1.45 Inter,
    Aptos,
    Arial,
    sans-serif;
  margin-top: auto;
  padding-top: 14px;
  border-top: 0;
}
.journey .rhythm > i {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 26px;
}
@media (max-width: 1000px) {
  .journey .rhythm {
    grid-template-columns: 1fr;
  }
  .journey .rhythm > i {
    display: block;
    transform: rotate(90deg);
  }
}
