/* ============================================================
   CLAIRE HART ENGLISH — Calm Editorial Blue
   Zero-dependency static site. No build tooling.
   ============================================================ */

:root {
  --paper: #F8FAFD;
  --surface: #FFFFFF;
  --ink: #0B1B33;
  --accent: #2B7FFF;
  --accent-deep: #1A5FD4;   /* darker accent for small text (WCAG AA) */
  --muted: #5B6B85;
  --hairline: #E3E9F2;
  --success: #1DB954;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.mono { font-family: var(--mono); }

/* ---------- Shared section head ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head .eyebrow { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 54ch;
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 253, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.site-header.scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(11, 27, 51, 0.03);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-name em { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-links > a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.7rem 1.25rem !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s var(--ease-soft), transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--accent-deep); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 120;
  border-radius: 8px;
}
.toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease-soft);
}
.toggle-bar:nth-child(1) { top: 18px; }
.toggle-bar:nth-child(2) { top: 28px; }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease-soft),
              box-shadow 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(43, 127, 255, 0.55);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  border: 1.5px solid var(--hairline);
  color: var(--ink);
  background: var(--surface);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-deep); }

.btn-underline {
  padding: 0.5rem 0.25rem;
  border-radius: 0;
  color: var(--ink);
  position: relative;
}
.btn-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.btn-underline:hover::after { transform: scaleX(0.4); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.spot-1 { width: 420px; height: 420px; background: #DCE9FF; top: -120px; right: -80px; }
.spot-2 { width: 300px; height: 300px; background: #EAF1FF; bottom: -100px; left: -60px; }
.spot-3 { width: 180px; height: 180px; background: #F0F5FF; top: 40%; left: 40%; }

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy { max-width: 34rem; }
.hero-copy .eyebrow { margin-bottom: 1.4rem; }

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.accent-word {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.accent-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.12em;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 2px;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- Call mockup ---- */
.hero-visual { position: relative; }

.call-window {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(11, 27, 51, 0.25);
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .call-window { transform: rotate(0deg); }

.call-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--hairline);
  background: #FBFCFE;
}
.call-dots { display: flex; gap: 6px; }
.call-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--hairline); }
.call-dots i:first-child { background: #FFB4A2; }
.call-dots i:nth-child(2) { background: #FFD166; }
.call-dots i:nth-child(3) { background: var(--success); }
.call-title { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; }
.call-time { font-size: 0.72rem; color: var(--muted); }

.call-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 320px;
}
.tutor-video {
  position: relative;
  background: #0B1B33;
  min-height: 320px;
}
.tutor-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.pill-90 {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.caption-float {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.72rem;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
  animation: floaty 5s ease-in-out infinite;
}

.chat-panel {
  background: var(--surface);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: flex-end;
  overflow: hidden;
}
.bubble {
  max-width: 88%;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.4;
  animation: bubbleIn 0.5s var(--ease) both;
}
.bubble-in {
  background: #EEF3FB;
  color: var(--ink);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-out {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.bubble:nth-child(1) { animation-delay: 0.2s; }
.bubble:nth-child(2) { animation-delay: 1.6s; }
.bubble:nth-child(3) { animation-delay: 3s; }

.typing {
  display: flex;
  gap: 4px;
  align-self: flex-start;
  background: #EEF3FB;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}
.numbers-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.num { display: flex; flex-direction: column; gap: 0.4rem; }
.num-value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
}
.num-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   HOW IT WORKS — editorial offset timeline
   ============================================================ */
.how { padding: clamp(4rem, 9vw, 7rem) 0; }
.how .section-head { margin-left: clamp(0rem, 8vw, 6rem); }

.how-path {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* Vertical accent thread down the spine */
.path-thread {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--hairline);
  transform: translateX(-50%);
}
.path-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(43, 127, 255, 0.15);
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
}

.timeline { position: relative; padding: 1rem 0; }

.tl-item {
  position: relative;
  width: 50%;
  padding: 0 3.5rem 8rem 0;
  text-align: right;
}
.tl-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 8rem 3.5rem;
  text-align: left;
}
.tl-item:last-child { padding-bottom: 0; }

/* Serial mono numeral sitting on the thread */
.tl-num {
  position: absolute;
  top: 0.1rem;
  right: -1.4rem;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-deep);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  z-index: 20;
  cursor: pointer;
  transition: color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease-soft);
}
.tl-num:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.tl-item:nth-child(even) .tl-num { right: auto; left: -1.4rem; }
.tl-item:hover .tl-num {
  color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 6px 16px -8px rgba(43, 127, 255, 0.5);
}
.tl-num.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(43, 127, 255, 0.2), 0 8px 22px -8px rgba(43, 127, 255, 0.65);
}
.tl-item:hover .tl-num.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(43, 127, 255, 0.2), 0 8px 22px -8px rgba(43, 127, 255, 0.65);
  transform: scale(1.08);
}

/* Hairline rule connecting numeral to body */
.tl-rule {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  width: 2rem;
  height: 1px;
  background: var(--hairline);
}
.tl-item:nth-child(even) .tl-rule { right: auto; left: 1.6rem; }

/* Ghost numeral behind each step */
.tl-item .ghost-num { top: -1rem; right: 0; font-size: clamp(3.5rem, 7vw, 5.5rem); }
.tl-item:nth-child(even) .ghost-num { right: auto; left: 0; }

.tl-body {
  width: fit-content;
  max-width: 100%;
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  margin-left: auto;
  transition: box-shadow 0.5s var(--ease), background 0.5s var(--ease);
}
.tl-item:nth-child(even) .tl-body { margin-left: 0; margin-right: auto; }
.tl-item.active .tl-body {
  background: rgba(43, 127, 255, 0.04);
  box-shadow: 0 0 0 1.5px var(--accent), 0 0 0 5px rgba(43, 127, 255, 0.12),
              0 12px 30px -12px rgba(43, 127, 255, 0.4);
}
.tl-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.tl-body p {
  color: var(--muted);
  max-width: 40ch;
}

/* Staggered entrance delays */
.tl-item:nth-child(1) { transition-delay: 0s; }
.tl-item:nth-child(2) { transition-delay: 0.08s; }
.tl-item:nth-child(3) { transition-delay: 0.16s; }
.tl-item:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   LESSON TRACKS
   ============================================================ */
.tracks {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.tracks .section-head { margin-left: clamp(0rem, 8vw, 6rem); }

.tracks-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.track {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease-soft),
              box-shadow 0.4s var(--ease-soft);
}
.track:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -24px rgba(11, 27, 51, 0.18);
}

.track-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1rem);
  box-shadow: 0 30px 60px -30px rgba(11, 27, 51, 0.5);
}
.track-featured:hover {
  transform: translateY(calc(-1rem - 3px));
  border-color: var(--accent);
}
.track-featured h3 { color: #fff; }
.track-featured p { color: #C7D2E4; }
.track-featured .track-list li { color: #E6ECF6; }
.track-featured .track-list li::before { background: var(--accent); }

.track-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.2rem;
}
.track-featured .track-tag { color: #7FB0FF; }

.track h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.7rem;
}
.track p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.track-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; }
.track-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.track-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(4rem, 9vw, 7rem) 0;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.about-media { position: relative; }
.about-media img {
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(11, 27, 51, 0.3);
}
.about-caption {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.72rem;
  color: var(--muted);
  box-shadow: 0 10px 24px -12px rgba(11, 27, 51, 0.2);
}
.about-copy .eyebrow { margin-bottom: 1rem; }
.about-copy p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  max-width: 52ch;
}
.about-proof { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.about-proof li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(29, 185, 84, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* Single shared centered column — eyebrow, heading, quote,
   attribution, and dots all live here so they share the exact
   same horizontal axis. */
.tst-inner {
  max-width: 780px;
  margin-inline: auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.tst-inner .eyebrow { margin-bottom: 1.1rem; }
.tst-inner .section-title { margin-bottom: 3rem; }

.tst-slider { position: relative; }

/* Stack every slide in the same grid cell so they share one center. */
.tst-track {
  display: grid;
  min-height: clamp(17rem, 42vh, 21rem);
}
.tst-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.tst-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tst-slide blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw + 0.5rem, 1.6rem);
  line-height: 1.5;
  max-width: 100%;
  margin: 0 auto 1.75rem;
  font-style: italic;
  text-align: center;
}
.tst-slide figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  text-align: center;
  font-size: 1.05rem;
}
.tst-name { font-weight: 600; }
.tst-role { font-size: 0.85rem; color: var(--muted); }

/* Control bar — centered on the same axis as the quote. */
.tst-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.tst-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline);
  background: var(--surface);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft),
              color 0.3s var(--ease-soft), transform 0.3s var(--ease);
}
.tst-btn:hover { border-color: var(--accent); color: var(--accent-deep); }
.tst-btn:active { transform: scale(0.92); }

.tst-dots { display: flex; gap: 0.5rem; }
.tst-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hairline);
  transition: background 0.3s var(--ease-soft), transform 0.3s var(--ease);
  padding: 0;
}
.tst-dots button[aria-selected="true"] {
  background: var(--accent);
  transform: scale(1.25);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: clamp(4rem, 9vw, 7rem) 0; }
.pricing .section-head { margin-left: clamp(0rem, 8vw, 6rem); }

.price-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.plan {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease-soft),
              box-shadow 0.4s var(--ease-soft);
}
.plan:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -24px rgba(11, 27, 51, 0.18);
}

.plan-featured {
  border: 2px solid var(--accent);
  transform: translateY(-1rem);
  box-shadow: 0 30px 60px -30px rgba(43, 127, 255, 0.4);
}
.plan-featured:hover { transform: translateY(calc(-1rem - 3px)); }

.plan-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.plan-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.plan-price .currency { font-size: 0.6em; vertical-align: super; color: var(--muted); }
.plan-price .per { font-size: 0.4em; font-family: var(--sans); font-weight: 500; color: var(--muted); }
.plan-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }

.plan-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.plan-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.plan .btn { margin-top: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
}
.faq .section-head { margin-left: clamp(0rem, 8vw, 6rem); }

.accordion {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.acc-item { border-bottom: 1px solid var(--hairline); }
.acc-item:first-child { border-top: 1px solid var(--hairline); }

.acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  text-align: left;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  min-height: 60px;
  color: var(--ink);
}
.acc-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.35s var(--ease);
}
.acc-icon::before { left: 0; right: 0; top: 10px; height: 2px; }
.acc-icon::after { top: 0; bottom: 0; left: 10px; width: 2px; }
.acc-toggle[aria-expanded="true"] .acc-icon::after { transform: scaleY(0); }

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.acc-panel p {
  padding: 0 0 1.4rem;
  color: var(--muted);
  max-width: 60ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #C7D2E4;
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-mark { background: var(--accent); }
.footer-brand p { margin-top: 1rem; max-width: 30ch; color: #9FB0CC; font-size: 0.95rem; }

.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7FB0FF;
  margin-bottom: 0.4rem;
}
.footer-col a {
  color: #C7D2E4;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s var(--ease-soft);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding: 1.2rem var(--gutter) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p { font-size: 0.75rem; color: #7E90AC; }

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-img.in-view { opacity: 1; transform: scale(1); }

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-visual { max-width: 560px; }

  .tracks-grid { grid-template-columns: 1fr; }
  .track-featured { transform: none; }
  .track-featured:hover { transform: translateY(-3px); }

  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-3px); }

  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px & below (mobile nav)
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 320px);
    max-height: 100vh;
    overflow-y: auto;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6rem 2rem 2.5rem;
    box-shadow: -20px 0 50px -30px rgba(11, 27, 51, 0.4);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0.4s;
    z-index: 110;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links > a {
    width: 100%;
    font-size: 1.15rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links > a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: 999px;
  }

  body.menu-open { overflow: hidden; }
  .scroll-indicator { display: none; }

  /* How it works — collapse to single column with left thread */
  .path-thread { left: 1.5rem; }
  .tl-item,
  .tl-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 6rem 4.5rem;
    text-align: left;
  }
  .tl-num,
  .tl-item:nth-child(even) .tl-num { right: auto; left: 0.1rem; }
  .tl-rule,
  .tl-item:nth-child(even) .tl-rule { right: auto; left: 1.6rem; }
  .tl-item .ghost-num,
  .tl-item:nth-child(even) .ghost-num { right: auto; left: 0; }
  .tl-body p,
  .tl-item:nth-child(even) .tl-body p { margin-left: 0; margin-right: 0; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .numbers-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .call-body { grid-template-columns: 1fr; }
  .chat-panel { display: none; }
  .tutor-video { min-height: 240px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .marquee-track span { font-size: 1.1rem; }
  .marquee-track span,
  .marquee-track i { margin-right: 1.5rem; }
}

/* ============================================================
   ANIMATION LAYER — IDLE / SCROLL / INTERACTION
   ============================================================ */

/* ---- Scroll progress bar (SCROLL) ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 300;
  pointer-events: none;
}

/* Anchor offset for sticky header */
section[id] { scroll-margin-top: 84px; }

/* Pause hero idle loops when scrolled off-screen */
.hero.paused .ghost,
.hero.paused .spot-1,
.hero.paused .spot-2,
.hero.paused .spot-3,
.hero.paused .rec-dot,
.hero.paused .equalizer i,
.hero.paused .tw-caret { animation-play-state: paused; }

/* Pause section idle loops when scrolled off-screen */
section.paused .eyebrow,
section.paused .num::after,
section.paused .ghost-num,
section.paused .plan-featured { animation-play-state: paused; }

/* ---- Typewriter caret (IDLE) ---- */
.tw-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--accent);
  vertical-align: -0.15em;
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* ---- Breathing accent word (IDLE) ---- */
.accent-word { animation: breathe 5s ease-in-out infinite; }
@keyframes breathe { 0%,100%{opacity:1} 50%{opacity:0.72} }

/* ---- Ghost letters (IDLE) ---- */
.ghost {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  opacity: 0.08;
  font-size: clamp(3rem, 8vw, 6rem);
  pointer-events: none;
  animation: ghostDrift 16s ease-in-out infinite;
}
.ghost-1 { top: 8%; left: 6%; }
.ghost-2 { bottom: 12%; right: 8%; animation-delay: -5s; }
.ghost-3 { top: 55%; left: 45%; font-size: clamp(2rem, 5vw, 4rem); animation-delay: -9s; }
@keyframes ghostDrift {
  0%,100% { transform: translate(0,0) rotate(-3deg); }
  50% { transform: translate(14px,-18px) rotate(3deg); }
}

/* ---- Hero blobs drift (IDLE) ---- */
.spot-1 { animation: blobDrift1 18s ease-in-out infinite; }
.spot-2 { animation: blobDrift2 22s ease-in-out infinite; }
.spot-3 { animation: blobDrift3 26s ease-in-out infinite; }
@keyframes blobDrift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes blobDrift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(24px,-16px)} }
@keyframes blobDrift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-16px,-20px)} }

/* ---- Scroll indicator (IDLE) ---- */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  color: var(--muted);
}
.si-mouse { width: 24px; height: 38px; border: 2px solid var(--muted); border-radius: 14px; position: relative; }
.si-mouse i {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--accent);
  animation: siDot 1.8s ease-in-out infinite;
}
@keyframes siDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.si-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---- Call mockup: rec dot + equalizer (IDLE) ---- */
.rec-dot {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF5A5A;
  animation: recPulse 2s ease-out infinite;
}
@keyframes recPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,90,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255,90,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,90,0); }
}
.equalizer {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}
.equalizer i { width: 3px; background: #fff; border-radius: 2px; animation: eq 1s ease-in-out infinite; }
.equalizer i:nth-child(1){ height: 40%; animation-delay: 0s; }
.equalizer i:nth-child(2){ height: 80%; animation-delay: 0.15s; }
.equalizer i:nth-child(3){ height: 55%; animation-delay: 0.3s; }
.equalizer i:nth-child(4){ height: 100%; animation-delay: 0.45s; }
.equalizer i:nth-child(5){ height: 65%; animation-delay: 0.6s; }
@keyframes eq { 0%,100%{transform:scaleY(0.5)} 50%{transform:scaleY(1)} }

/* ---- CTA breathing glow (IDLE) ---- */
.btn-primary { animation: ctaGlow 4s ease-in-out infinite; }
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 8px 24px -10px rgba(43,127,255,0.55); }
  50% { box-shadow: 0 8px 30px -8px rgba(43,127,255,0.75); }
}

/* ---- Marquee (IDLE) ---- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  padding: 1.1rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: marquee 30s linear infinite;
}
.marquee-track span,
.marquee-track i { margin-right: 2.5rem; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--ink); }
.marquee-track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Word-split reveal (SCROLL) ---- */
.split-reveal .sr-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0 0.14em 0.18em;
  margin: 0 -0.14em -0.18em;
}
.split-reveal .sr-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease);
}
.reveal.in-view .split-reveal .sr-word > span,
.split-reveal.in-view .sr-word > span { transform: translateY(0); }
.split-reveal .sr-word:nth-child(2) > span { transition-delay: 0.06s; }
.split-reveal .sr-word:nth-child(3) > span { transition-delay: 0.12s; }
.split-reveal .sr-word:nth-child(4) > span { transition-delay: 0.18s; }
.split-reveal .sr-word:nth-child(5) > span { transition-delay: 0.24s; }
.split-reveal .sr-word:nth-child(6) > span { transition-delay: 0.3s; }

/* ---- Editorial story: alternating drift (SCROLL) ---- */
.reveal[data-dir="left"] { transform: translate(-40px, 28px); }
.reveal[data-dir="right"] { transform: translate(40px, 28px); }
.reveal[data-dir="left"].in-view,
.reveal[data-dir="right"].in-view { transform: translate(0, 0); }

/* ---- Pricing featured lift (SCROLL) ---- */
.plan-featured.reveal { transform: translateY(40px) scale(0.98); }
.plan-featured.reveal.in-view { transform: translateY(-1rem) scale(1); }

/* ---- To-top button (INTERACTION) ---- */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  z-index: 200;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease-soft);
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--accent); }
.to-top:active { transform: translateY(0) scale(0.94); }

/* ---- Hero mockup tilt (INTERACTION) ---- */
.hero { perspective: 1200px; }
.hero-visual { transform-style: preserve-3d; will-change: transform; }
.call-window { will-change: transform; }

/* ---- Magnetic CTA ripple (INTERACTION) ---- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple 0.6s var(--ease) forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

/* ---- Card inner nudge (INTERACTION) ---- */
.track-tag { transition: letter-spacing 0.4s var(--ease); }
.track:hover .track-tag { letter-spacing: 0.16em; }

/* ---- Nav link letter-spacing nudge (INTERACTION) ---- */
.nav-links > a:not(.nav-cta) { transition: letter-spacing 0.3s var(--ease); }
.nav-links > a:not(.nav-cta):hover { letter-spacing: 0.02em; }

/* ---- Film-grain texture overlay (IDLE) ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grainShift 9s steps(6) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  20% { transform: translate(-12px,8px); }
  40% { transform: translate(10px,-10px); }
  60% { transform: translate(-8px,-6px); }
  80% { transform: translate(12px,10px); }
  100% { transform: translate(0,0); }
}

/* ---- Eyebrow calm pulse (IDLE) ---- */
.eyebrow { animation: eyebrowPulse 6s ease-in-out infinite; }
@keyframes eyebrowPulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

/* ---- Numbers sheen sweep (IDLE) ---- */
.num { position: relative; overflow: hidden; }
.num::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  left: -60%;
  background: linear-gradient(100deg, transparent, rgba(43,127,255,0.08), transparent);
  animation: sheen 6s ease-in-out infinite;
}
.num:nth-child(2)::after { animation-delay: 2s; }
.num:nth-child(3)::after { animation-delay: 4s; }
@keyframes sheen { 0%{left:-60%} 60%{left:120%} 100%{left:120%} }

/* ---- Featured plan breathing glow (IDLE) ---- */
.plan-featured { animation: planGlow 5s ease-in-out infinite; }
@keyframes planGlow {
  0%,100% { box-shadow: 0 30px 60px -30px rgba(43,127,255,0.4); }
  50% { box-shadow: 0 30px 70px -26px rgba(43,127,255,0.6); }
}

/* ---- Ghost numeral behind eyebrow (IDLE) ---- */
.ghost-num {
  position: absolute;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 500;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  animation: ghostNum 14s ease-in-out infinite;
}
.section-head { position: relative; }
.ghost-num { top: -1.5rem; right: 0; }
@keyframes ghostNum {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

/* ---- Speaking label (IDLE) ---- */
.speaking-label {
  position: absolute;
  bottom: 1rem;
  right: 3.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  animation: speakFade 2.4s ease-in-out infinite;
}
@keyframes speakFade { 0%,100%{opacity:0.4} 50%{opacity:0.9} }

/* ---- Hero underline CTA traveling highlight (IDLE) ---- */
.btn-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 30%;
  height: 2px;
  background: var(--accent);
  opacity: 0.5;
  animation: underlineTravel 3.5s ease-in-out infinite;
}
@keyframes underlineTravel { 0%{left:0} 50%{left:70%} 100%{left:0} }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-img { opacity: 1; transform: none; }
  .reveal[data-dir="left"], .reveal[data-dir="right"] { transform: none; }
  .caption-float { animation: none; }
  .bubble { animation: none; opacity: 1; }
  .typing span { animation: none; }
  .tw-caret, .accent-word, .ghost, .spot-1, .spot-2, .spot-3,
  .si-mouse i, .rec-dot, .equalizer i, .btn-primary, .marquee-track,
  .grain, .eyebrow, .num::after, .plan-featured, .ghost-num,
  .speaking-label, .btn-underline::before { animation: none !important; }
  .split-reveal .sr-word > span { transform: none; }
  .to-top { transition: opacity 0.2s, transform 0.2s; }
}
