/*--------------------------------------------------------------
# Program Tour Page
--------------------------------------------------------------*/
body.program-page {
  background: #fff;
  color: #1b2559;
}

.program-page .main {
  padding-top: 72px;
}

.program-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.program-section {
  padding: 120px 0;
}

.program-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #4318ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Reveal */
.program-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.program-section.is-visible .program-reveal.is-shown,
.program-reveal.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.program-bento-card.program-reveal,
.program-section.is-visible .program-bento-card.program-reveal.is-shown,
.program-bento-card.program-reveal.is-shown {
  transform: none;
  transition: opacity 0.5s ease-out, transform 0.25s ease, box-shadow 0.25s ease;
}

.program-bento-card:hover,
a.program-bento-card:hover,
.program-bento-card.program-reveal.is-shown:hover,
a.program-bento-card.program-reveal.is-shown:hover,
.program-section.is-visible .program-bento-card.program-reveal.is-shown:hover,
.program-section.is-visible a.program-bento-card.program-reveal.is-shown:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(27, 37, 89, 0.14);
}

.program-reveal--delay {
  transition-delay: 0.1s;
}

/* Hero */
.program-hero {
  padding: 96px 0 64px;
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}

.program-hero-inner {
  max-width: 560px;
}

.program-hero-inner h1 {
  margin: 0 0 20px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.program-hero-inner p {
  margin: 0 0 32px;
  color: #707eae;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

/* Buttons */
.program-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.program-btn--primary {
  background: #4318ff;
  color: #fff;
  box-shadow: 0 12px 32px rgba(67, 24, 255, 0.18);
}

.program-btn--primary:hover {
  background: #5831fb;
  color: #fff;
}

.program-btn--ghost {
  background: #fff;
  color: #4318ff;
  border: 1px solid rgba(67, 24, 255, 0.18);
}

.program-btn--ghost:hover {
  background: #f4f7fe;
  color: #4318ff;
}

.program-btn:active {
  transform: scale(0.98);
}

/* Experience Section */
.program-experience {
  padding: 64px 0 0;
  background: #f2f4f6;
}

.program-experience-head {
  max-width: 480px;
  margin: 0 auto 40px;
  text-align: center;
}

.program-experience-head h2 {
  margin: 0 0 14px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.program-experience-head p {
  margin: 0;
  color: #707eae;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  word-break: keep-all;
}

/* Tabs — match support-guide-tabs (pill chips) */
.program-tabs-wrap {
  margin-bottom: 28px;
  margin-left: -24px;
  margin-right: -24px;
  padding: 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.program-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.program-tabs {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 10px;
  width: 100%;
  padding-bottom: 4px;
}

.program-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #6b7684;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.program-tab:hover {
  color: #333d4b;
  background: rgba(255, 255, 255, 0.6);
}

.program-tab.is-active {
  background: #fff;
  color: #191f28;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.program-tab:focus-visible {
  outline: 2px solid #5831fb;
  outline-offset: 2px;
}

/* Panels */
.program-panels {
  position: relative;
}

.program-panel {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.program-panel.is-active {
  display: flex;
  animation: programPanelIn 0.4s ease-out;
}

@keyframes programPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Card (split) */
.program-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(27, 37, 89, 0.06);
}

.program-feature-visual {
  position: relative;
  overflow: hidden;
  background: #e8ebf0;
}

.program-feature-visual .program-visual {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.program-feature-visual .program-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.program-feature-visual .program-visual--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.program-feature-visual .program-visual--mobile img {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.program-panel[data-panel="teacher"] > .program-feature-card .program-feature-visual .program-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-panel[data-panel="teacher"] > .program-feature-card .program-feature-visual .program-visual img {
  width: 60%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.program-feature-widget {
  position: absolute;
  left: 24px;
  bottom: 24px;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(27, 37, 89, 0.12);
}

.program-feature-widget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.program-feature-widget-row + .program-feature-widget-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f0f2f5;
}

.program-feature-widget-label {
  color: #707eae;
  font-size: 0.75rem;
  font-weight: 600;
}

.program-feature-widget-value {
  font-size: 0.8125rem;
  font-weight: 700;
}

.program-feature-widget-value--up {
  color: #4318ff;
}

.program-feature-widget-value--down {
  color: #e5484d;
}

.program-feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  background: #1b2559;
}

.program-feature-panel h3 {
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.program-feature-panel .program-card-link {
  color: rgba(255, 255, 255, 0.72);
}

.program-bento-card .program-card-link {
  color: #707eae;
}

.program-bento-card .program-card-link:hover {
  color: #4318ff;
}

.program-bento-card--dark .program-card-link {
  color: rgba(255, 255, 255, 0.72);
}

.program-bento-card--dark .program-card-link:hover {
  color: #fff;
}

/* Bento Grid */
.program-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.program-bento-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(27, 37, 89, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.program-bento-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.program-bento-card:hover,
a.program-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(27, 37, 89, 0.14);
}

.program-bento-card--full {
  grid-column: 1 / -1;
  min-height: 240px;
  flex-direction: row;
}

.program-bento-card--full .program-bento-card-copy {
  flex: 1;
  padding: 32px;
}

.program-bento-card--full .program-visual--bento {
  flex: 1;
  max-width: 50%;
}

.program-bento-card--dark {
  background: #2d3748;
}

.program-bento-card-copy {
  padding: 28px 28px 16px;
}

.program-bento-card-copy h4 {
  margin: 0 0 8px;
  color: #1b2559;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.program-bento-card--dark .program-bento-card-copy h4 {
  color: #fff;
}

.program-bento-card-copy p {
  margin: 0 0 12px;
  color: #707eae;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  word-break: keep-all;
}

.program-bento-card--dark .program-bento-card-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.program-visual--bento {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 140px;
  padding: 0 16px 0;
  overflow: hidden;
}

.program-visual--bento img {
  display: block;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  object-position: bottom center;
}

.program-visual--mobile img {
  max-width: 140px;
  max-height: 200px;
  border-radius: 16px;
}

.program-bento-card--full .program-visual--bento img {
  max-height: 220px;
}

.program-visual--bento-lg {
  min-height: 200px;
  padding: 0 8px 0;
}

.program-visual--bento-lg img {
  width: auto;
  max-width: 220px;
  max-height: 300px;
}

.program-visual--phone {
  align-items: center;
  padding-bottom: 8px;
}

.program-phone-frame {
  position: relative;
  width: min(160px, 42%);
  padding: 8px;
  border-radius: 28px;
  background: #191f28;
  box-shadow: 0 16px 32px rgba(25, 31, 40, 0.18);
}

.program-bento-card--full .program-phone-frame {
  width: min(180px, 28%);
}

.program-phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 56px;
  height: 14px;
  border-radius: 0 0 10px 10px;
  background: #191f28;
  transform: translateX(-50%);
}

.program-phone-screen {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.program-phone-screen img {
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  box-shadow: none;
}

.program-visual--mobile.program-visual--phone {
  padding-bottom: 0;
}

.program-visual--mobile .program-phone-frame {
  width: min(140px, 100%);
}

.program-visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #707eae;
  font-size: 0.875rem;
  font-weight: 600;
}

.program-tour-embed {
  margin-top: 64px;
  padding: 64px 0 120px;
  background: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* Tour — scroll feature intro */
.program-tour {
  padding: 120px 0 80px;
  background: #fff;
}

.program-category {
  display: inline-block;
  margin-bottom: 16px;
  color: #4318ff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.program-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: #4318ff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.program-text-link--muted {
  color: #707eae;
}

.program-text-link--muted:hover {
  color: #4318ff;
  gap: 10px;
}

/* Tour tabs — underline style */
.program-tour-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 64px;
  border-bottom: 1px solid #eef1f6;
}

.program-tour-tab {
  position: relative;
  padding: 0 4px 16px;
  border: none;
  background: transparent;
  color: #a3aed0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.25s ease;
}

.program-tour-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #4318ff;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.program-tour-tab:hover {
  color: #4318ff;
}

.program-tour-tab.is-active {
  color: #4318ff;
}

.program-tour-tab.is-active::after {
  transform: scaleX(1);
}

.program-tour-panels {
  position: relative;
}

.program-tour-panel {
  display: none;
}

.program-tour-panel.is-active {
  display: block;
}

/* Tour Hero 6:4 */
.program-tour-hero {
  padding-bottom: 120px;
}

.program-tour-hero-row {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 48px 56px;
  align-items: center;
}

.program-tour-hero-copy h2 {
  margin: 0 0 20px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.program-tour-hero-copy p {
  margin: 0;
  color: #707eae;
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.program-tour-hero-copy .program-btn {
  margin-top: 32px;
}

/* Showcase */
.program-showcase {
  margin: 0;
}

.program-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.program-showcase--mobile img {
  width: auto;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 28px;
}

.program-showcase--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-radius: 20px;
  background: #f4f7fe;
  color: #707eae;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Parent scrolly — fixed phone, swapping screens */
.program-tour-embed--parent-scrolly .program-tour-hero {
  padding-bottom: 48px;
}

.program-tour-hero-row--solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: 640px;
}

.program-parent-scrolly {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.program-parent-scrolly-steps {
  padding-bottom: 12vh;
}

.program-parent-scrolly-step {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}

.program-parent-scrolly-step-num {
  display: inline-block;
  margin-bottom: 12px;
  color: #4318ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.program-parent-scrolly-visual {
  position: sticky;
  top: 96px;
  display: flex;
  justify-content: center;
  overflow: visible;
  padding: 24px 0 48px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.program-parent-phone {
  width: 100%;
  display: flex;
  justify-content: center;
}

.program-parent-phone-frame {
  width: min(280px, 100%);
  padding: 12px;
  border-radius: 40px;
  box-shadow: 0 24px 48px rgba(25, 31, 40, 0.14);
}

.program-parent-phone-frame .program-phone-notch {
  top: 18px;
  width: 88px;
  height: 24px;
  border-radius: 14px;
}

.program-parent-phone-frame .program-phone-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  background: #111;
}

.program-parent-phone-frame .program-phone-screen img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.45s ease;
  border-radius: 0;
  box-shadow: none;
}

.program-parent-phone-frame .program-phone-screen img.is-active {
  opacity: 1;
  z-index: 1;
}

/* Tour features — varied story layouts */
.program-tour-features {
  display: flex;
  flex-direction: column;
}

.program-tour-story {
  padding: 100px 0;
  border-top: 1px solid #f0f2f5;
}

.program-tour-story--stats {
  background: #fafbfd;
}

.program-tour-story-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.program-tour-story-copy {
  max-width: 520px;
}

.program-tour-story--stack .program-tour-story-copy {
  margin-bottom: 48px;
}

.program-tour-story-title {
  margin: 0 0 16px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.program-tour-story-desc {
  margin: 0;
  color: #707eae;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.program-tour-story-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  border: 1px solid #eef1f6;
  background: #f8f9fb;
  box-shadow: 0 20px 48px rgba(27, 37, 89, 0.08);
}

.program-tour-story-media img {
  display: block;
  width: 100%;
  height: auto;
}

.program-tour-story-media.program-showcase--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: linear-gradient(180deg, #f4f7fe 0%, #f8f9fb 100%);
}

.program-tour-story-media.program-showcase--mobile img {
  width: auto;
  max-width: 180px;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(27, 37, 89, 0.12);
}

.program-tour-story-media.program-showcase--mobile.program-showcase--attendance {
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  padding: 36px 24px 0;
  max-height: min(440px, 62vh);
}

.program-tour-story-media.program-showcase--mobile.program-showcase--attendance img {
  max-width: 300px;
  width: min(300px, 72vw);
  height: auto;
  object-fit: cover;
  object-position: top center;
  margin-bottom: -52px;
  border-radius: 32px 32px 0 0;
}

.program-visual--bento.program-visual--attendance-mobile {
  align-items: flex-start;
  justify-content: center;
  padding: 8px 12px 0;
  max-height: 290px;
}

.program-visual--bento.program-visual--attendance-mobile img {
  width: auto;
  max-width: 210px;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  margin-bottom: -36px;
  border-radius: 20px 20px 0 0;
}

.program-visual--bento.program-visual--chat-mobile {
  align-items: flex-start;
  justify-content: center;
  padding: 8px 12px 0;
  max-height: 300px;
  overflow: hidden;
}

.program-visual--bento.program-visual--chat-mobile img {
  width: auto;
  max-width: 240px;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  margin-bottom: -44px;
  border-radius: 20px 20px 0 0;
}

.program-visual--bento.program-visual--alim-mobile {
  align-items: flex-start;
  justify-content: center;
  padding: 8px 12px 0;
  max-height: 300px;
  overflow: hidden;
}

.program-visual--bento.program-visual--alim-mobile img {
  width: auto;
  max-width: 240px;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  margin-bottom: -44px;
  border-radius: 20px 20px 0 0;
}

.program-tour-story-media--compact {
  box-shadow: 0 12px 32px rgba(27, 37, 89, 0.06);
}

.program-tour-story-steps-media .program-tour-story-media--phone {
  max-width: 220px;
  padding: 24px 16px;
  background: linear-gradient(180deg, #f4f7fe 0%, #f8f9fb 100%);
}

.program-tour-story-steps-media .program-tour-story-media--phone img {
  width: auto;
  max-width: 30%;
  margin: 0 auto;
  border-radius: 20px;
}

.program-tour-story-media--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: linear-gradient(180deg, #f4f7fe 0%, #f8f9fb 100%);
  box-shadow: 0 12px 32px rgba(27, 37, 89, 0.06);
}

.program-tour-story-media--brand img {
  width: auto;
  max-width: 220px;
}

.program-tour-media-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 37, 89, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Split */
.program-tour-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.program-tour-story-split .program-tour-story-copy {
  max-width: none;
  margin: 0;
}

/* Duo cards */
.program-tour-story-duo {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.program-tour-story-duo-card {
  border-radius: 24px;
  border: 1px solid #eef1f6;
  background: #fff;
  box-shadow: 0 12px 36px rgba(27, 37, 89, 0.06);
  overflow: hidden;
}

.program-tour-story-duo-card--visual {
  padding: 28px 28px 0;
  background: linear-gradient(180deg, #f4f7fe 0%, #fff 100%);
}

.program-tour-story-duo-card--visual .program-tour-story-media {
  border: none;
  box-shadow: none;
  background: transparent;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding-bottom: 28px;
}

.program-tour-story-duo-card--visual .program-tour-story-media img {
  width: auto;
  max-width: min(220px, 72%);
}

.program-tour-story-duo-card--copy {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-tour-story-duo-title {
  margin: 0 0 20px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.program-tour-story-duo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-tour-story-duo-list li {
  position: relative;
  padding-left: 22px;
  color: #707eae;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
}

.program-tour-story-duo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4318ff;
}

/* Trio cards */
.program-tour-story-trio-head .program-tour-story-copy {
  margin-bottom: 40px;
}

.program-tour-story-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-tour-story-trio-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid #eef1f6;
  background: #fafbfd;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.program-tour-story-trio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27, 37, 89, 0.08);
}

.program-tour-story-trio-num {
  display: inline-block;
  margin-bottom: 16px;
  color: #4318ff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.program-tour-story-trio-card h4 {
  margin: 0 0 10px;
  color: #1b2559;
  font-size: 1.0625rem;
  font-weight: 700;
}

.program-tour-story-trio-card p {
  margin: 0;
  color: #707eae;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Device mockup */
.program-tour-story-device {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.program-tour-story-device-copy .program-tour-story-copy {
  max-width: none;
}

.program-tour-story-device-stage {
  display: flex;
  justify-content: center;
  padding: 48px 32px;
  border-radius: 28px;
  background: linear-gradient(145deg, #eef2ff 0%, #f8f9fb 55%, #fff 100%);
  border: 1px solid #eef1f6;
}

.program-tour-story-device-frame {
  width: min(280px, 100%);
  padding: 12px;
  border-radius: 36px;
  background: #1b2559;
  box-shadow: 0 32px 64px rgba(27, 37, 89, 0.18);
}

.program-tour-story-device-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* Before / After */
.program-tour-story-compare-head .program-tour-story-copy {
  margin-bottom: 40px;
}

.program-tour-story-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

.program-tour-story-compare-card {
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid #eef1f6;
}

.program-tour-story-compare-card--before {
  background: #f8f9fb;
}

.program-tour-story-compare-card--after {
  background: linear-gradient(145deg, #f4f7fe 0%, #fff 100%);
  border-color: #dce4ff;
  box-shadow: 0 16px 40px rgba(67, 24, 255, 0.08);
}

.program-tour-story-compare-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-tour-story-compare-card--before .program-tour-story-compare-tag {
  background: #eef1f6;
  color: #707eae;
}

.program-tour-story-compare-card--after .program-tour-story-compare-tag {
  background: #4318ff;
  color: #fff;
}

.program-tour-story-compare-card h4 {
  margin: 0 0 10px;
  color: #1b2559;
  font-size: 1.25rem;
  font-weight: 700;
}

.program-tour-story-compare-card p {
  margin: 0;
  color: #707eae;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.program-tour-story-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  align-self: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eef1f6;
  color: #4318ff;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(27, 37, 89, 0.06);
}

/* Timeline */
.program-tour-story-steps-head .program-tour-story-copy {
  margin-bottom: 36px;
}

.program-tour-story-steps-list {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-tour-story-step {
  padding: 24px 20px 24px 24px;
  border-radius: 20px;
  border: 1px solid #eef1f6;
  background: #fff;
}

.program-tour-story-step-num {
  display: block;
  margin-bottom: 14px;
  color: #4318ff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.program-tour-story-step h4 {
  margin: 0 0 8px;
  color: #1b2559;
  font-size: 1rem;
  font-weight: 700;
}

.program-tour-story-step p {
  margin: 0;
  color: #707eae;
  font-size: 0.875rem;
  line-height: 1.65;
}

.program-tour-story-steps-media .program-tour-story-media {
  max-width: 720px;
  margin: 0 auto;
}

.program-tour-story-steps-media .program-tour-story-media.program-showcase--mobile {
  max-width: 845px;
  padding: 32px 20px;
}

.program-tour-story-steps-media .program-tour-story-media.program-showcase--mobile img {
  max-width: 220px;
}

/* Stats */
.program-tour-story-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.program-tour-story-stat {
  padding: 28px 20px;
  border-radius: 20px;
  border: 1px solid #eef1f6;
  background: #fff;
  text-align: center;
}

.program-tour-story-stat-value {
  display: block;
  margin-bottom: 8px;
  color: #4318ff;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.program-tour-story-stat-label {
  color: #707eae;
  font-size: 0.875rem;
  font-weight: 500;
}

.program-tour-story-stats-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.program-tour-story-stats-body .program-tour-story-copy {
  max-width: none;
  margin: 0;
}

/* Banner */
.program-tour-story-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 56px 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1b2559 0%, #2d3561 50%, #4318ff 100%);
  box-shadow: 0 24px 56px rgba(27, 37, 89, 0.16);
}

.program-tour-story-banner-copy .program-category {
  color: rgba(255, 255, 255, 0.72);
}

.program-tour-story-banner-copy .program-tour-story-title {
  color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.program-tour-story-banner-copy .program-tour-story-desc {
  color: rgba(255, 255, 255, 0.78);
}

.program-tour-story-banner-visual {
  width: min(220px, 32vw);
}

.program-tour-story-banner-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.program-tour-block.is-visible .program-reveal.is-shown {
  opacity: 1;
  transform: translateY(0);
}

/* Spotlight — text top, video below */
.program-spotlight {
  padding: 100px 0;
  background: #fff;
}

.program-spotlight-panels {
  position: relative;
}

.program-spotlight-panel {
  display: none;
}

.program-spotlight-panel.is-active {
  display: block;
}

.program-spotlight-copy {
  max-width: 520px;
  margin-bottom: 56px;
}

.program-spotlight-copy h2 {
  margin: 0 0 16px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.program-spotlight-copy p {
  margin: 0 0 28px;
  color: #707eae;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.program-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #4318ff;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(67, 24, 255, 0.18);
  transition: background-color 0.25s ease, gap 0.2s ease, transform 0.25s ease;
}

.program-spotlight-cta:hover {
  background: #5831fb;
  color: #fff;
  gap: 10px;
}

.program-spotlight-cta:active {
  transform: scale(0.98);
}

.program-spotlight-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #eef1f6;
  background: #f8f9fb;
  box-shadow: 0 20px 48px rgba(27, 37, 89, 0.08);
}

.program-spotlight-video,
.program-spotlight-poster,
.program-spotlight-animated {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.program-spotlight-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  color: #a3aed0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.program-spotlight-media-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27, 37, 89, 0.72);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  pointer-events: none;
}

.program-spotlight-media-badge i {
  font-size: 1rem;
}

.program-spotlight-media--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 48px 24px;
  background: linear-gradient(180deg, #f4f7fe 0%, #f8f9fb 100%);
}

.program-spotlight-media--mobile .program-spotlight-poster,
.program-spotlight-media--mobile .program-spotlight-animated {
  width: auto;
  max-width: 280px;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(27, 37, 89, 0.14);
}

.program-spotlight-media--mobile .program-spotlight-video {
  width: auto;
  max-width: 280px;
  border-radius: 28px;
}

/* Spotlight feature dock */
.program-spotlight-feature-dock {
  margin-top: 72px;
  padding: 28px 20px 20px;
  border-radius: 20px;
  background: #f3f4f6;
}

.program-spotlight-feature-dock-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.program-spotlight-feature-dock-scroll::-webkit-scrollbar {
  display: none;
}

.program-spotlight-feature-btn {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 72px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.program-spotlight-feature-btn:active {
  transform: scale(0.96);
}

.program-spotlight-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 2px 8px rgba(27, 37, 89, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-spotlight-feature-btn.is-active .program-spotlight-feature-icon {
  border-color: #f4c430;
  box-shadow: 0 4px 16px rgba(244, 196, 48, 0.28);
}

.program-spotlight-feature-label {
  color: #4a5568;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  word-break: keep-all;
}

.program-spotlight-feature-btn.is-active .program-spotlight-feature-label {
  color: #1b2559;
}

.program-spotlight-feature-preview {
  margin-top: 32px;
}

.program-spotlight-feature-preview-panels {
  position: relative;
}

.program-spotlight-feature-preview-panel {
  display: none;
}

.program-spotlight-feature-preview-panel.is-active {
  display: block;
  animation: programSpotlightFeatureFade 0.35s ease;
}

@media (min-width: 992px) {
  .program-spotlight-feature-dock-scroll {
    justify-content: space-between;
    overflow-x: visible;
    gap: 8px;
  }

  .program-spotlight-feature-btn {
    flex: 1 1 0;
    max-width: 88px;
  }
}

@keyframes programSpotlightFeatureFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* All features grid */
.program-all-features {
  padding: 80px 0 120px;
  background: #fafbfd;
  border-top: 1px solid #f0f2f5;
}

.program-all-features-head {
  max-width: 480px;
  margin-bottom: 48px;
}

.program-all-features-head h2 {
  margin: 0 0 12px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.program-all-features-head p {
  margin: 0;
  color: #707eae;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
}

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

.program-capability {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eef1f6;
  color: #707eae;
  font-size: 0.875rem;
  font-weight: 500;
}

.program-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f4f7fe;
  color: #4318ff;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.program-start-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: program-start-step;
}

.program-start-step {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px 24px 26px;
  border-radius: 24px;
  border: 1px solid #eef1f6;
  background: #fff;
  box-shadow: 0 12px 36px rgba(27, 37, 89, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.program-start-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(27, 37, 89, 0.1);
}

.program-start-step-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f7fe;
  color: #4318ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.program-start-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #4318ff;
  color: #fff;
  font-size: 1.375rem;
  box-shadow: 0 12px 28px rgba(67, 24, 255, 0.2);
}

.program-start-step h3 {
  margin: 0 0 12px;
  color: #1b2559;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.program-start-step p {
  margin: 0;
  color: #707eae;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

/* CTA */
.program-cta {
  padding: 120px 0 140px;
  background: #fff;
}

.program-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.program-cta-inner h2 {
  margin: 0 0 32px;
  color: #1b2559;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.program-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Responsive */
@media (max-width: 991px) {
  .program-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .program-feature-panel {
    padding: 32px 28px;
  }

  .program-feature-visual .program-visual {
    min-height: 240px;
  }

  .program-bento-card--full {
    flex-direction: column;
  }

  .program-bento-card--full .program-visual--bento {
    max-width: 100%;
  }

  .program-panel[data-panel="director"] .program-bento-card--full .program-bento-card-copy {
    flex: none;
  }

  .program-panel[data-panel="director"] .program-bento-card--full .program-visual--bento {
    flex: none;
    align-items: flex-start;
    padding: 8px 16px 20px;
  }

  .program-panel[data-panel="director"] .program-bento-card--full .program-visual--bento img {
    object-fit: contain;
    object-position: top center;
    max-height: none;
  }

  .program-panel[data-panel="teacher"] .program-bento-card--full .program-visual--chat-mobile {
    max-height: none;
    overflow: visible;
    align-items: center;
    padding: 8px 16px 20px;
  }

  .program-panel[data-panel="teacher"] .program-bento-card--full .program-visual--chat-mobile img {
    max-width: min(220px, 64vw);
    max-height: 420px;
    object-fit: contain;
    object-position: top center;
    margin-bottom: 0;
    border-radius: 20px;
  }

  .program-tour-hero-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-tour-story-split,
  .program-tour-story-duo,
  .program-tour-story-device,
  .program-tour-story-stats-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program-tour-story-split .program-tour-story-copy {
    order: -1;
  }

  .program-tour-story-trio-grid,
  .program-tour-story-steps-list,
  .program-tour-story-stats-grid {
    grid-template-columns: 1fr;
  }

  .program-tour-story-compare-grid {
    grid-template-columns: 1fr;
  }

  .program-tour-story-compare-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .program-tour-story-banner-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }

  .program-tour-story-banner-visual {
    width: min(200px, 60%);
    margin: 0 auto;
  }

  .program-tour-hero {
    padding-bottom: 80px;
  }

  .program-parent-scrolly {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .program-parent-scrolly-visual {
    order: -1;
    top: 68px;
    margin-bottom: 8px;
    padding-bottom: 24px;
    background: linear-gradient(180deg, #fff 70%, rgba(255, 255, 255, 0));
  }

  .program-parent-scrolly-step {
    min-height: 48vh;
    padding: 28px 0;
  }

  .program-parent-scrolly.is-mobile-pinned {
    display: block;
    position: relative;
    width: 100vw;
    max-width: 100%;
  }

  .program-parent-scrolly-sticky {
    position: sticky;
    top: 0;
    z-index: 3;
    width: 100vw;
    max-width: 100%;
    height: 100dvh;
    padding: 68px 4% 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .program-parent-scrolly-sticky .program-parent-scrolly-visual {
    position: relative;
    top: auto;
    margin: 0;
    padding: 0 0 4px;
    background: none;
  }

  .program-parent-copy-panel {
    position: relative;
    min-height: 0;
    margin-top: 4px;
  }

  .program-parent-scrolly-sticky .program-parent-scrolly-step-num {
    display: none;
  }

  .program-parent-scrolly-sticky .program-category {
    margin-bottom: 6px;
    font-size: 0.75rem;
  }

  .program-parent-scrolly-sticky .program-tour-story-title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .program-parent-scrolly-sticky .program-tour-story-desc {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .program-parent-copy-slide {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
  }

  .program-parent-copy-slide.is-active {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .program-parent-scrolly-step--trigger {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    visibility: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .program-parent-scrolly-step--trigger:last-child {
    height: 0;
    min-height: 0;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .program-parent-phone-frame {
    width: min(188px, 52vw);
    padding: 9px;
    border-radius: 28px;
  }

  .program-parent-phone-frame .program-phone-notch {
    top: 12px;
    width: 56px;
    height: 16px;
    border-radius: 10px;
  }

  .program-parent-phone-frame .program-phone-screen {
    border-radius: 20px;
  }

  .program-tour-story {
    padding: 72px 0;
  }

  .program-spotlight-copy {
    margin-bottom: 40px;
  }

  .program-spotlight-media-placeholder {
    min-height: 280px;
  }

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

  .program-start-step-grid {
    grid-template-columns: 1fr;
  }

  .program-start-step {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .program-page .main {
    padding-top: 64px;
  }

  .program-container {
    padding: 0 16px;
  }

  .program-hero {
    padding: 72px 0 48px;
  }

  .program-section {
    padding: 72px 0;
  }

  .program-experience {
    padding: 48px 0 80px;
  }

  .program-tabs-wrap {
    margin-bottom: 20px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px;
  }

  .program-tabs {
    gap: 8px;
  }

  .program-tab {
    padding: 14px 12px;
    font-size: 0.9375rem;
  }

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

  .program-bento-card--full {
    grid-column: auto;
  }

  .program-tour {
    padding: 80px 0 48px;
  }

  .program-tour-tabs {
    gap: 20px;
    margin-bottom: 48px;
  }

  .program-tour-tab {
    font-size: 0.9375rem;
    padding-bottom: 12px;
  }

  .program-tour-hero {
    padding-bottom: 64px;
  }

  .program-tour-story {
    padding: 64px 0;
  }

  .program-spotlight {
    padding: 72px 0;
  }

  .program-spotlight-copy {
    margin-bottom: 32px;
  }

  .program-spotlight-media--mobile {
    min-height: 360px;
    padding: 32px 16px;
  }

  .program-spotlight-feature-dock {
    margin-top: 48px;
    padding: 20px 12px 12px;
    border-radius: 16px;
  }

  .program-spotlight-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .program-spotlight-feature-btn {
    min-width: 64px;
    gap: 8px;
  }

  .program-spotlight-feature-label {
    font-size: 0.6875rem;
  }

  .program-spotlight-feature-preview {
    margin-top: 24px;
  }

  .program-all-features {
    padding: 64px 0 80px;
  }

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

  .program-start-step {
    padding: 24px 20px 22px;
  }

  .program-cta {
    padding: 80px 0 100px;
  }

  .program-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .program-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .program-spotlight-feature-preview-panel.is-active {
    animation: none;
  }

  .program-panel.is-active {
    animation: none;
  }

  .program-bento-card {
    transition: none;
  }

  .program-bento-card:hover,
  .program-bento-card.program-reveal.is-shown:hover,
  a.program-bento-card:hover,
  a.program-bento-card.program-reveal.is-shown:hover {
    transform: none;
  }

  .program-start-step {
    transition: none;
  }

  .program-start-step:hover {
    transform: none;
  }
}
