:root {
  --bg: #ffffff;
  --paper: #f8fafc;
  --paper-strong: #eef2ff;
  --accent-soft: #f5f3ff;
  --accent: #635bff;
  --accent-deep: #4f46e5;
  --success: #16a34a;
  --danger: #ef4444;
  --ink: #1a1a1a;
  --ink-strong: #111827;
  --text: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --line-strong: #d1d5db;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --violet-line: #d8b4fe;
  --shadow: 0 16px 36px rgb(0 0 0 / 0.08);
  --shadow-accent: 0 10px 24px rgb(99 91 255 / 0.24);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --site-max: 1264px;
  --gutter: 64px;
  --section-y: 72px;
  --header-h: 82px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

:focus-visible {
  outline: 3px solid rgb(99 91 255 / 0.34);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 14px var(--gutter);
  background: rgb(255 255 255 / 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--site-max), 100%);
  min-height: 54px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgb(229 231 235 / 0.9);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 16px 42px rgb(17 24 39 / 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
  line-height: 1;
}

.brand-mark,
.icon-box {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--accent);
  background: var(--paper-strong);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.brand-mark svg,
.icon-box svg {
  width: 20px;
  height: 20px;
}

svg use {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button svg {
  width: 17px;
  height: 17px;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 8px 22px rgb(17 24 39 / 0.05);
}

.button-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 14px;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  justify-self: end;
}

.menu-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgb(17 24 39 / 0.3);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 12px;
  right: 12px;
  left: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgb(17 24 39 / 0.24);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-nav {
  display: grid;
  gap: 2px;
  padding: 18px 0;
}

.mobile-nav a {
  min-height: 54px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
}

.section {
  background: #fff;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

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

.section-inner {
  width: min(var(--site-max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.motion-ready .motion-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.58s var(--ease-out-quint),
    transform 0.58s var(--ease-out-quint);
  transition-delay: calc(var(--motion-order, 0) * 55ms);
}

.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section .section-inner {
  min-height: 760px;
  padding-top: 48px;
  padding-bottom: 56px;
}

.hero-grid,
.two-column,
.price-layout,
.faq-layout,
.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.program-layout {
  grid-template-columns: 360px 410px minmax(0, 1fr);
  align-items: stretch;
  gap: 44px;
}

.price-layout {
  grid-template-columns: 560px minmax(0, 1fr);
  align-items: stretch;
  gap: 44px;
}

.faq-layout {
  grid-template-columns: 430px minmax(0, 1fr);
  align-items: start;
  gap: 44px;
}

.hero-copy {
  max-width: 640px;
}

.micro {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.micro::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 56px;
  font-weight: 780;
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: italic;
  font-weight: inherit;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 780;
  line-height: 1.08;
}

h3 {
  color: var(--ink-strong);
  font-size: 20px;
  font-weight: 760;
  line-height: 1.2;
}

.hero-lead,
.section-copy > p,
.section-head p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.42;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 1.45;
}

.fact-list,
.chip-list,
.clean-list,
.number-list,
.price-card ul,
.certificate-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.fact-list li {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.fact-list svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-note {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.ai-map {
  --hero-glow-x: 50%;
  --hero-glow-y: 42%;
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;

  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 656px;
  align-content: stretch;
  gap: 18px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.ai-map::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgb(99 91 255 / 0.075), rgb(99 91 255 / 0) 36%),
    radial-gradient(circle at calc(var(--hero-glow-x) + 12%) calc(var(--hero-glow-y) + 10%), rgb(22 163 74 / 0.04), rgb(22 163 74 / 0) 30%);
  opacity: 0.46;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.ai-map.is-pointer-active {
  box-shadow: 0 20px 48px rgb(99 91 255 / 0.1), var(--shadow);
}

.ai-map.is-pointer-active::before {
  opacity: 0.68;
}

.hero-lottie-layer {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  filter: blur(12px) saturate(1.1);
  mix-blend-mode: multiply;
  visibility: hidden;
}

.hero-lottie-layer svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ai-map.has-lottie {
  min-height: 656px;
}

.ai-map.has-lottie .hero-lottie-layer {
  opacity: 0.06;
  visibility: visible;
}

.map-glow {
  position: absolute;
  z-index: 0;
  width: 390px;
  height: 390px;
  border-radius: 999px;
  top: var(--hero-glow-y);
  left: var(--hero-glow-x);
  background: radial-gradient(circle, rgb(216 180 254 / 0.26) 0%, rgb(99 91 255 / 0.075) 45%, rgb(248 250 252 / 0) 74%);
  transform: translate(-50%, -50%);
  transition: top 0.12s ease-out, left 0.12s ease-out, opacity 0.2s ease;
}

.ai-map.is-pointer-active .map-glow {
  opacity: 0.58;
}

.map-center {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  min-height: 140px;
  place-items: center;
  align-content: center;
  gap: 9px;
  border: 1px solid var(--violet-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 34px rgb(99 91 255 / 0.1);
  text-align: center;
  pointer-events: none;
}

.map-center svg {
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.map-center strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
}

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

.map-node-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.map-node {
  position: relative;
  display: flex;
  width: auto;
  min-height: 96px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 24px rgb(17 24 39 / 0.04);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.map-node::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgb(99 91 255 / 0.13), rgb(255 255 255 / 0) 38%, rgb(22 163 74 / 0.1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.map-node > * {
  position: relative;
  z-index: 1;
}

.map-node:hover,
.map-node:focus-visible,
.map-node.is-active {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 16px 30px rgb(99 91 255 / 0.16);
  transform: translateY(-2px);
}

.map-node:hover::before,
.map-node:focus-visible::before,
.map-node.is-active::before {
  opacity: 1;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.map-node:hover .icon-box,
.map-node:focus-visible .icon-box,
.map-node.is-active .icon-box {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}

.map-node strong,
.case-card button strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.18;
}

.map-node small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.map-preview {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--dark);
  color: #fff;
  box-shadow: 0 18px 34px rgb(17 24 39 / 0.16);
  transform-origin: center top;
}

.ai-map.is-map-switching .map-preview {
  animation: mapPreviewSwitch 0.3s ease both;
}

.map-preview span,
.artifact-panel span,
.learning-screen span,
.desk-preview span,
.certificate-card span,
.course-example span {
  display: block;
  margin-bottom: 6px;
  color: #a5b4fc;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.map-preview strong {
  display: block;
  font-size: 15px;
  line-height: 1.32;
}

.map-controls {
  display: none;
}

@keyframes mapPreviewSwitch {
  0% {
    opacity: 0.72;
    transform: translateY(7px) scale(0.99);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panelRise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tagLift {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardSettle {
  0% {
    opacity: 0.72;
    transform: translateY(10px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lineGrow {
  0% {
    opacity: 0.36;
    transform: scaleX(0.18);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes cursorPulse {
  0%,
  46% {
    opacity: 1;
  }

  47%,
  100% {
    opacity: 0.22;
  }
}

@keyframes playBreath {
  0%,
  100% {
    box-shadow: 0 10px 24px rgb(99 91 255 / 0.2);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 16px 34px rgb(99 91 255 / 0.28);
    transform: scale(1.035);
  }
}

@keyframes softSweep {
  0% {
    transform: translateX(0);
  }

  45%,
  100% {
    transform: translateX(390%);
  }
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-copy {
  max-width: 560px;
}

.chip-list,
.clean-list,
.number-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.chip-list li,
.clean-list li,
.number-list li,
.price-card li,
.certificate-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
}

.chip-list li {
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #1f2937;
  font-weight: 650;
}

.clean-list li::before,
.price-card li::before,
.certificate-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
}

.number-list {
  counter-reset: item;
}

.number-list li {
  counter-increment: item;
}

.number-list li::before {
  content: counter(item);
  flex: 0 0 auto;
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 760;
}

.route-visual {
  min-height: 350px;
  padding: 18px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.segmented {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.segmented button {
  min-width: 76px;
  min-height: 38px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  transition:
    background 0.22s var(--ease-out-quart),
    color 0.22s var(--ease-out-quart),
    transform 0.22s var(--ease-out-quart);
}

.segmented button:hover,
.segmented button:focus-visible {
  transform: translateY(-1px);
}

.segmented button.is-active {
  background: var(--accent);
  color: #fff;
}

.route-panels {
  min-height: 260px;
  display: grid;
}

.chaos-panel,
.route-panel {
  grid-area: 1 / 1;
  display: grid;
  min-height: 260px;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 0.28s var(--ease-out-quart),
    transform 0.28s var(--ease-out-quart);
}

.chaos-panel.is-active,
.route-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chaos-panel.is-switching,
.route-panel.is-switching {
  animation: panelRise 0.34s var(--ease-out-quint) both;
}

.chaos-panel {
  align-content: start;
  background: #fff;
}

.chaos-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  font-size: 14px;
}

.chaos-flow span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-weight: 650;
}

.chaos-flow .chaos-start {
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 720;
}

.chaos-flow .chaos-lost {
  background: #fff7ed;
  color: #c2410c;
  font-weight: 720;
}

.chaos-flow .chaos-arrow {
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-weight: 400;
}

.chaos-panel.is-active .chaos-flow span {
  animation: tagLift 0.36s var(--ease-out-quint) both;
}

.chaos-panel.is-active .chaos-flow span:nth-child(2) { animation-delay: 40ms; }
.chaos-panel.is-active .chaos-flow span:nth-child(3) { animation-delay: 80ms; }
.chaos-panel.is-active .chaos-flow span:nth-child(4) { animation-delay: 120ms; }
.chaos-panel.is-active .chaos-flow span:nth-child(5) { animation-delay: 160ms; }
.chaos-panel.is-active .chaos-flow span:nth-child(6) { animation-delay: 200ms; }
.chaos-panel.is-active .chaos-flow span:nth-child(7) { animation-delay: 240ms; }
.chaos-panel.is-active .chaos-flow span:nth-child(8) { animation-delay: 280ms; }
.chaos-panel.is-active .chaos-flow span:nth-child(9) { animation-delay: 320ms; }

.chaos-search {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.chaos-search i {
  width: 2px;
  height: 28px;
  border-radius: 999px;
  background: var(--violet-line);
  animation: cursorPulse 1.1s steps(2) infinite;
}

.chaos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.chaos-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--paper);
  color: #374151;
  font-size: 14px;
  font-weight: 680;
}

.chaos-panel.is-active .chaos-tags span {
  animation: tagLift 0.36s var(--ease-out-quint) both;
}

.chaos-panel.is-active .chaos-tags span:nth-child(2) { animation-delay: 40ms; }
.chaos-panel.is-active .chaos-tags span:nth-child(3) { animation-delay: 80ms; }
.chaos-panel.is-active .chaos-tags span:nth-child(4) { animation-delay: 120ms; }
.chaos-panel.is-active .chaos-tags span:nth-child(5) { animation-delay: 160ms; }
.chaos-panel.is-active .chaos-tags span:nth-child(6) { animation-delay: 200ms; }

.chaos-panel p {
  margin: auto 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 14px;
  font-weight: 650;
}

.route-panel {
  align-content: start;
  background: var(--accent-soft);
}

.route-step,
.route-result {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 3px;
  min-height: 56px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  background: #fff;
}

.route-panel.is-active .route-step,
.route-panel.is-active .route-result {
  animation: panelRise 0.38s var(--ease-out-quint) both;
}

.route-panel.is-active .route-step:nth-child(2) { animation-delay: 55ms; }
.route-panel.is-active .route-step:nth-child(3) { animation-delay: 110ms; }
.route-panel.is-active .route-step:nth-child(4) { animation-delay: 165ms; }
.route-panel.is-active .route-result { animation-delay: 220ms; }

.route-step b {
  grid-row: span 2;
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.route-step span {
  color: #374151;
  font-size: 15px;
  font-weight: 700;
}

.route-step small {
  color: var(--muted);
  font-size: 12px;
}

.route-result {
  display: block;
  margin-top: 2px;
  background: var(--dark);
  color: #fff;
  font-weight: 760;
  text-align: center;
}

.course-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: stretch;
}

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

.course-step {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.course-step:hover,
.course-step.is-active {
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgb(99 91 255 / 0.12);
  transform: translateY(-2px);
}

.course-step span {
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 760;
}

.course-step strong {
  display: block;
  margin: 56px 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.16;
}

.course-step small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.32;
}

.course-example {
  display: grid;
  min-height: 240px;
}

.course-example article {
  grid-area: 1 / 1;
  display: block;
  padding: 24px;
  border-radius: 24px;
  background: var(--dark);
  color: #d1d5db;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.3s var(--ease-out-quart),
    transform 0.3s var(--ease-out-quart);
}

.course-example article.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.course-example article.is-switching {
  animation: panelRise 0.36s var(--ease-out-quint) both;
}

.course-example h3 {
  color: #fff;
}

.course-example p {
  color: #d1d5db;
}

.case-grid {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  gap: 18px 24px;
  align-items: stretch;
}

.case-card {
  display: contents;
}

.case-card > button {
  display: grid;
  width: 100%;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  text-align: left;
  box-shadow: 0 10px 22px rgb(17 24 39 / 0.03);
  transition:
    border-color 0.2s var(--ease-out-quart),
    background 0.2s var(--ease-out-quart),
    box-shadow 0.2s var(--ease-out-quart),
    transform 0.2s var(--ease-out-quart);
}

.case-card > button:hover,
.case-card > button:focus-visible,
.case-card.is-open > button {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 14px 28px rgb(99 91 255 / 0.11);
  transform: translateY(-1px);
}

.case-card button em {
  display: block;
  margin-top: 5px;
  color: var(--accent);
  font-style: normal;
  font-size: 12px;
  font-weight: 760;
}

.case-card > button > svg,
.program-item button svg,
.faq-item button svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform 0.18s ease;
}

.case-card.is-open > button > svg,
.program-item.is-open button svg,
.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.case-body {
  align-self: start;
  grid-column: 2;
  grid-row: 1 / span 6;
  padding: 0;
}

.case-body.is-switching,
.case-card.is-open .case-body {
  animation: panelRise 0.36s var(--ease-out-quint) both;
}

.js .case-card:not(.is-open) .case-body,
.js .program-item:not(.is-open) .program-panel,
.js .faq-item:not(.is-open) .faq-panel,
.js .teacher-card:not(.is-open) .teacher-detail {
  display: none;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  background: transparent;
}

.case-result-card {
  display: grid;
  min-height: 380px;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, var(--paper));
  box-shadow: var(--shadow);
}

.case-card.is-open .case-result-card {
  animation: cardSettle 0.42s var(--ease-out-quint) both;
}

.case-result-card .before-after span {
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.before-after span {
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

.case-mini-ui {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  background: var(--dark);
  color: #fff;
}

.case-mini-ui.visual {
  background: linear-gradient(135deg, #111827, #635bff);
}

.case-mini-ui.flow {
  background: linear-gradient(135deg, #111827, #1f2937);
}

.case-mini-ui b {
  font-size: 22px;
}

.case-mini-ui i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.18);
  transform-origin: left center;
}

.case-card.is-open .case-mini-ui i,
.learning-screen.is-active .task-card i,
.desk-preview.is-switching .desk-doc i {
  animation: lineGrow 0.46s var(--ease-out-quint) both;
}

.case-card.is-open .case-mini-ui i:nth-child(3),
.learning-screen.is-active .task-card i:nth-child(3),
.desk-preview.is-switching .desk-doc i:nth-child(3) {
  animation-delay: 70ms;
}

.case-card.is-open .case-mini-ui i:nth-child(4),
.learning-screen.is-active .task-card i:nth-child(4),
.desk-preview.is-switching .desk-doc i:nth-child(4) {
  animation-delay: 140ms;
}

.case-mini-ui i:nth-child(3) {
  width: 78%;
}

.case-mini-ui i:nth-child(4) {
  width: 58%;
}

.case-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.case-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-checks span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 12px;
  font-weight: 760;
}

.case-card.is-open .case-checks span {
  animation: tagLift 0.32s var(--ease-out-quart) both;
}

.case-card.is-open .case-checks span:nth-child(2) { animation-delay: 45ms; }
.case-card.is-open .case-checks span:nth-child(3) { animation-delay: 90ms; }

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgb(99 91 255 / 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgb(99 91 255 / 0.08), rgb(236 253 245 / 0.72)),
    var(--paper);
  overflow: hidden;
}

.case-study-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.case-kicker,
.teacher-role {
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
}

.case-study h3 {
  margin: 0;
  font-size: 34px;
}

.case-study p {
  margin: 0;
  color: var(--text);
}

.case-study-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.case-study-outputs span {
  padding: 8px 10px;
  border: 1px solid rgb(99 91 255 / 0.18);
  border-radius: 999px;
  background: rgb(248 250 252 / 0.78);
  color: #374151;
  font-size: 12px;
  font-weight: 760;
}

.case-note {
  max-width: 54ch;
  font-size: 13px;
}

.case-study-media {
  min-width: 0;
  margin: 0;
  border: 1px solid rgb(229 231 235 / 0.82);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: 0 18px 34px rgb(17 24 39 / 0.09);
  overflow: hidden;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.learning-carousel {
  display: grid;
  gap: 16px;
}

.learning-controls {
  display: flex;
  gap: 10px;
}

.learning-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 760;
  transition:
    background 0.2s var(--ease-out-quart),
    border-color 0.2s var(--ease-out-quart),
    color 0.2s var(--ease-out-quart),
    transform 0.2s var(--ease-out-quart),
    box-shadow 0.2s var(--ease-out-quart);
}

.learning-controls button:hover,
.learning-controls button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgb(17 24 39 / 0.08);
}

.learning-controls button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.learning-screens {
  display: grid;
}

.learning-screen {
  grid-area: 1 / 1;
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.26s var(--ease-out-quart),
    transform 0.26s var(--ease-out-quart);
}

.learning-screen.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.learning-screen.is-switching .learning-visual,
.learning-screen.is-active .learning-visual {
  animation: panelRise 0.38s var(--ease-out-quint) both;
}

.learning-screen span {
  color: var(--accent);
}

.learning-screen h3 {
  margin: 24px 0 12px;
  font-size: 26px;
}

.learning-screen p {
  color: var(--text);
}

.learning-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.learning-details span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #374151;
  font-size: 12px;
  font-weight: 760;
}

.learning-visual {
  display: grid;
  min-height: 160px;
  align-content: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    transform 0.24s var(--ease-out-quart),
    box-shadow 0.24s var(--ease-out-quart);
}

.learning-screen.is-active:hover .learning-visual {
  box-shadow: 0 16px 32px rgb(17 24 39 / 0.07);
  transform: translateY(-2px);
}

.video-card {
  grid-template-columns: auto minmax(0, 0.8fr) minmax(120px, 1fr);
  align-items: center;
  column-gap: 18px;
  background:
    linear-gradient(135deg, rgb(99 91 255 / 0.08), rgb(248 250 252 / 0.4)),
    #fff;
}

.video-card > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.video-script {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgb(99 91 255 / 0.14);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.74);
}

.video-script span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 780;
}

.video-script i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: var(--line-strong);
}

.video-script i:nth-of-type(2) {
  width: 78%;
}

.video-script i:nth-of-type(3) {
  width: 58%;
}

.play-dot {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: var(--shadow-accent);
  animation: playBreath 2.8s var(--ease-out-quart) infinite;
}

.play-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 18px;
  border: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-38%, -50%);
}

.learning-visual b {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

.learning-visual small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.task-card i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--line-strong);
  transform-origin: left center;
}

.task-card i:nth-child(3) {
  width: 78%;
}

.task-card i:nth-child(4) {
  width: 58%;
}

.feedback-card {
  background: var(--dark);
  color: #fff;
}

.feedback-card b,
.feedback-card small {
  color: #fff;
}

.feedback-card small {
  line-height: 1.45;
}

.project-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.project-card span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--accent);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
}

.learning-screen.is-active .project-card span {
  animation: tagLift 0.36s var(--ease-out-quart) both;
}

.learning-screen.is-active .project-card span:nth-child(2) { animation-delay: 65ms; }
.learning-screen.is-active .project-card span:nth-child(3) { animation-delay: 130ms; }

.program-accordion {
  display: grid;
  align-content: start;
  gap: 10px;
}

.program-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
  transition:
    background 0.24s var(--ease-out-quart),
    border-color 0.24s var(--ease-out-quart),
    transform 0.24s var(--ease-out-quart),
    box-shadow 0.24s var(--ease-out-quart);
}

.program-item.is-open {
  background: var(--paper-strong);
  border-color: rgb(99 91 255 / 0.22);
  box-shadow: 0 12px 24px rgb(99 91 255 / 0.08);
  transform: translateY(-1px);
}

.program-item button,
.faq-item button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  background: transparent;
  color: #1f2937;
  text-align: left;
  font-size: 15px;
  font-weight: 680;
}

.program-panel {
  padding: 0 16px 15px;
}

.program-item.is-open .program-panel {
  animation: panelRise 0.3s var(--ease-out-quart) both;
}

.program-panel p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.artifact-panel {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: var(--dark);
  color: #d1d5db;
  overflow: hidden;
}

.artifact-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -42% 8%;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(165 180 252 / 0.16), rgb(165 180 252 / 0) 66%);
  pointer-events: none;
}

.artifact-panel > * {
  position: relative;
  z-index: 1;
}

.artifact-panel.is-switching {
  animation: cardSettle 0.42s var(--ease-out-quint) both;
}

.artifact-panel h3 {
  color: #fff;
  font-size: 26px;
}

.artifact-panel p {
  color: #d1d5db;
}

.artifact-workspace {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.artifact-prompt,
.artifact-template,
.artifact-checklist {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
}

.artifact-prompt b {
  color: #fff;
  font-size: 18px;
}

.artifact-prompt span,
.artifact-template span,
.artifact-checklist span {
  color: #d1d5db;
  font-size: 13px;
}

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

.artifact-template span {
  display: grid;
  min-height: 38px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.07);
}

.artifact-checklist span {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
}

.artifact-checklist span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #a5b4fc;
}

.artifact-panel.is-switching .artifact-prompt,
.artifact-panel.is-switching .artifact-checklist span {
  animation: panelRise 0.34s var(--ease-out-quart) both;
}

.artifact-panel.is-switching .artifact-checklist span:nth-child(2) { animation-delay: 55ms; }
.artifact-panel.is-switching .artifact-checklist span:nth-child(3) { animation-delay: 110ms; }

.folder-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.folder-file {
  position: absolute;
  width: 290px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  text-align: left;
  font-size: 16px;
  font-weight: 760;
  box-shadow: 0 12px 26px rgb(17 24 39 / 0.08);
  transition:
    transform 0.22s var(--ease-out-quart),
    border-color 0.22s var(--ease-out-quart),
    box-shadow 0.22s var(--ease-out-quart);
}

.folder-file:hover,
.folder-file:focus-visible,
.folder-file.is-active {
  border-color: var(--accent);
  box-shadow: 0 18px 34px rgb(99 91 255 / 0.12);
  transform: translateY(-4px);
}

.file-one { top: 54px; left: 42px; background: var(--paper-strong); }
.file-two { top: 86px; right: 42px; background: var(--accent-soft); }
.file-three { bottom: 70px; left: 80px; background: #ecfdf5; }
.file-four { bottom: 42px; right: 62px; background: #fff7ed; }

.folder-preview {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}

.folder-preview.is-switching {
  animation: panelRise 0.28s var(--ease-out-quart) both;
}

.audience-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.audience-tabs {
  display: grid;
  gap: 10px;
}

.audience-tabs button {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: #374151;
  text-align: left;
  font-size: 15px;
  font-weight: 720;
  transition:
    background 0.22s var(--ease-out-quart),
    border-color 0.22s var(--ease-out-quart),
    box-shadow 0.22s var(--ease-out-quart),
    transform 0.22s var(--ease-out-quart);
}

.audience-tabs button:hover,
.audience-tabs button:focus-visible {
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgb(17 24 39 / 0.06);
}

.audience-tabs button.is-active {
  border-color: var(--accent);
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 14px 26px rgb(99 91 255 / 0.11);
}

.desk-preview {
  min-height: 380px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  overflow: hidden;
}

.desk-preview.is-switching h3,
.desk-preview.is-switching p,
.desk-preview.is-switching .desk-doc {
  animation: panelRise 0.36s var(--ease-out-quart) both;
}

.desk-preview.is-switching p { animation-delay: 40ms; }
.desk-preview.is-switching .desk-doc:nth-child(2) { animation-delay: 80ms; }
.desk-preview.is-switching .desk-doc:nth-child(3) { animation-delay: 130ms; }

.desk-preview span {
  color: var(--accent);
}

.desk-preview h3 {
  font-size: 30px;
}

.desk-preview p {
  max-width: 560px;
  color: var(--text);
  font-size: 18px;
}

.desk-items {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 32px;
}

.desk-doc {
  display: grid;
  gap: 10px;
  min-height: 112px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition:
    transform 0.22s var(--ease-out-quart),
    box-shadow 0.22s var(--ease-out-quart);
}

.desk-doc:hover {
  box-shadow: 0 14px 28px rgb(17 24 39 / 0.07);
  transform: translateY(-2px);
}

.desk-doc.primary {
  grid-row: span 2;
  min-height: 238px;
  background: #fff;
}

.desk-doc.accent {
  background: var(--paper-strong);
}

.desk-doc b {
  color: var(--ink);
  font-size: 16px;
}

.desk-doc i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--line-strong);
  transform-origin: left center;
}

.desk-doc i:nth-child(3) {
  width: 74%;
}

.desk-doc i:nth-child(4) {
  width: 52%;
}

.desk-doc.primary::after {
  content: "";
  align-self: end;
  width: 100%;
  min-height: 68px;
  margin-top: auto;
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(99 91 255 / 0.18), rgb(216 180 254 / 0.24));
}

.teacher-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 54px;
  align-items: start;
}

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

.teacher-card {
  min-height: 360px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition:
    border-color 0.22s var(--ease-out-quart),
    box-shadow 0.22s var(--ease-out-quart),
    transform 0.22s var(--ease-out-quart);
}

.teacher-card:hover,
.teacher-card:focus-within {
  border-color: rgb(99 91 255 / 0.3);
  box-shadow: 0 18px 34px rgb(17 24 39 / 0.08);
  transform: translateY(-3px);
}

.teacher-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 16px;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.22s var(--ease-out-quart);
}

.teacher-card:hover .teacher-photo,
.teacher-card:focus-within .teacher-photo {
  transform: scale(1.02);
}

.portrait {
  display: flex;
  height: 120px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent);
  overflow: hidden;
  transition: background 0.22s var(--ease-out-quart), transform 0.22s var(--ease-out-quart);
}

.teacher-card:hover .portrait,
.teacher-card:focus-within .portrait {
  background: var(--paper-strong);
  transform: translateY(-1px);
}

.portrait span {
  color: var(--ink);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 26px;
  font-weight: 760;
}

.portrait svg {
  width: 36px;
  height: 36px;
}

.teacher-card p,
.teacher-detail {
  color: var(--text);
  font-size: 14px;
}

.teacher-role {
  display: block;
  margin-bottom: 6px;
}

.teacher-card button {
  min-height: 44px;
  margin: 8px 0 12px;
  padding: 10px 0;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 760;
  text-align: left;
}

.teacher-detail {
  padding: 14px;
  border-radius: 16px;
  background: var(--paper);
}

.teacher-detail.is-switching,
.teacher-card.is-open .teacher-detail {
  animation: panelRise 0.3s var(--ease-out-quart) both;
}

.teacher-feedback-card {
  grid-column: 1 / -1;
  padding: 20px;
  border-radius: 22px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.teacher-feedback-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(165 180 252 / 0.18), rgb(165 180 252 / 0));
  pointer-events: none;
}

.teacher-feedback-card span {
  display: block;
  margin-bottom: 10px;
  color: #a5b4fc;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.teacher-feedback-card p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.42;
}

.reviews {
  display: grid;
  gap: 18px;
}

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

.review-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.review-card.is-active {
  border-color: var(--accent);
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
  line-height: 1.38;
}

.review-card p {
  display: grid;
  gap: 4px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.review-card p strong {
  color: var(--ink);
  font-size: 15px;
}

.review-card p span {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.slider-controls .icon-button:first-child svg {
  transform: rotate(90deg);
}

.slider-controls .icon-button:last-child svg {
  transform: rotate(-90deg);
}

.slider-dots {
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line-strong);
}

.slider-dots button.is-active {
  background: var(--accent);
}

.price-card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
  background: var(--dark);
  color: #d1d5db;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -38% auto auto -18%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(165 180 252 / 0.16), rgb(165 180 252 / 0));
  pointer-events: none;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card h2 {
  color: #fff;
}

.price-card > p {
  color: #d1d5db;
}

.cohort-limit {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 18px 0 8px;
  padding: 16px;
  border: 1px solid rgb(165 180 252 / 0.35);
  border-radius: 18px;
  background: rgb(99 91 255 / 0.16);
  overflow: hidden;
}

.cohort-limit::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -34%;
  width: 34%;
  background: linear-gradient(90deg, rgb(255 255 255 / 0), rgb(255 255 255 / 0.12), rgb(255 255 255 / 0));
  animation: softSweep 4.8s var(--ease-out-quart) infinite;
  pointer-events: none;
}

.cohort-limit strong,
.cohort-limit span {
  position: relative;
  z-index: 1;
}

.cohort-limit strong {
  color: #fff;
  font-size: 18px;
}

.cohort-limit span {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.42;
}

.price-value {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 58px;
  font-weight: 780;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.price-card li {
  color: #e5e7eb;
}

.price-visuals {
  display: grid;
  gap: 18px;
}

.certificate-card,
.calendar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition:
    transform 0.22s var(--ease-out-quart),
    box-shadow 0.22s var(--ease-out-quart),
    border-color 0.22s var(--ease-out-quart);
}

.certificate-card:hover,
.certificate-card:focus-visible,
.calendar-card:hover,
.calendar-card:focus-within {
  border-color: rgb(99 91 255 / 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.certificate-card span {
  color: var(--accent);
}

.certificate-preview {
  display: grid;
  gap: 10px;
  margin: 18px 0 4px;
  padding: 16px;
  border: 1px solid rgb(99 91 255 / 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgb(99 91 255 / 0.08), rgb(248 250 252 / 0.92)),
    var(--bg);
}

.certificate-topline,
.certificate-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.certificate-topline span,
.certificate-meta span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.certificate-preview strong {
  color: var(--ink);
  font-size: 18px;
}

.certificate-preview p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.certificate-qr {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 5px;
  width: max-content;
  padding: 8px;
  border-radius: 10px;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line);
}

.certificate-qr i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--ink);
}

.certificate-card ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.certificate-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.calendar-card p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 14px;
}

.calendar-card div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.calendar-card span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border-radius: 16px;
  background: var(--paper);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition:
    background 0.2s var(--ease-out-quart),
    color 0.2s var(--ease-out-quart),
    transform 0.2s var(--ease-out-quart);
}

.calendar-card:hover span {
  background: var(--paper-strong);
  color: var(--ink);
}

.calendar-card:hover span:nth-child(2),
.calendar-card:hover span:nth-child(3) {
  transform: translateY(-2px);
}

.lead-layout {
  align-items: start;
}

.lead-form-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #374151;
  font-size: 14px;
  font-weight: 720;
}

.field input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px 16px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  outline: none;
}

.field input:focus {
  border-color: #a5b4fc;
  box-shadow: 0 0 0 4px rgb(99 91 255 / 0.12);
}

.field.is-error input {
  border-color: var(--danger);
}

.field-error,
.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--danger);
  font-size: 13px;
}

.consent {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.form-note {
  margin: -4px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}

.form-submit[disabled] {
  opacity: 0.72;
}

.form-success {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgb(22 163 74 / 0.25);
  border-radius: 16px;
  background: #ecfdf5;
  color: #166534;
}

.js .lead-form-card.is-success .field,
.js .lead-form-card.is-success .form-submit,
.js .lead-form-card.is-success .consent,
.js .lead-form-card.is-success .form-note,
.js .lead-form-card.is-success .form-status {
  display: none;
}

.ask-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: var(--dark);
  color: #fff;
}

.ask-card span {
  color: #d1d5db;
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  min-height: 58px;
  font-size: 16px;
}

.faq-panel {
  padding: 0 18px 16px;
}

.faq-panel p {
  margin: 0;
  color: var(--muted);
}

.final-section {
  overflow: hidden;
}

.final-map {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  overflow: hidden;
}

.final-map::before {
  content: "";
  position: absolute;
  inset: 52px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(216 180 254 / 0.45), rgb(248 250 252 / 0));
}

.final-map .map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  min-height: 140px;
  transform: translate(-50%, -50%);
}

.final-map .map-center span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.final-map > span {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 160px;
  min-height: 76px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #1f2937;
  font-weight: 720;
}

.final-map > span:nth-of-type(1) { top: 54px; left: 50px; }
.final-map > span:nth-of-type(2) { top: 60px; right: 60px; }
.final-map > span:nth-of-type(3) { bottom: 58px; left: 52px; }
.final-map > span:nth-of-type(4) { bottom: 50px; right: 76px; }
.final-map > span:nth-of-type(5) { top: 168px; right: 34px; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-inner > a:last-child {
  color: var(--accent);
  font-weight: 760;
}

.sticky-cta {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 16px;
  display: none;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.sticky-cta.is-hidden {
  display: none;
}

body.is-menu-open .sticky-cta {
  display: none;
}

@media (max-width: 1280px) {
  .program-layout {
    grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  }

  .program-layout .artifact-panel {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .program-layout .artifact-workspace {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: start;
  }

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

@media (max-width: 1180px) {
  :root {
    --gutter: 44px;
    --section-y: 52px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-section .section-inner {
    min-height: 650px;
  }

  .hero-grid {
    gap: 34px;
  }

  .ai-map {
    min-height: 520px;
  }

  .ai-map.has-lottie {
    min-height: 520px;
  }

  .program-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 0.9fr);
  }

  .program-layout .artifact-panel {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .program-accordion > .artifact-panel {
    margin: 2px 0 12px;
  }

  .price-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .ai-map {
    min-height: auto;
    padding: 22px;
  }

  .map-glow,
  .ai-map > .map-center {
    display: none;
  }

  .map-node-grid {
    position: static;
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: minmax(250px, 72%);
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .map-node-grid::-webkit-scrollbar,
  .review-track::-webkit-scrollbar {
    display: none;
  }

  .map-node {
    position: static;
    width: auto;
    min-height: 108px;
    scroll-snap-align: start;
  }

  .map-preview {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .map-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
  }

  .map-controls .icon-button:first-child svg {
    transform: rotate(90deg);
  }

  .map-controls .icon-button:last-child svg {
    transform: rotate(-90deg);
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 36px;
    --section-y: 44px;
    --header-h: 76px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    grid-column: 3;
    justify-self: end;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero-grid,
  .two-column,
  .price-layout,
  .faq-layout,
  .program-layout,
  .teacher-layout,
  .audience-layout,
  .course-tabs {
    grid-template-columns: 1fr;
  }

  .hero-section .section-inner {
    min-height: auto;
  }

  .hero-copy {
    max-width: 680px;
  }

  h1 {
    max-width: 14ch;
    font-size: 42px;
  }

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

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

  .course-step strong {
    margin-top: 32px;
  }

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

  .case-study {
    grid-template-columns: 1fr;
  }

  .case-card {
    display: block;
  }

  .case-card + .case-card {
    margin-top: 12px;
  }

  .case-body {
    grid-column: auto;
    grid-row: auto;
    margin-top: 12px;
  }

  .case-result-card {
    min-height: auto;
  }

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

  .review-track {
    grid-template-columns: none;
    grid-auto-columns: minmax(280px, 82%);
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .review-card {
    scroll-snap-align: start;
  }

  .folder-visual {
    min-height: 500px;
  }

  .reverse-mobile .folder-visual {
    order: 2;
  }

  .price-card {
    order: 1;
  }

  .price-visuals {
    order: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --section-y: 34px;
    --header-h: 72px;
  }

  html {
    scroll-padding-bottom: 88px;
  }

  body {
    padding-bottom: 84px;
  }

  .site-header {
    padding: 10px var(--gutter);
  }

  .header-inner {
    min-height: 50px;
    padding: 8px 8px 8px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .section-inner,
  .hero-section .section-inner {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .hero-grid,
  .two-column,
  .price-layout,
  .faq-layout,
  .program-layout,
  .teacher-layout,
  .audience-layout,
  .course-tabs {
    gap: 24px;
  }

  .micro {
    margin-bottom: 18px;
    font-size: 10px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  h3 {
    font-size: 19px;
  }

  .hero-lead,
  .section-copy > p,
  .section-head p,
  .desk-preview p {
    font-size: 16px;
    line-height: 1.44;
  }

  .fact-list {
    display: grid;
    gap: 10px;
  }

  .fact-list li {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 15px;
  }

  .ai-map {
    padding: 14px;
    border-radius: 22px;
  }

  .map-node-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow: visible;
    gap: 10px;
    scroll-snap-type: none;
  }

  .map-node {
    min-height: 74px;
    padding: 12px;
    scroll-snap-align: none;
  }

  .map-node:nth-child(n + 5) {
    display: none;
  }

  .map-node .icon-box {
    width: 44px;
    height: 44px;
  }

  .map-node strong {
    font-size: 17px;
  }

  .map-node small {
    font-size: 13px;
  }

  .map-preview {
    border-radius: 16px;
    margin-top: 12px;
  }

  .map-preview strong {
    font-size: 16px;
  }

  .map-controls {
    display: none;
  }

  .route-visual,
  .desk-preview,
  .lead-form-card,
  .price-card,
  .certificate-card,
  .calendar-card,
  .artifact-panel,
  .folder-visual,
  .final-map {
    border-radius: 22px;
  }

  .route-panels,
  .chaos-panel,
  .route-panel {
    min-height: 242px;
  }

  .course-step-list {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 14px;
    padding-bottom: 4px;
  }

  .course-step {
    width: 100%;
    flex: none;
    scroll-snap-align: none;
  }

  .case-card > button {
    min-height: 96px;
  }

  .case-result-card {
    padding: 18px;
  }

  .case-study {
    padding: 18px;
    border-radius: 22px;
  }

  .case-study h3 {
    font-size: 26px;
  }

  .case-study-media {
    border-radius: 18px;
  }

  .case-study-media img {
    min-height: 210px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .case-mini-ui {
    min-height: 140px;
  }

  .learning-screen {
    min-height: auto;
  }

  .learning-screen h3 {
    margin-top: 18px;
    font-size: 23px;
  }

  .learning-visual {
    min-height: 132px;
  }

  .video-card {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
  }

  .video-script {
    grid-column: 1 / -1;
  }

  .play-dot {
    width: 56px;
    height: 56px;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .program-layout .artifact-panel {
    min-height: auto;
  }

  .program-accordion > .artifact-panel {
    margin: -2px 0 12px;
    padding: 20px;
  }

  .program-accordion > .artifact-panel h3 {
    font-size: 23px;
  }

  .program-accordion > .artifact-panel .artifact-workspace {
    margin-top: 20px;
  }

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

  .folder-visual {
    min-height: 470px;
  }

  .folder-file {
    width: 230px;
    min-height: 142px;
    font-size: 14px;
  }

  .file-one { top: 34px; left: 18px; }
  .file-two { top: 82px; right: 18px; }
  .file-three { bottom: 118px; left: 28px; }
  .file-four { bottom: 72px; right: 20px; }

  .audience-tabs {
    display: grid;
    overflow: visible;
    gap: 10px;
  }

  .audience-tabs button {
    width: 100%;
    flex: none;
    scroll-snap-align: none;
  }

  .audience-tabs > .desk-preview {
    margin: -2px 0 12px;
  }

  .desk-preview {
    min-height: 0;
    padding: 18px;
  }

  .desk-preview h3 {
    font-size: 24px;
  }

  .desk-items {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .desk-doc {
    min-height: 76px;
    padding: 14px;
  }

  .desk-doc.primary {
    grid-row: auto;
    min-height: 112px;
  }

  .desk-doc.primary::after {
    min-height: 42px;
  }

  .teacher-grid {
    gap: 14px;
  }

  .teacher-card {
    min-height: auto;
  }

  .review-track {
    grid-template-columns: none;
    grid-auto-columns: minmax(300px, calc(100vw - 64px));
    gap: 12px;
    padding: 0 2px 4px;
  }

  .review-card {
    min-height: 260px;
    padding: 20px;
    border-radius: 20px;
  }

  blockquote {
    font-size: 16px;
    font-weight: 650;
    line-height: 1.42;
  }

  .review-card p {
    margin-top: 18px;
    font-size: 14px;
  }

  .price-card {
    padding: 24px;
  }

  .price-value {
    font-size: 44px;
  }

  .calendar-card div {
    grid-template-columns: 1fr;
  }

  .lead-form-card {
    padding: 20px;
    background: var(--dark);
    border-color: var(--dark);
  }

  .lead-form-card label,
  .lead-form-card .consent,
  .lead-form-card .form-note {
    color: #d1d5db;
  }

  .lead-form-card .field-error,
  .lead-form-card .form-status {
    color: #fca5a5;
  }

  .ask-card {
    margin-top: 18px;
  }

  .faq-item button {
    align-items: flex-start;
  }

  .final-map {
    min-height: 360px;
  }

  .final-map .map-center {
    width: 210px;
  }

  .final-map > span {
    min-width: 118px;
    min-height: 58px;
    font-size: 13px;
  }

  .final-map > span:nth-of-type(1) { top: 32px; left: 22px; }
  .final-map > span:nth-of-type(2) { top: 38px; right: 20px; }
  .final-map > span:nth-of-type(3) { bottom: 38px; left: 20px; }
  .final-map > span:nth-of-type(4) { bottom: 32px; right: 20px; }
  .final-map > span:nth-of-type(5) { top: 150px; right: 12px; }

  .footer-inner {
    display: grid;
    gap: 12px;
  }

  .sticky-cta {
    display: block;
  }

  .sticky-cta .button {
    min-height: 56px;
    border: 1px solid rgb(255 255 255 / 0.48);
    box-shadow: 0 16px 34px rgb(99 91 255 / 0.34);
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  .course-step,
  .case-card {
    flex-basis: auto;
  }

  .folder-file {
    width: 216px;
  }

  .price-value {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
