:root {
  --navy: #0b1f3a;
  --navy-2: #102a4d;
  --orange: #c65a1e;
  --orange-2: #f07a35;
  --white: #ffffff;
  --neutral: #f8f5f0;
  --ink: #142033;
  --muted: #667085;
  --line: rgba(11, 31, 58, 0.14);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(11, 31, 58, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--neutral);
  overflow: hidden;
}

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

.deck {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(198, 90, 30, 0.18), transparent 30%),
    linear-gradient(135deg, #f8f5f0 0%, #ffffff 46%, #edf1f6 100%);
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 42vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.2;
  pointer-events: none;
  animation: float 12s ease-in-out infinite alternate;
}

.ambient-one {
  top: -18%;
  left: -10%;
  background: var(--orange);
}

.ambient-two {
  right: -12%;
  bottom: -20%;
  background: var(--navy);
  animation-delay: -4s;
}

.topbar,
.controls {
  position: fixed;
  z-index: 20;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar {
  top: clamp(16px, 3vw, 34px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(116px, 14vw, 172px);
  height: 46px;
}

.brand-mark img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.slide-counter {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-width: 82px;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(11, 31, 58, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.12);
}

.slides {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: clamp(82px, 9vh, 104px) clamp(20px, 5vw, 78px) clamp(82px, 10vh, 104px);
  opacity: 0;
  transform: translate3d(4%, 0, 0) scale(0.985);
  pointer-events: none;
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1), transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.slide.exiting-left {
  transform: translate3d(-4%, 0, 0) scale(0.985);
}

.slide[data-theme="dark"] {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 31, 58, 0.98), rgba(11, 31, 58, 0.9)),
    radial-gradient(circle at 78% 30%, rgba(198, 90, 30, 0.5), transparent 28%);
}

.slide[data-theme="light"] {
  background:
    radial-gradient(circle at 84% 18%, rgba(198, 90, 30, 0.12), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, var(--neutral) 100%);
}

.slide-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
}

.hero-grid,
.two-column,
.split-focus {
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.97fr);
  align-items: center;
}

.wide-copy {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.copy-stack {
  display: grid;
  gap: clamp(16px, 2.2vh, 24px);
}

.eyebrow {
  margin: 0;
  color: var(--orange-2);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 980px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 5.15rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.subcopy {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.96rem, 1.6vw, 1.15rem);
  line-height: 1.6;
}

.cover-slide h1 {
  max-width: 640px;
  font-size: clamp(3.6rem, 6.8vw, 7rem);
}

.cover-slide .lead {
  max-width: 620px;
}

.cover-slide .hero-grid {
  width: min(1220px, 100%);
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.78fr);
  transform: translateX(-2.6vw);
}

.cover-slide .mentor-stage {
  min-height: min(62vh, 650px);
}

.cover-slide .mentor-stage img {
  width: min(82%, 440px);
}

.cover-slide .mentor-stage::before {
  inset: 12% 5% 3%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 0.96rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 42px rgba(198, 90, 30, 0.32);
}

.button-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.button-soft {
  color: var(--white);
  background: var(--navy);
}

.mentor-stage {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: min(68vh, 720px);
}

.mentor-stage::before {
  content: "";
  position: absolute;
  inset: 14% 8% 2%;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 20%, rgba(198, 90, 30, 0.22), transparent 46%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mentor-stage img {
  position: relative;
  z-index: 2;
  width: min(90%, 520px);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.24));
  animation: imageRise 900ms ease both;
}

.orbit-card {
  position: absolute;
  z-index: 3;
  padding: 13px 16px;
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.orbit-top {
  top: 16%;
  left: 5%;
}

.orbit-bottom {
  right: 4%;
  bottom: 14%;
}

.list-panel,
.highlight-box,
.recommended-card,
.pricing-card,
.note-card,
.benefit-card,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.list-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.78);
}

.audience-slide .slide-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.audience-slide h2 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.4vw, 5.85rem);
  line-height: 0.91;
}

.audience-slide .lead {
  max-width: 620px;
}

.flip-panel {
  perspective: 1300px;
}

.flip-card {
  appearance: none;
  width: 100%;
  min-height: 86px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  perspective: 1300px;
  animation: cardIn 600ms ease both;
}

.flip-card:nth-child(2) {
  animation-delay: 80ms;
}

.flip-card:nth-child(3) {
  animation-delay: 160ms;
}

.flip-card:nth-child(4) {
  animation-delay: 240ms;
}

.flip-card:nth-child(5) {
  animation-delay: 320ms;
}

.flip-inner {
  position: relative;
  display: grid;
  min-height: 86px;
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flip-card.is-flipped .flip-inner,
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 18px 20px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  backface-visibility: hidden;
  box-shadow: 0 12px 26px rgba(11, 31, 58, 0.07);
}

.flip-face::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(198, 90, 30, 0.13);
  transform: translateY(-50%);
}

.flip-back {
  color: var(--white);
  background:
    radial-gradient(circle at 95% 18%, rgba(240, 122, 53, 0.28), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(255, 255, 255, 0.16);
  transform: rotateY(180deg);
}

.flip-back::before {
  background: var(--orange-2);
  box-shadow: 0 0 0 6px rgba(240, 122, 53, 0.16);
}

.requirement-slide h2 {
  max-width: 700px;
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  line-height: 0.94;
}

.requirement-slide .lead {
  max-width: 680px;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.requirement-slide .highlight-box {
  max-width: 560px;
}

.highlight-box {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 100% 0%, rgba(198, 90, 30, 0.26), transparent 45%);
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.badge,
.mini-badge {
  width: fit-content;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.badge {
  padding: 10px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.mini-badge {
  padding: 8px 11px;
  font-size: 0.72rem;
}

.slide-heading {
  width: min(1180px, 100%);
  margin: 0 auto clamp(18px, 3vh, 30px);
  display: grid;
  gap: 10px;
}

.recommended-slide .slide-heading h2 {
  max-width: 1120px;
  font-size: clamp(2.6rem, 5vw, 5.05rem);
  line-height: 0.96;
}

.recommended-slide .slide-heading .lead {
  font-size: clamp(1.02rem, 1.55vw, 1.3rem);
}

.recommended-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  padding: clamp(18px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.price-block {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  animation: subtlePulse 2.8s ease-in-out infinite;
}

.price-block h3 {
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 900;
}

.price-block h3 span {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.62);
}

.price-block p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  font-weight: 700;
}

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

.feature-grid div {
  min-height: 74px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 245, 240, 0.72);
  font-weight: 800;
  line-height: 1.35;
  animation: featureFloat 700ms ease both;
}

.feature-grid div:nth-child(2) {
  animation-delay: 80ms;
}

.feature-grid div:nth-child(3) {
  animation-delay: 160ms;
}

.feature-grid div:nth-child(4) {
  animation-delay: 240ms;
}

.feature-grid div:nth-child(5) {
  animation-delay: 320ms;
}

.feature-grid div:nth-child(6) {
  animation-delay: 400ms;
}

.feature-grid div:nth-child(7) {
  animation-delay: 480ms;
}

.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(198, 90, 30, 0.22), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.1);
  border-color: rgba(240, 122, 53, 0.58);
}

.price-note {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dl div {
  display: grid;
  gap: 5px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  line-height: 1.36;
}

.stacked-notes {
  display: grid;
  gap: 18px;
}

.note-card {
  padding: clamp(22px, 3vw, 34px);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.note-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.note-card p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

.note-card.warning {
  background: rgba(198, 90, 30, 0.1);
  border-color: rgba(198, 90, 30, 0.28);
}

.benefit-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 148px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: clamp(18px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 850;
  line-height: 1.25;
}

.benefit-card span {
  color: var(--orange-2);
  font-size: 0.82rem;
  font-weight: 900;
}

.span-two {
  grid-column: span 2;
}

.statement-slide {
  place-items: center;
}

.statement {
  width: min(1060px, 100%);
  display: grid;
  gap: 24px;
  text-align: center;
}

.statement p:not(.eyebrow) {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.6;
  font-weight: 650;
}

.command-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.command-list span {
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

.strong-line {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 5vh, 58px) auto 0;
  padding: clamp(18px, 3vw, 26px);
  border-left: 5px solid var(--orange);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  font-size: clamp(1rem, 2vw, 1.38rem);
  font-weight: 850;
  line-height: 1.42;
}

.cta-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.cta-panel .button {
  width: 100%;
}

.cta-stage {
  position: relative;
  min-height: 610px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.cta-slide .hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(610px, 1.22fr);
}

.cta-stage .cta-panel {
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
  margin-left: 0;
  margin-right: auto;
}

.qr-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 58px rgba(11, 31, 58, 0.14);
  backdrop-filter: blur(18px);
}

.qr-card {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 18px;
  background: rgba(248, 245, 240, 0.68);
}

.qr-card img {
  width: min(100%, 118px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 14px;
}

.qr-card span {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.qr-panel p {
  grid-column: 1 / -1;
  color: var(--orange);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  text-align: center;
}

.cta-mentor {
  position: absolute;
  z-index: 4;
  right: -114px;
  bottom: -98px;
  width: min(23vw, 250px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(11, 31, 58, 0.2));
  pointer-events: none;
}

.controls {
  bottom: clamp(16px, 3vw, 34px);
  gap: 14px;
}

.nav-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(11, 31, 58, 0.82);
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.18);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  background: var(--orange);
}

.nav-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.progress-shell {
  flex: 1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.progress-bar {
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #f6a15f);
  transition: width 360ms ease;
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 5%, 0) scale(1.08);
  }
}

@keyframes imageRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes subtlePulse {
  0%,
  100% {
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.18);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 32px 70px rgba(198, 90, 30, 0.18);
    transform: translateY(-4px);
  }
}

@keyframes featureFloat {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .deck {
    min-height: 100svh;
  }

  .slide {
    min-height: 100svh;
    padding: 92px 20px 96px;
    overflow-y: auto;
  }

  .hero-grid,
  .two-column,
  .split-focus,
  .wide-copy,
  .cta-slide .hero-grid,
  .recommended-card,
  .pricing-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.7rem);
  }

  .audience-slide .slide-grid {
    grid-template-columns: 1fr;
  }

  .cover-slide .hero-grid {
    width: min(1120px, 100%);
    transform: none;
  }

  .audience-slide h2,
  .requirement-slide h2,
  .recommended-slide .slide-heading h2 {
    font-size: clamp(2.4rem, 10vw, 4rem);
    line-height: 0.98;
  }

  .mentor-stage {
    min-height: 420px;
  }

  .mentor-stage img {
    max-height: 460px;
  }

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

  .cta-stage {
    min-height: auto;
  }

  .cta-stage .cta-panel {
    margin: 0;
  }

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

  .cta-mentor {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: min(84vw, 360px);
    margin-top: 18px;
  }

  .span-two {
    grid-column: auto;
  }

  .slide-heading {
    margin-bottom: 20px;
  }
}

@media (max-width: 620px) {
  .topbar,
  .controls {
    left: 14px;
    right: 14px;
  }

  .brand-mark {
    width: 104px;
  }

  .slide-counter {
    min-width: 70px;
    padding: 9px 12px;
  }

  .slide {
    padding: 82px 16px 88px;
  }

  .lead {
    font-size: 1rem;
  }

  .mentor-stage {
    min-height: 360px;
  }

  .mentor-stage::before {
    inset: 18% 0 0;
    border-radius: 28px;
  }

  .orbit-card {
    display: none;
  }

  .recommended-card,
  .list-panel,
  .highlight-box,
  .pricing-card,
  .note-card,
  .benefit-card,
  .cta-panel {
    border-radius: 22px;
  }

  .price-block {
    border-radius: 18px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .flip-card,
  .flip-inner,
  .flip-face {
    min-height: 96px;
  }

  .qr-panel {
    grid-template-columns: 1fr;
  }

  .qr-card {
    grid-template-columns: 86px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .qr-card img {
    width: 86px;
  }

  .qr-card span {
    text-align: left;
    font-size: 0.9rem;
  }

  .command-list span {
    width: 100%;
    border-radius: 16px;
  }
}

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