:root {
  --brand-red: #d60010;
  --brand-red-dark: #a9000d;
  --gold: #c58a34;
  --gold-soft: #f8ead7;
  --ink: #15171d;
  --ink-soft: #282b32;
  --muted: #59616d;
  --line: #eadfce;
  --paper: #fffaf3;
  --white: #ffffff;
  --shadow-soft: 0 14px 34px rgba(80, 49, 17, 0.09);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Noto Sans SC",
    "Microsoft YaHei",
    "PingFang SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

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

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(214, 0, 16, 0.28);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brand-red);
  transform: translateY(-140%);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  scroll-margin-top: var(--header-height);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2,
.ai-copy h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-red);
  font-size: 16px;
  font-weight: 800;
}

.eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 10px;
  content: "";
  vertical-align: middle;
  background: var(--gold);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(234, 223, 206, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 240px;
}

.brand-symbol {
  display: block;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  overflow: hidden;
}

.brand-symbol img {
  width: auto;
  max-width: none;
  height: 54px;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-wordmark strong {
  font-size: 23px;
  font-weight: 900;
}

.brand-wordmark small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  font-size: 17px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  display: grid;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 24%;
  bottom: 0;
  left: 24%;
  height: 3px;
  content: "";
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--brand-red);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  height: min(540px, calc(100vh - 170px));
  min-height: 440px;
  overflow: hidden;
  padding-top: var(--header-height);
  scroll-margin-top: var(--header-height);
  background: var(--paper);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: rgba(255, 250, 243, 0.66);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 44px;
}

.hero-copy {
  width: min(720px, 66%);
  padding-bottom: 8px;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 72px;
  font-weight: 900;
  line-height: 1.08;
}

.hero-copy > p {
  margin-bottom: 26px;
  color: var(--brand-red);
  font-size: 30px;
  font-weight: 700;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.hero-metrics span,
.hero-metrics strong {
  display: block;
}

.hero-metrics span {
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}

.hero-metrics strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 176px;
  min-height: 52px;
  padding: 13px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brand-red);
}

.button-primary:hover {
  background: var(--brand-red-dark);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(21, 23, 29, 0.28);
}

.button-secondary:hover {
  color: var(--brand-red);
  background: var(--white);
  border-color: var(--brand-red);
}

/* Education service boundary */

.service-boundary {
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-boundary-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 42px;
  min-height: 132px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.service-boundary-heading {
  padding-left: 18px;
  border-left: 4px solid var(--brand-red);
}

.service-boundary-heading span {
  display: block;
  margin-bottom: 2px;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 900;
}

.service-boundary-heading h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.35;
}

.service-boundary-inner > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Ecosystem */

.ecosystem {
  background: var(--white);
}

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

.ecosystem-visual {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(197, 138, 52, 0.42);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(21, 23, 29, 0.08);
}

.ecosystem-visual img {
  width: 100%;
  height: auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 86px;
}

.ecosystem-item {
  min-height: 190px;
  padding: 26px 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.ecosystem-item:hover {
  border-color: rgba(214, 0, 16, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.ecosystem-index {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 900;
}

.ecosystem-item h3 {
  margin-bottom: 9px;
  font-size: 23px;
}

.ecosystem-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.learning-band {
  padding: 48px 0;
  color: var(--white);
  background: var(--ink);
  border-top: 4px solid var(--brand-red);
}

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

.learning-item {
  position: relative;
  min-height: 150px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.learning-item:last-child {
  border-right: 0;
}

.learning-item strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 22px;
  background: var(--gold);
  border-radius: 50%;
}

.learning-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
}

.learning-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

/* AI assistant */

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

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 48px;
}

.ai-copy h2 {
  margin-bottom: 22px;
}

.ai-lead {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
}

.ai-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.ai-features div {
  min-height: 88px;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line);
}

.ai-features div:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.ai-features div:nth-child(even) {
  padding-left: 24px;
}

.ai-features b,
.ai-features span {
  display: block;
}

.ai-features b {
  margin-bottom: 6px;
  font-size: 17px;
}

.ai-features span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.learning-assistant-demo {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid rgba(197, 138, 52, 0.46);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
}

.assistant-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.assistant-demo-head span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
}

.assistant-demo-head strong {
  font-size: 21px;
}

.assistant-demo-question {
  margin: 24px;
  padding: 20px 22px;
  color: var(--ink);
  background: var(--white);
  border-left: 4px solid var(--gold);
}

.assistant-demo-question small {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 900;
}

.assistant-demo-question p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.assistant-demo-steps {
  display: grid;
  gap: 1px;
  margin: 0 24px 24px;
  background: rgba(255, 255, 255, 0.13);
}

.assistant-demo-steps > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px 16px;
  background: #30333b;
}

.assistant-demo-steps b {
  color: var(--gold);
  font-size: 16px;
}

.assistant-demo-steps span,
.assistant-demo-steps strong,
.assistant-demo-steps small {
  display: block;
}

.assistant-demo-steps strong {
  margin-bottom: 2px;
  font-size: 17px;
}

.assistant-demo-steps small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.assistant-demo-boundary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 0 24px 24px;
  padding: 15px 18px;
  color: #ffe7e9;
  background: rgba(214, 0, 16, 0.16);
  border: 1px solid rgba(255, 105, 116, 0.42);
}

.assistant-demo-boundary b {
  color: #ffffff;
  white-space: nowrap;
}

.assistant-demo-boundary span {
  line-height: 1.65;
}

.ai-product-showcase {
  position: relative;
  height: 560px;
  margin: 0;
  overflow: hidden;
  background: #f7eddf;
  border: 1px solid rgba(197, 138, 52, 0.46);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
}

.ai-product-showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(197, 138, 52, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 138, 52, 0.16) 1px, transparent 1px);
  background-size: 40px 40px;
}

.ai-screen {
  position: absolute;
  width: 36%;
  border: 4px solid #c7a875;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(93, 58, 20, 0.2);
}

.ai-screen-main {
  z-index: 3;
  bottom: -80px;
  left: 5%;
}

.ai-screen-repo {
  z-index: 2;
  top: 24px;
  left: 33%;
}

.ai-screen-calculator {
  z-index: 1;
  right: 4%;
  bottom: -32px;
}

.ai-screen-report {
  z-index: 4;
  right: 4%;
  bottom: 22px;
  width: 29%;
  border-color: var(--white);
  border-radius: 8px;
}

.ai-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  color: #67491f;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
  background: var(--gold-soft);
  border: 1px solid #e6ceb0;
  border-radius: 6px;
}

/* Courses */

.courses {
  background: var(--white);
}

.courses::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("assets/course-trophy-path.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 780px auto;
  opacity: 0.035;
}

.courses .section-inner {
  position: relative;
}

.course-principles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -10px auto 30px;
  color: #8e5c21;
  font-size: 15px;
  font-weight: 800;
}

.course-principles b {
  color: var(--brand-red);
}

.course-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.course-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  cursor: pointer;
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  font-size: 17px;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.course-tab:first-child {
  border-radius: 7px 0 0 7px;
}

.course-tab:last-child {
  border-right: 0;
  border-radius: 0 7px 7px 0;
}

.course-tab span {
  color: var(--brand-red);
  font-size: 14px;
}

.course-tab:hover {
  color: var(--brand-red);
}

.course-tab.is-active {
  color: var(--white);
  background: var(--brand-red);
}

.course-tab.is-active span {
  color: var(--gold-soft);
}

.course-panel[hidden] {
  display: none;
}

.course-panel {
  padding-top: 24px;
  border-top: 3px solid var(--brand-red);
}

.course-panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.stage-label {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 800;
}

.course-panel-header h3 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.2;
}

.course-panel-header > p {
  max-width: 580px;
  margin-bottom: 4px;
  color: #8a5f2b;
  font-size: 17px;
  font-weight: 700;
  text-align: right;
}

.course-summary {
  max-width: 900px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  margin-bottom: 52px;
}

.course-text-block h4,
.course-roadmap h4 {
  margin-bottom: 22px;
  font-size: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--brand-red);
  border-radius: 50%;
}

.check-list b {
  color: var(--ink);
}

.abilities-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
}

.abilities-block h4 {
  grid-column: 1 / -1;
}

.abilities-block > div {
  min-height: 176px;
  padding: 24px 18px;
  background: var(--paper);
  border-top: 3px solid var(--gold);
}

.abilities-block strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-red);
  font-size: 20px;
}

.abilities-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.course-roadmap {
  margin-bottom: 42px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.roadmap-grid > div {
  position: relative;
  min-height: 145px;
  padding: 22px 20px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.roadmap-grid b,
.roadmap-grid span {
  display: block;
}

.roadmap-grid b {
  margin-bottom: 10px;
  color: var(--brand-red);
  font-size: 14px;
}

.roadmap-grid span {
  font-size: 18px;
  font-weight: 800;
}

.roadmap-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.placeholder-day {
  background: var(--gold-soft) !important;
}

.placeholder-day small {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 8px;
  color: #78511e;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid #ddbe96;
  border-radius: 4px;
}

.placeholder-note {
  margin: 14px 0 0;
  color: #7b654b;
  font-size: 13px;
}

.course-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
}

.course-highlights span {
  padding: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.course-highlights span:last-child {
  border-right: 0;
}

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

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

.package-card {
  min-height: 166px;
  padding: 26px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.package-card:hover {
  border-color: rgba(214, 0, 16, 0.38);
  transform: translateY(-3px);
}

.package-card > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.package-card span {
  font-size: 19px;
  font-weight: 800;
}

.package-card b {
  flex: 0 0 auto;
  color: var(--brand-red);
  font-size: 18px;
}

.package-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.quant-grid .package-card:last-child {
  grid-column: 2 / 3;
}

/* Teachers */

.teachers {
  background: var(--paper);
}

.teacher-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 30px;
  color: var(--ink);
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
}

.teacher-summary div {
  min-height: 80px;
  padding: 15px 20px;
  border-right: 1px solid var(--line);
}

.teacher-summary div:last-child {
  border-right: 0;
}

.teacher-summary strong,
.teacher-summary span {
  display: block;
}

.teacher-summary strong {
  color: var(--brand-red-dark);
  font-size: 19px;
}

.teacher-summary span {
  color: var(--muted);
  font-size: 15px;
}

.lead-teacher {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 390px;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-teacher-photo {
  height: 390px;
  overflow: hidden;
  background: #f7eee2;
}

.lead-teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lead-teacher-copy {
  align-self: center;
  padding: 34px 42px;
}

.teacher-role {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 800;
}

.lead-teacher-copy h3 {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1.2;
}

.lead-teacher-copy blockquote {
  margin-bottom: 16px;
  color: #8b5a22;
  font-size: 18px;
  font-weight: 700;
}

.lead-teacher-copy > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.teacher-tags span {
  padding: 7px 12px;
  color: #7b531f;
  font-size: 14px;
  font-weight: 700;
  background: var(--gold-soft);
  border: 1px solid #e6ceb0;
  border-radius: 4px;
}

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

.teacher-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.teacher-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.teacher-photo {
  height: 250px;
  overflow: hidden;
  background: #f7eee2;
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.teacher-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 16px 18px;
}

.teacher-name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.teacher-name h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.teacher-name span {
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 700;
}

.teacher-slogan {
  min-height: 42px;
  margin-bottom: 9px;
  color: #8b5a22;
  font-size: 15px;
  font-weight: 700;
}

.teacher-info > p:not(.teacher-slogan) {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
}

.teacher-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.teacher-info li {
  padding: 5px 8px;
  color: #75552f;
  font-size: 13px;
  background: var(--gold-soft);
  border-radius: 3px;
}

/* About and research */

.about {
  background: var(--white);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values article {
  min-height: 164px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.about-values article:last-child {
  border-right: 0;
}

.about-values span {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 800;
}

.about-values h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.4;
}

.about-values p {
  margin-bottom: 0;
  color: var(--muted);
}

.research-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.research-heading .eyebrow {
  margin-bottom: 6px;
}

.research-heading h3 {
  margin-bottom: 6px;
  font-size: 32px;
}

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

.research-disclaimer {
  margin: 0 0 18px;
  padding: 12px 16px;
  color: #67491f;
  font-size: 15px;
  line-height: 1.7;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.carousel-button:hover {
  color: var(--white);
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.4;
}

.research-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--gold-soft);
}

.research-track::-webkit-scrollbar {
  height: 8px;
}

.research-track::-webkit-scrollbar-thumb {
  background: var(--gold);
}

.research-track::-webkit-scrollbar-track {
  background: var(--gold-soft);
}

.research-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
}

.research-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.research-card > div {
  padding: 15px 16px 17px;
}

.research-card time,
.research-card span {
  color: var(--muted);
  font-size: 15px;
}

.research-card h4 {
  margin: 4px 0 2px;
  font-size: 19px;
}

.media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.media-links a {
  padding: 7px 11px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 800;
  background: var(--gold-soft);
  border: 1px solid #e7cfaf;
  border-radius: 4px;
}

.media-links a:hover {
  color: var(--white);
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.media-report-section {
  margin-top: 58px;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.media-report-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.media-report-heading h3 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.3;
}

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

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

.media-report-card {
  display: flex;
  min-height: 242px;
  padding: 22px 24px;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
}

.media-report-card:first-child {
  grid-column: 1 / -1;
  min-height: 210px;
  border-top-color: var(--brand-red);
}

.media-report-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.media-report-card > div span {
  color: var(--brand-red);
  font-weight: 900;
}

.media-report-card time {
  color: var(--muted);
  font-size: 14px;
}

.media-report-card h4 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.45;
}

.media-report-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.media-report-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--brand-red);
  font-weight: 900;
}

.media-report-card > a span {
  transition: transform 180ms ease;
}

.media-report-card > a:hover span {
  transform: translateX(4px);
}

.service-boundary-footer {
  background: var(--paper);
}

/* Footer */

.site-footer {
  color: var(--white);
  background: var(--ink);
  border-top: 5px solid var(--brand-red);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 180px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.footer-records {
  text-align: right;
}

.footer-records p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.footer-records a:hover {
  color: var(--gold-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.footer-brand .brand-symbol {
  padding: 3px;
  background: var(--white);
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-brand div > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.footer-inner > p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  text-align: right;
}

/* Product architecture */

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 42px;
  margin-bottom: 0;
}

.architecture-copy h2 {
  max-width: 470px;
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.18;
}

.architecture-lead {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}

.architecture-formula {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: #80531f;
  font-size: 16px;
  font-weight: 800;
}

.architecture-formula span {
  padding: 6px 11px;
  background: var(--gold-soft);
  border: 1px solid #e7cfaf;
  border-radius: 4px;
}

.architecture-formula b {
  color: var(--brand-red);
}

.architecture-keypoints {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.architecture-keypoints li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.architecture-keypoints b {
  color: var(--ink);
}

.architecture-keypoints span {
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-red);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.architecture-map {
  position: relative;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(197, 138, 52, 0.45);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
}

.architecture-map::before {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 300px;
  height: 300px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(197, 138, 52, 0.18);
  border-radius: 50%;
}

.architecture-goal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.architecture-goal span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.architecture-goal strong {
  font-size: 17px;
  text-align: right;
}

.method-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 12px;
}

.method-node {
  display: flex;
  min-height: 104px;
  padding: 14px 12px;
  flex-direction: column;
  justify-content: flex-end;
  background: #24272e;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 2px solid rgba(197, 138, 52, 0.7);
  border-radius: 5px;
}

.method-node.is-primary {
  background: #2c2425;
  border-top-color: var(--brand-red);
}

.method-node small,
.method-node strong,
.method-node span {
  display: block;
}

.method-node small {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.method-node strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.method-node span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.architecture-route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  padding-bottom: 36px;
}

.architecture-stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 150px;
  padding: 20px 16px;
  flex-direction: column;
  justify-content: flex-end;
  background: #24272e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.architecture-stage:nth-child(1) {
  transform: translateY(36px);
}

.architecture-stage:nth-child(2) {
  transform: translateY(24px);
}

.architecture-stage:nth-child(3) {
  transform: translateY(12px);
}

.architecture-stage::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -13px;
  width: 13px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.architecture-stage:last-child::after {
  display: none;
}

.architecture-stage:hover {
  background: #30333b;
  border-color: rgba(197, 138, 52, 0.72);
}

.architecture-stage small,
.architecture-stage strong,
.architecture-stage span {
  display: block;
}

.architecture-stage small {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.architecture-stage strong {
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.3;
}

.architecture-stage span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.architecture-support {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.architecture-support > div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
}

.architecture-support span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.architecture-support p,
.architecture-base p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.architecture-base {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 15px;
  background: var(--brand-red-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.architecture-base span {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
}

/* Course overview tabs */

.course-overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: stretch;
  gap: 34px;
}

.course-overview-panel[hidden] {
  display: none;
}

.stage-overview {
  align-self: center;
  padding: 18px 0;
}

.stage-overview h3 {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.18;
}

.stage-slogan {
  margin-bottom: 18px;
  color: #855821;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.stage-description {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.stage-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.stage-outcomes span {
  padding: 7px 12px;
  color: #7a5222;
  font-size: 14px;
  font-weight: 800;
  background: var(--gold-soft);
  border: 1px solid #ead4b7;
  border-radius: 4px;
}

.stage-detail-link {
  width: fit-content;
}

.stage-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stage-overview-actions .button {
  width: fit-content;
}

.stage-preview {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
}

.stage-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.stage-preview-head small,
.stage-preview-head strong {
  display: block;
}

.stage-preview-head small {
  margin-bottom: 4px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 900;
}

.stage-preview-head strong {
  font-size: 21px;
}

.stage-preview-head > span {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: #7c5525;
  font-size: 14px;
  font-weight: 800;
  background: var(--gold-soft);
  border-radius: 4px;
}

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

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

.stage-preview-list b {
  color: var(--brand-red);
  font-size: 14px;
  white-space: nowrap;
}

.stage-preview-list span {
  font-weight: 800;
}

.stage-preview-list small {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.stage-preview-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* Course detail pages */

.course-page {
  background: var(--white);
}

.course-page .nav-links a.nav-current {
  color: var(--brand-red);
}

.course-page .nav-links a.nav-current::after {
  transform: scaleX(1);
}

.course-detail-hero {
  position: relative;
  min-height: 0;
  padding: calc(var(--header-height) + 28px) 0 34px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.course-detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("assets/course-trophy-path.png");
  background-repeat: no-repeat;
  background-position: right -80px center;
  background-size: 760px auto;
  opacity: 0.08;
}

.course-scope-note {
  color: var(--ink);
  background: #fff4e5;
  border-bottom: 1px solid #e9d3b4;
}

.course-scope-note .section-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.course-scope-note strong {
  flex: 0 0 auto;
  color: var(--brand-red-dark);
  font-size: 16px;
}

.course-scope-note span {
  color: #5f4a2c;
  font-size: 16px;
  line-height: 1.65;
}

.course-detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 44px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
}

.breadcrumb a:hover {
  color: var(--brand-red);
}

.breadcrumb span:last-child {
  color: var(--ink);
  font-weight: 700;
}

.course-detail-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 900;
}

.course-detail-copy h1 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: 46px;
  line-height: 1.12;
}

.course-detail-slogan {
  max-width: 720px;
  margin-bottom: 12px;
  color: #84561f;
  font-size: 19px;
  font-weight: 800;
}

.course-detail-lead {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 17px;
}

.course-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.course-quick-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 6px 9px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.course-quick-facts strong {
  color: var(--ink);
  font-size: 15px;
}

.course-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.course-cart-button {
  min-width: 150px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(21, 23, 29, 0.22);
}

.course-cart-button:hover {
  color: var(--brand-red-dark);
  background: var(--white);
  border-color: var(--brand-red);
}

.course-cart-modal[hidden] {
  display: none;
}

.course-cart-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.course-cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 23, 29, 0.56);
}

.course-cart-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(21, 23, 29, 0.2);
}

.course-cart-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.course-cart-close:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.course-cart-panel .eyebrow {
  padding-right: 48px;
}

.course-cart-panel h2 {
  margin-bottom: 12px;
  padding-right: 42px;
  font-size: 28px;
  line-height: 1.25;
}

.course-cart-panel > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
}

.course-cart-actions {
  display: flex;
  gap: 12px;
}

.course-cart-actions .button {
  flex: 1;
}

body.course-cart-open {
  overflow: hidden;
}

.stage-visual {
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
}

.stage-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stage-visual-head span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.stage-visual-head strong {
  font-size: 18px;
}

.stage-visual-list {
  display: grid;
  gap: 8px;
}

.stage-visual-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-visual-item b {
  color: var(--gold);
  font-size: 14px;
}

.stage-visual-item strong {
  font-size: 16px;
}

.stage-visual-item small {
  font-size: 14px;
}

.stage-visual-item.is-current {
  color: var(--white);
  background: var(--brand-red-dark);
  border-color: var(--brand-red);
}

.course-facts {
  color: var(--white);
  background: var(--ink);
  border-top: 3px solid var(--brand-red);
}

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

.course-fact {
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.course-fact:last-child {
  border-right: 0;
}

.course-fact strong,
.course-fact span {
  display: block;
}

.course-fact strong {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 22px;
}

.course-fact span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.stage-switcher-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.stage-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 20px 0;
}

.stage-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  color: var(--muted);
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.stage-switcher a:last-child {
  border-right: 0;
}

.stage-switcher a span {
  color: var(--brand-red);
  font-size: 14px;
}

.stage-switcher a:hover,
.stage-switcher a.is-current {
  color: var(--brand-red);
}

.stage-switcher a.is-current {
  background: var(--gold-soft);
}

.course-content-section {
  padding: 58px 0;
  scroll-margin-top: var(--header-height);
}

.course-content-section.is-alt {
  background: var(--paper);
}

.course-priority-section {
  padding-top: 50px;
}

.course-detail-heading {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.course-detail-heading .eyebrow {
  margin-top: 10px;
}

.course-detail-heading h2 {
  max-width: 760px;
  margin-bottom: 9px;
  font-size: 32px;
  line-height: 1.2;
}

.course-detail-heading div > p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.detail-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.detail-two-column-spaced {
  margin-top: 40px;
}

.detail-block-title {
  margin-bottom: 20px;
  font-size: 23px;
}

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

.capability-card {
  min-height: 160px;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
}

.capability-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 900;
}

.capability-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.capability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

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

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

.quant-detail-grid .package-card:last-child {
  grid-column: 2 / 3;
}

.detail-package-grid .package-card {
  min-height: 150px;
}

.strategy-package-grid .package-card:last-child {
  grid-column: 2 / 3;
}

.package-category {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-red);
  font-size: 14px;
  font-weight: 900;
}

.course-service-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  color: var(--white);
  background: var(--ink);
  border-top: 4px solid var(--brand-red);
}

.course-service-flow > div {
  position: relative;
  min-height: 120px;
  padding: 20px 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.course-service-flow > div:last-child {
  border-right: 0;
}

.course-service-flow b,
.course-service-flow span,
.course-service-flow small {
  display: block;
}

.course-service-flow b {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
}

.course-service-flow span {
  margin-bottom: 7px;
  font-weight: 800;
}

.course-service-flow small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.course-source-note,
.course-disclaimer {
  padding: 16px 18px;
  color: #705a3d;
  font-size: 16px;
  line-height: 1.75;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
}

.course-source-note {
  margin-top: 24px;
}

.course-disclaimer {
  margin-top: 36px;
}

.next-stage-band {
  padding: 38px 0;
  color: var(--white);
  background: var(--brand-red-dark);
}

.next-stage-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.next-stage-inner small,
.next-stage-inner strong {
  display: block;
}

.next-stage-inner small {
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-weight: 800;
}

.next-stage-inner strong {
  font-size: 24px;
}

.legacy-course-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background: var(--paper);
}

.legacy-course-card {
  width: min(520px, 100%);
  padding: 32px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-red);
  border-radius: 8px;
}

.legacy-course-card h1 {
  margin-bottom: 12px;
  font-size: 30px;
}

.legacy-course-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.next-stage-inner .button-secondary {
  flex: 0 0 auto;
  background: var(--white);
}

/* Motion */

.js .reveal {
  opacity: 1;
  transform: translateY(12px);
  transition:
    transform 420ms ease;
}

.js .reveal.is-visible {
  transform: translateY(0);
}

/* Tablet */

@media (max-width: 1180px) {
  .header-inner,
  .section-inner {
    width: calc(100% - 48px);
  }

  .nav-links {
    gap: 22px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 60px;
  }

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

  .learning-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 32px;
  }

  .learning-item:nth-child(3) {
    border-right: 0;
  }

  .ai-layout {
    grid-template-columns: 1fr;
  }

  .ai-copy {
    max-width: 850px;
  }

  .ai-showcase,
  .learning-assistant-demo,
  .ai-product-showcase {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .course-tab {
    font-size: 16px;
  }

  .foundation-grid {
    grid-template-columns: 1fr;
  }

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

  .quant-grid .package-card:last-child {
    grid-column: auto;
  }

  .lead-teacher {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .lead-teacher-copy {
    padding: 32px 36px;
  }

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

  .teacher-photo {
    height: 260px;
  }

  .research-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

/* Mobile */

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .header-inner,
  .section-inner {
    width: calc(100% - 32px);
  }

  .section {
    padding: 50px 0;
  }

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

  .section-heading h2,
  .ai-copy h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child,
  .ai-lead {
    font-size: 17px;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand-symbol {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .brand-symbol img {
    height: 44px;
  }

  .brand-wordmark strong {
    font-size: 19px;
  }

  .brand-wordmark small {
    margin-top: 3px;
    font-size: 11px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 49;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .nav-links.is-open {
    max-height: calc(100vh - var(--header-height));
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    display: flex;
    height: 56px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    height: min(540px, calc(100vh - 40px));
    min-height: 500px;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background: rgba(255, 250, 243, 0.8);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-inner {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 44px;
  }

  .hero-copy > p {
    margin-bottom: 16px;
    font-size: 23px;
  }

  .hero-metrics {
    gap: 10px 18px;
    margin-bottom: 20px;
  }

  .hero-metrics strong {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .service-boundary-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-boundary-heading h2 {
    font-size: 22px;
  }

  .service-boundary-inner > p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 56px;
  }

  .ecosystem-item {
    min-height: 0;
    padding: 22px;
  }

  .ecosystem-visual {
    overflow: hidden;
  }

  .ecosystem-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .learning-band {
    padding: 38px 0;
  }

  .learning-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .learning-item,
  .learning-item:nth-child(3) {
    min-height: 164px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    scroll-snap-align: start;
  }

  .ai-layout {
    gap: 32px;
  }

  .ai-features {
    grid-template-columns: 1fr;
  }

  .ai-features div,
  .ai-features div:nth-child(odd),
  .ai-features div:nth-child(even) {
    min-height: 0;
    padding: 16px 0;
    border-right: 0;
  }

  .ai-product-showcase {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .ai-screen {
    width: 43%;
    border-width: 3px;
    border-radius: 18px;
  }

  .ai-screen-main {
    bottom: -54px;
    left: 3%;
  }

  .ai-screen-repo {
    top: 18px;
    left: 30%;
  }

  .ai-screen-calculator {
    right: 2%;
    bottom: -18px;
  }

  .ai-screen-report {
    right: 3%;
    bottom: 20px;
    width: 38%;
    border-radius: 6px;
  }

  .assistant-demo-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
  }

  .assistant-demo-question {
    margin: 16px;
    padding: 17px;
  }

  .assistant-demo-question p {
    font-size: 18px;
  }

  .assistant-demo-steps {
    margin: 0 16px 16px;
  }

  .assistant-demo-boundary {
    grid-template-columns: 1fr;
    gap: 4px;
    margin: 0 16px 16px;
  }

  .ai-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    padding: 26px 12px 16px;
  }

  .phone-frame,
  .phone-secondary,
  .phone-primary {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 370px;
    border-width: 5px;
    border-radius: 18px;
    transform: none;
  }

  .phone-frame::before {
    top: 5px;
    width: 46px;
    height: 6px;
  }

  .ai-chat-sample {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
  }

  .ai-disclaimer {
    text-align: left;
  }

  .course-principles {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: -8px 0 22px;
    font-size: 14px;
  }

  .course-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 26px;
  }

  .course-tab {
    min-height: 62px;
    padding: 8px 6px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    font-size: 15px;
  }

  .course-tab:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .course-tab:nth-child(3n) {
    border-right: 0;
  }

  .course-tab:first-child,
  .course-tab:last-child {
    border-radius: 0;
  }

  .course-panel {
    padding-top: 28px;
  }

  .course-panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .course-panel-header h3 {
    font-size: 30px;
  }

  .course-panel-header > p {
    max-width: none;
    font-size: 17px;
    text-align: left;
  }

  .course-summary {
    font-size: 16px;
  }

  .foundation-grid {
    gap: 42px;
  }

  .abilities-block {
    grid-template-columns: 1fr;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-grid > div {
    min-height: 120px;
  }

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

  .course-highlights span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .package-grid,
  .package-grid-compact,
  .quant-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 0;
  }

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

  .teacher-summary div {
    min-height: 70px;
    padding: 13px 15px;
  }

  .teacher-summary strong {
    font-size: 17px;
  }

  .teacher-summary div:nth-child(2) {
    border-right: 0;
  }

  .teacher-summary div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .lead-teacher {
    grid-template-columns: 1fr;
  }

  .lead-teacher-photo {
    height: 360px;
  }

  .lead-teacher-copy {
    padding: 30px 24px 34px;
  }

  .lead-teacher-copy h3 {
    font-size: 34px;
  }

  .lead-teacher-copy blockquote {
    font-size: 19px;
  }

  .teacher-grid {
    grid-template-columns: 1fr;
  }

  .teacher-photo {
    height: 330px;
  }

  .about-values {
    grid-template-columns: 1fr;
    margin-bottom: 46px;
  }

  .about-values article {
    min-height: 0;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-values article:last-child {
    border-bottom: 0;
  }

  .research-heading {
    align-items: flex-start;
  }

  .research-heading h3 {
    font-size: 32px;
  }

  .research-heading div > p:last-child {
    font-size: 16px;
  }

  .research-track {
    grid-auto-columns: 86%;
  }

  .research-card img {
    height: 200px;
  }

  .media-report-section {
    margin-top: 46px;
    padding-top: 42px;
  }

  .media-report-heading h3 {
    font-size: 28px;
  }

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

  .media-report-card,
  .media-report-card:first-child {
    grid-column: auto;
    min-height: 0;
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
  }

  .footer-inner > p,
  .footer-records {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .brand-wordmark strong {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-copy > p {
    font-size: 20px;
  }

  .section-heading h2,
  .ai-copy h2 {
    font-size: 30px;
  }

  .course-tab {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 15px;
  }

  .phone-frame,
  .phone-secondary,
  .phone-primary {
    height: 340px;
  }

  .lead-teacher-photo {
    height: 340px;
  }

  .teacher-photo {
    height: 310px;
  }
}

@media (max-width: 1180px) {
  .architecture-layout {
    gap: 34px;
  }

  .architecture-copy {
    max-width: none;
  }

  .architecture-copy h2 {
    max-width: 520px;
    font-size: 38px;
  }

  .architecture-map {
    width: 100%;
  }

  .course-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }

  .course-detail-copy h1 {
    font-size: 44px;
  }

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

  .quant-detail-grid .package-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 9px);
  }

  .strategy-package-grid .package-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 7px);
  }
}

@media (max-width: 980px) {
  .architecture-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .architecture-copy {
    max-width: 760px;
  }

  .architecture-copy h2 {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .architecture-layout {
    gap: 28px;
    margin-bottom: 0;
  }

  .architecture-copy h2 {
    font-size: 32px;
  }

  .architecture-lead {
    font-size: 16px;
  }

  .architecture-keypoints li {
    grid-template-columns: 76px 1fr;
  }

  .architecture-map {
    min-height: 0;
    padding: 20px 16px 16px;
  }

  .architecture-goal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  .architecture-goal strong {
    font-size: 17px;
    text-align: left;
  }

  .architecture-route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 18px;
  }

  .architecture-stage,
  .architecture-stage:nth-child(1),
  .architecture-stage:nth-child(2),
  .architecture-stage:nth-child(3) {
    min-height: 138px;
    transform: none;
  }

  .architecture-stage::after {
    display: none;
  }

  .architecture-support {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .architecture-base {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .method-node {
    min-height: 92px;
  }

  .method-node:last-child {
    grid-column: 1 / -1;
    min-height: 78px;
  }

  .course-overview-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stage-overview {
    padding-top: 6px;
  }

  .stage-overview h3 {
    font-size: 31px;
  }

  .stage-overview-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .stage-overview-actions .button {
    width: 100%;
  }

  .stage-slogan {
    font-size: 18px;
  }

  .stage-preview {
    padding: 22px 18px;
  }

  .stage-preview-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .stage-preview-list li {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px;
    padding: 10px 0;
  }

  .stage-preview-list small {
    grid-column: 2;
    text-align: left;
  }

  .course-detail-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 18px) 0 26px;
  }

  .course-detail-hero::before {
    background-position: right -210px bottom;
    background-size: 590px auto;
    opacity: 0.06;
  }

  .course-detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .breadcrumb {
    margin-bottom: 10px;
  }

  .course-detail-copy h1 {
    font-size: 36px;
  }

  .course-detail-slogan {
    font-size: 18px;
  }

  .course-detail-lead {
    font-size: 17px;
  }

  .course-scope-note .section-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .course-scope-note strong,
  .course-scope-note span {
    font-size: 15px;
  }

  .course-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .course-cart-panel {
    padding: 26px 22px 22px;
  }

  .course-cart-panel h2 {
    padding-right: 0;
    font-size: 24px;
  }

  .course-cart-actions {
    flex-direction: column;
  }

  .stage-visual {
    padding: 12px;
  }

  .stage-visual-head {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .stage-visual-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .stage-visual-item {
    display: flex;
    min-height: 64px;
    padding: 7px 6px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .stage-visual-item strong {
    font-size: 14px;
    line-height: 1.35;
  }

  .stage-visual-item small {
    display: none;
  }

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

  .course-fact {
    min-height: 98px;
    padding: 18px;
  }

  .course-fact:nth-child(2) {
    border-right: 0;
  }

  .course-fact:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stage-switcher {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 176px;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 12px 0;
    scroll-snap-type: x mandatory;
  }

  .stage-switcher a {
    min-height: 48px;
    scroll-snap-align: start;
  }

  .course-content-section {
    padding: 46px 0;
  }

  .course-detail-heading {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 24px;
  }

  .course-detail-heading h2 {
    font-size: 28px;
  }

  .course-detail-heading div > p {
    font-size: 17px;
  }

  .detail-two-column,
  .capability-grid,
  .detail-package-grid {
    grid-template-columns: 1fr;
  }

  .quant-detail-grid .package-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .strategy-package-grid .package-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .detail-two-column {
    gap: 44px;
  }

  .capability-card,
  .detail-package-grid .package-card {
    min-height: 0;
  }

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

  .course-service-flow > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .course-service-flow > div:last-child {
    border-bottom: 0;
  }

  .next-stage-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .next-stage-inner strong {
    font-size: 24px;
  }

  .next-stage-inner .button-secondary {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .architecture-route {
    grid-template-columns: 1fr;
  }

  .architecture-stage,
  .architecture-stage:nth-child(1),
  .architecture-stage:nth-child(2),
  .architecture-stage:nth-child(3) {
    min-height: 118px;
  }

  .course-detail-copy h1 {
    font-size: 34px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
