/* PlayDay Kids Learning.
   Loaded after css/style.css and reuses its brand tokens, so the learning
   platform looks like the rest of the site without touching a line of it.
   Two prefixes: .lrn- is the platform shell, .lt- is inside an activity. */

.learn {
  background:
    radial-gradient(900px 380px at 10% -8%, var(--sky-soft), transparent 60%),
    radial-gradient(760px 340px at 92% 4%, var(--pink-soft), transparent 62%),
    var(--cream);
  background-attachment: fixed;
}

.learn-main { padding: 20px 0 90px; }
.lrn-h2 {
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  margin: 34px 0 16px;
}
.lrn-h2.skill {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 26px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lrn-h2.skill::after {
  content: '';
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(31, 42, 90, 0.08);
}
.lrn-empty {
  color: var(--ink-soft);
  font-weight: 700;
  padding: 18px;
  text-align: center;
}

/* Cards drift in as a screen appears. This is a CSS animation on purpose: if it
   is ever interrupted, throttled or unsupported the card still ends up visible,
   which is not true of animating opacity from JavaScript. */
@keyframes lrn-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.lrn-age, .lrn-tile, .lrn-minisub, .lrn-stat, .lrn-badge {
  animation: lrn-in 0.42s both;
  animation-delay: calc(var(--i, 0) * 35ms);
}

/* Colour helpers. Prefixed so they can never collide with a class in style.css. */
.tint-pink   { --tint: var(--pink-soft);  --ink-accent: var(--pink); }
.tint-sky    { --tint: var(--sky-soft);   --ink-accent: var(--sky); }
.tint-mint   { --tint: var(--mint-soft);  --ink-accent: var(--mint); }
.tint-sun    { --tint: var(--sun-soft);   --ink-accent: var(--sun); }
.tint-grape  { --tint: var(--grape-soft); --ink-accent: var(--grape); }
.tint-peach  { --tint: var(--peach-soft); --ink-accent: var(--peach); }
.tint-red    { --tint: #ffe0e0;           --ink-accent: var(--red); }

/* ---------- breadcrumb ---------- */
.lrn-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 6px 0 18px;
}
.lrn-crumb a {
  text-decoration: none;
  background: var(--paper);
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}
.lrn-crumb a:hover { transform: translateY(-2px); }
.lrn-crumb .sep { opacity: 0.5; }
[dir="rtl"] .lrn-crumb .sep { transform: scaleX(-1); }

/* ---------- hero: one question ---------- */
.lrn-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 14px 0 20px;
}
.lrn-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin: 0; }
.lrn-starpill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sun-soft);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.18s;
}
.lrn-starpill:hover { transform: translateY(-3px); }
.lrn-note {
  max-width: 620px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ---------- age cards ---------- */
.lrn-ages {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.lrn-age {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px 10px 18px;
  box-shadow: var(--shadow);
  border-top: 10px solid var(--ink-accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lrn-age:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lrn-age.is-mine { outline: 4px solid var(--ink-accent); outline-offset: 3px; }
.lrn-age-mine {
  position: absolute;
  top: -16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.lrn-age-emoji { font-size: 3rem; display: block; line-height: 1; }
.lrn-age-emoji.big { font-size: 4rem; }
.lrn-age-num {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 2px 18px;
  direction: ltr;
}
.lrn-age strong {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ---------- age header ---------- */
.lrn-agehead,
.lrn-subhead {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  border-inline-start: 12px solid var(--ink-accent);
}
.lrn-agehead h1,
.lrn-subhead h1 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin-bottom: 0.15em; }
.lrn-agehead p,
.lrn-subhead p { margin: 0; color: var(--ink-soft); font-weight: 600; }
.lrn-subhead .lrn-sub-emoji.big,
.lrn-agehead .lrn-age-emoji.big { font-size: 3.4rem; flex: none; }
.lrn-agehead > div { flex: 1; min-width: 0; }
.lrn-agehead .lrn-starpill { flex: none; }

.lrn-rowhead {
  margin: 30px 0 8px;
  font-size: clamp(1.3rem, 3.2vw, 1.7rem);
}
.lrn-rowhead.super {
  display: inline-block;
  background: linear-gradient(100deg, var(--grape-soft), var(--pink-soft));
  border-radius: 999px;
  padding: 8px 20px;
}

/* ---------- a sideways strip of tiles ---------- */
.lrn-strip { margin: 6px 0 14px; }
.lrn-striphead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.lrn-striptitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.12rem;
  text-decoration: none;
  color: var(--ink);
}
.lrn-striptitle span {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--tint);
  font-size: 1.2rem;
}
.lrn-seeall {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}
.lrn-seeall:hover { color: var(--ink); }
[dir="rtl"] .lrn-seeall .arr { display: inline-block; transform: scaleX(-1); }
.lrn-stripscroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 4px 14px;
  margin: 0 -4px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.lrn-stripscroll > .lrn-tile { flex: 0 0 148px; scroll-snap-align: start; }
.lrn-strip.keep {
  background: var(--sun-soft);
  border-radius: var(--radius);
  padding: 12px 14px 0;
  margin-top: 14px;
}

/* ---------- compact activity tiles ---------- */
.lrn-tiles {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.lrn-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: start;
  gap: 6px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 14px 10px 12px;
  min-height: 150px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--ink-accent);
  transition: transform 0.18s, box-shadow 0.18s;
}
.lrn-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lrn-tile-emoji {
  font-size: 2rem;
  line-height: 1;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--tint);
  border-radius: 16px;
}
.lrn-tile strong {
  font-family: var(--font-head);
  font-size: 0.98rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lrn-tile-meta { font-size: 0.72rem; font-weight: 800; color: var(--ink-soft); }
.lrn-tile-meta .st { font-size: 0.8rem; }
.lrn-lv { display: inline-flex; gap: 3px; }
.lrn-lv i { width: 8px; height: 8px; border-radius: 50%; background: rgba(31, 42, 90, 0.12); }
.lrn-lv i.on { background: var(--ink-accent); }
.lrn-tile-tick {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  display: grid;
  place-items: center;
}
.lrn-tile.is-done { opacity: 0.85; }
.lrn-tile.is-next { outline: 4px solid var(--sun); outline-offset: 2px; }
.lrn-tile-next {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.lrn-tile-more { background: var(--tint); border-top-color: transparent; align-content: center; }
.lrn-tile-more strong { font-size: 1.4rem; }
.lrn-tiles.games .lrn-tile-emoji { font-size: 2.3rem; width: 60px; height: 60px; }

/* ---------- subject buttons on the search screen ---------- */
.lrn-minisubs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.lrn-minisub {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-inline-start: 6px solid var(--ink-accent);
  background: var(--paper);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  font-weight: 800;
  text-align: start;
  transition: transform 0.15s;
}
.lrn-minisub:hover { transform: translateY(-3px); }
.lrn-minisub span { font-size: 1.4rem; }
.lrn-minisub strong { flex: 1; font-family: var(--font-head); font-size: 0.95rem; }
.lrn-minisub small { background: var(--tint); border-radius: 999px; padding: 2px 8px; font-size: 0.75rem; }

.lrn-sub-emoji { font-size: 2.4rem; display: block; line-height: 1; }
.lrn-sub-count {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--tint);
  padding: 4px 12px;
  border-radius: 999px;
}

/* progress bar used in a few places */
.lrn-bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 42, 90, 0.08);
  overflow: hidden;
  margin-top: 10px;
}
.lrn-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--ink-accent, var(--mint));
  transition: width 0.5s ease;
}
.lrn-bar.big { height: 14px; }

/* ---------- search ---------- */
.lrn-browsehead { text-align: center; margin-bottom: 14px; }
.lrn-search {
  width: min(560px, 100%);
  font: inherit;
  font-weight: 700;
  padding: 15px 22px;
  border-radius: 999px;
  border: 3px solid transparent;
  background: var(--paper);
  box-shadow: var(--shadow);
  outline: none;
}
.lrn-search:focus { border-color: var(--sky); }
.lrn-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lrn-chips.center { justify-content: center; margin-bottom: 18px; }
.lrn-chip {
  border: 0;
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 800;
  font-size: 0.92rem;
  min-height: 42px;
  box-shadow: var(--shadow);
  transition: transform 0.15s, background 0.15s;
}
.lrn-chip:hover { transform: translateY(-2px); background: var(--sun-soft); }
.lrn-chip.on { background: var(--ink); color: #fff; }
.lrn-active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}
.lrn-count { font-weight: 800; color: var(--ink-soft); margin: 0; }
.lrn-morerow { text-align: center; margin: 18px 0 0; }

/* ---------- progress dashboard ---------- */
.lrn-proghead { text-align: center; margin-bottom: 18px; }
.lrn-proghead p { color: var(--ink-soft); font-weight: 600; }
.lrn-rank {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(110deg, var(--sun-soft), var(--pink-soft));
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.lrn-rank > div { flex: 1; min-width: 0; }
.lrn-rank-emoji { font-size: 3.4rem; }
.lrn-rank h2 { margin: 4px 0 6px; font-size: 1.6rem; }
.lrn-ranknote { margin: 8px 0 0; font-weight: 700; color: var(--ink-soft); font-size: 0.92rem; }
.lrn-rank .lrn-bar i { background: var(--peach); }

.lrn-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.lrn-stat {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.lrn-stat .e { font-size: 1.7rem; display: block; }
.lrn-stat b { display: block; font-family: var(--font-head); font-size: 1.8rem; line-height: 1.1; }
.lrn-stat span:last-child { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }

.lrn-subbars { display: grid; gap: 10px; }
.lrn-subbar {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 2fr auto;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-weight: 800;
}
.lrn-subbar .lrn-bar { margin-top: 0; }
.lrn-subbar b { font-family: var(--font-head); }

.lrn-days { display: flex; flex-wrap: wrap; gap: 7px; }
.lrn-day {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(31, 42, 90, 0.06);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.lrn-day.on { background: var(--sun-soft); }

.lrn-badges {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.lrn-badge {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 3px dashed rgba(31, 42, 90, 0.12);
}
.lrn-badge.earned {
  border: 3px solid var(--ink-accent);
  background: linear-gradient(180deg, var(--paper), var(--tint));
}
.lrn-badge-emoji { font-size: 2.2rem; display: block; filter: grayscale(1); opacity: 0.45; }
.lrn-badge.earned .lrn-badge-emoji { filter: none; opacity: 1; }
.lrn-badge strong { display: block; font-family: var(--font-head); font-size: 1rem; margin-top: 6px; }
.lrn-badge-desc { display: block; font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; margin-top: 4px; }
.lrn-badge-prog { display: block; font-size: 0.78rem; font-weight: 800; color: var(--ink-soft); margin-top: 5px; }

.lrn-emptybox {
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px 20px;
  box-shadow: var(--shadow);
}
.lrn-emptybox .big { font-size: 3.4rem; display: block; margin-bottom: 10px; }
.lrn-reset {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
}
.lrn-reset h3 { font-size: 1.1rem; color: var(--ink-soft); }

/* ---------- buttons used inside the platform ---------- */
.lrn-btn, .lt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.lrn-btn:hover, .lt-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.lrn-btn.primary, .lt-btn.primary { background: var(--sky); color: #fff; }
.lt-btn.good { background: var(--mint); }
.lrn-btn.ghost, .lt-btn.ghost { background: rgba(31, 42, 90, 0.06); box-shadow: none; }
.lt-btn.small { min-height: 42px; font-size: 0.92rem; padding: 8px 16px; }

/* ================================================================
   THE PLAYER
   ================================================================ */
body.lrn-locked { overflow: hidden; }
.lrn-player {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(31, 42, 90, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  padding: 0;
}
.lrn-player.open { display: block; }
.lrn-player-in {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}
.lrn-phead {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--paper);
  box-shadow: 0 6px 20px rgba(31, 42, 90, 0.08);
  z-index: 2;
}
.lrn-close {
  flex: none;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 42, 90, 0.07);
  font-size: 1.2rem;
  font-weight: 800;
}
.lrn-close:hover { background: var(--pink-soft); }
.lrn-ptitle { flex: 1; min-width: 0; }
.lrn-ptitle h2 { font-size: 1.25rem; margin: 0; }
.lrn-phint {
  margin: 2px 0 0;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
/* three hearts: a wrong answer greys one out, none left ends the activity */
.lrn-hearts { flex: none; display: flex; gap: 2px; font-size: 1.35rem; line-height: 1; }
.lrn-hearts:empty { display: none; }
.lrn-heart { display: inline-block; transition: transform 0.3s, filter 0.3s, opacity 0.3s; }
.lrn-heart.off { filter: grayscale(1); opacity: 0.28; transform: scale(0.8); }
.lrn-pbar { height: 8px; background: rgba(31, 42, 90, 0.08); }
.lrn-pbar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mint), var(--sky));
  transition: width 0.45s ease;
}
[dir="rtl"] .lrn-pbar i { margin-inline-start: auto; }
.lrn-pbody {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 16px 30px;
}
.lrn-phost { width: min(760px, 100%); margin-inline: auto; }
.lrn-pfoot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--paper);
  box-shadow: 0 -6px 20px rgba(31, 42, 90, 0.08);
}
.lrn-pfoot:empty { display: none; }

/* winning screen */
.lrn-win { text-align: center; width: min(680px, 100%); margin-inline: auto; padding-top: 10px; }
.lrn-win-stars { font-size: 3rem; line-height: 1; }
.lrn-win-stars .dim { opacity: 0.2; }
.lrn-win h2 { font-size: clamp(2rem, 7vw, 3rem); margin: 10px 0 4px; color: var(--sky); }
.lrn-win-points { font-weight: 800; color: var(--ink-soft); }
.lrn-win-points b { color: var(--ink); font-size: 1.3rem; }
.lrn-win-streak { font-weight: 800; }
.lrn-win-rank {
  display: inline-block;
  background: var(--sun-soft);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.lrn-win-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.lrn-win-badges .lrn-badge { width: 160px; }
.lrn-win-more { margin-top: 26px; text-align: start; }
.lrn-win-more h3 { text-align: center; }

/* out of hearts */
.lrn-lost { text-align: center; width: min(560px, 100%); margin: 30px auto 0; }
.lrn-lost-icon { font-size: 4.5rem; line-height: 1; display: inline-block; }
.lrn-lost h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); margin: 12px 0 6px; color: var(--pink); }
.lrn-lost p { font-weight: 700; color: var(--ink-soft); font-size: 1.1rem; }

/* ================================================================
   ACTIVITY TEMPLATES
   ================================================================ */
.lt-stage { text-align: center; }
.lt-question { margin-bottom: 18px; }
.lt-qtext {
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  margin: 8px 0 12px;
  text-align: center;
}
.lt-qemoji { font-size: clamp(3.4rem, 14vw, 6rem); line-height: 1.1; }
.lt-qpic { font-size: clamp(2.6rem, 10vw, 4rem); letter-spacing: 6px; }
.lt-intro { color: var(--ink-soft); font-weight: 700; text-align: center; }
.lt-word {
  font-size: clamp(2.4rem, 10vw, 4rem);
  margin: 10px 0;
}

/* a reading passage that stays above the questions */
.lt-passage {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-inline-start: 8px solid var(--sky);
}
.lt-passage h3 { margin-bottom: 8px; }
.lt-passage p { font-size: 1.08rem; line-height: 1.75; margin: 0 0 0.7em; }

.lt-speaker {
  width: 66px; height: 66px;
  border: 0;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: var(--shadow);
  margin: 6px auto;
  display: block;
}
.lt-speaker.big { width: 96px; height: 96px; font-size: 2.6rem; }
.lt-speaker:hover { transform: scale(1.06); }

.lt-options {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.lt-options.lt-numbers { grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); }
.lt-opt {
  min-height: 84px;
  border: 4px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 800;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.2s;
}
.lt-opt:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lt-opt.wide { grid-column: 1 / -1; }
.lt-opt.is-right { border-color: var(--mint); background: var(--mint-soft); }
.lt-opt.is-off { border-color: var(--peach); }
.lt-emo { font-size: 2.6rem; line-height: 1.1; }
.lt-emo.big { font-size: 3.6rem; }
.lt-txt { font-family: var(--font-head); font-size: 1.1rem; }
.lt-txt.big { font-size: 2rem; }
.lt-sub { font-size: 0.85rem; color: var(--ink-soft); font-weight: 700; }

.lt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}
.lt-row.tight { gap: 6px; margin-top: 8px; }
.lt-tally { font-weight: 800; color: var(--ink-soft); text-align: center; }

/* pattern strip */
.lt-pattern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
}
.lt-pcell {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.lt-pcell.is-q { background: var(--sun-soft); font-family: var(--font-head); font-weight: 800; }

/* counting */
.lt-countfield {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}
.lt-countitem {
  position: relative;
  width: 68px; height: 68px;
  border: 0;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-size: 2.2rem;
  transition: transform 0.15s;
}
.lt-countitem.counted { background: var(--mint-soft); }
.lt-countitem.counted::after {
  content: attr(data-n);
  position: absolute;
  top: -8px;
  inset-inline-end: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
}
.lt-options.ready { outline: none; }

/* matching */
.lt-match {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lt-mcol { display: grid; gap: 10px; align-content: start; }
.lt-mcard {
  min-height: 76px;
  border: 4px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 10px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: transform 0.15s, border-color 0.2s, opacity 0.3s;
}
.lt-mcard:hover { transform: translateY(-3px); }
.lt-mcard.is-picked { border-color: var(--sky); background: var(--sky-soft); }
.lt-mcard.is-done { border-color: var(--mint); background: var(--mint-soft); opacity: 0.55; pointer-events: none; }

/* sorting */
.lt-tray {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  min-height: 84px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(31, 42, 90, 0.04);
  margin-bottom: 16px;
}
.lt-card {
  min-width: 84px;
  min-height: 72px;
  border: 4px solid transparent;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 8px 12px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, border-color 0.2s;
  cursor: grab;
}
.lt-card:hover { transform: translateY(-3px); }
.lt-card.is-picked { border-color: var(--sky); transform: scale(1.06); }
.lt-card.is-done { border-color: var(--mint); cursor: default; }
.lt-bins {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.lt-bin {
  background: var(--c, var(--sky-soft));
  border: 4px dashed rgba(31, 42, 90, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px;
  min-height: 130px;
  transition: border-color 0.2s, transform 0.15s;
}
.lt-bin.is-over { border-color: var(--sky); transform: scale(1.02); }
.lt-binhead {
  font-family: var(--font-head);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.05rem;
}
.lt-binhead span { font-size: 1.8rem; }
.lt-binitems { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lt-binitems .lt-card { min-width: 64px; min-height: 58px; }

/* ordering */
.lt-orderline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  min-height: 90px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--mint-soft);
  margin-bottom: 14px;
}
.lt-pool { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* memory */
.lt-memory {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 10px;
  max-width: 460px;
  margin-inline: auto;
}
.lt-mem {
  aspect-ratio: 1;
  border: 0;
  background: none;
  padding: 0;
  perspective: 700px;
}
.lt-memin {
  position: relative;
  display: block;
  width: 100%; height: 100%;
  transition: transform 0.4s;
  transform-style: preserve-3d;
}
.lt-mem.flip .lt-memin { transform: rotateY(180deg); }
.lt-memb, .lt-memf {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
  box-shadow: var(--shadow);
  font-size: 2.2rem;
}
.lt-memb { background: var(--sky); color: #fff; font-family: var(--font-head); font-weight: 800; }
.lt-memf { background: var(--paper); transform: rotateY(180deg); }
.lt-mem.is-done .lt-memf { background: var(--mint-soft); }

/* flashcards */
.lt-flashstage { text-align: center; }
.lt-flash {
  width: min(420px, 100%);
  aspect-ratio: 4 / 3;
  border: 0;
  background: none;
  padding: 0;
  perspective: 900px;
  margin-inline: auto;
  display: block;
}
.lt-flipper {
  position: relative;
  display: block;
  width: 100%; height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}
.lt-flash.flip .lt-flipper { transform: rotateY(180deg); }
.lt-face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}
.lt-face.back { transform: rotateY(180deg); background: var(--sun-soft); }

/* fill in the blank */
.lt-sentence {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4.6vw, 1.9rem);
  line-height: 1.7;
  text-align: center;
}
.lt-gap {
  display: inline-block;
  min-width: 96px;
  padding: 2px 12px;
  margin: 0 6px;
  border-bottom: 5px dotted var(--sky);
  color: var(--sky);
}
.lt-gap.filled { color: var(--mint); border-bottom-color: var(--mint); }

/* writing */
.lt-write { display: grid; gap: 14px; }
.lt-field { display: block; }
.lt-flabel {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.lt-input {
  width: 100%;
  font: inherit;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 3px solid rgba(31, 42, 90, 0.1);
  background: var(--paper);
  outline: none;
  resize: vertical;
}
.lt-input:focus { border-color: var(--sky); }
.lt-ideas, .lt-tips {
  background: var(--sun-soft);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.lt-ideas ul, .lt-tips ul { margin: 8px 0 0; padding-inline-start: 20px; }
.lt-ideas li, .lt-tips li { font-weight: 600; margin-bottom: 4px; }
.lt-saved { font-size: 0.85rem; color: var(--ink-soft); font-weight: 700; text-align: center; }

/* canvas activities */
.lt-cvwrap {
  position: relative;
  width: 100%;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lt-canvas { display: block; width: 100%; touch-action: none; }
.lt-drawinner { position: relative; }
.lt-behind {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
}
.lt-drawinner .lt-cvwrap { position: relative; z-index: 2; background: transparent; }
.lt-drawinner { background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.lt-tools { margin-top: 14px; display: grid; gap: 10px; justify-items: center; }
.lt-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.lt-swatch {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: var(--c);
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}
.lt-palette.big .lt-swatch { width: 54px; height: 54px; }
.lt-swatch:hover { transform: translateY(-3px) scale(1.06); }
.lt-swatch.on { transform: scale(1.18); border-color: var(--ink); }
.lt-sizes { display: flex; gap: 8px; }
.lt-size {
  width: 44px; height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(31, 42, 90, 0.06);
  display: grid;
  place-items: center;
}
.lt-size.on { background: var(--sky-soft); }
.lt-size i { display: block; border-radius: 50%; background: var(--ink); }
.lt-tracelabel {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 8px;
}

/* colouring */
.lt-colour { text-align: center; }
.lt-frame {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  margin-bottom: 14px;
}
.lt-scene { width: min(420px, 100%); margin-inline: auto; }
.lt-scene .fillable { cursor: pointer; transition: fill 0.2s; }
.lt-scene .fillable:hover { opacity: 0.86; }
.lt-scene .fillable:focus-visible { outline: 3px solid var(--sky); }

/* feelings */
.lt-faces {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}
.lt-face-btn {
  border: 4px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 14px 8px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.15s;
}
.lt-face-btn:hover { transform: translateY(-4px); }

/* presentation */
.lt-slides { display: grid; gap: 14px; }
.lt-slide {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
  border-inline-start: 8px solid var(--sun);
}
.lt-slide strong { display: block; font-family: var(--font-head); font-size: 1.1rem; margin: 4px 0 8px; }
.lt-slidenum {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--sun-soft);
  padding: 3px 10px;
  border-radius: 999px;
}
.lt-present {
  margin-top: 16px;
  background: linear-gradient(120deg, var(--sky-soft), var(--mint-soft));
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.lt-presentcard {
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow);
}
.lt-presentcard h3 { font-size: 1.5rem; }
.lt-presentcard p { font-size: 1.15rem; white-space: pre-wrap; margin: 0; }
.lt-timer {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  margin-top: 10px;
  direction: ltr;
}

/* checklist */
.lt-checklist { display: grid; gap: 10px; }
.lt-check {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: start;
  border: 4px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  transition: transform 0.15s, border-color 0.2s;
}
.lt-check:hover { transform: translateY(-2px); }
.lt-check .lt-box {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(31, 42, 90, 0.07);
  color: transparent;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.3rem;
}
.lt-check.on { border-color: var(--mint); background: var(--mint-soft); }
.lt-check.on .lt-box { background: var(--mint); color: #fff; }
.lt-checktext strong { display: block; font-family: var(--font-head); }

/* spot the difference */
.lt-spotrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.lt-spotcell {
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  background: var(--paper);
  border: 4px solid transparent;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.lt-spotcell.tappable { cursor: pointer; }
.lt-spotcell.found { border-color: var(--mint); background: var(--mint-soft); }
.lt-vs { font-size: 1.6rem; margin: 10px 0; }

/* ---------- responsive ---------- */
@media (min-width: 560px) {
  .lrn-ages { grid-template-columns: repeat(3, 1fr); }
  .lrn-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 800px) {
  .lrn-phead { padding: 14px 26px; }
  .lrn-pbody { padding: 26px 26px 40px; }
}
@media (min-width: 900px) {
  .lrn-ages { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 460px) {
  .lrn-agehead, .lrn-subhead { flex-direction: column; text-align: center; gap: 10px; }
  .lrn-rank { flex-direction: column; text-align: center; }
  .lt-pcell, .lt-spotcell { width: 52px; height: 52px; font-size: 1.6rem; }
  .lt-countitem { width: 58px; height: 58px; font-size: 1.8rem; }
  .lrn-tiles { grid-template-columns: repeat(2, 1fr); }
  .lrn-stripscroll > .lrn-tile { flex-basis: 132px; }
}

@media (prefers-reduced-motion: reduce) {
  .lrn-age, .lrn-tile, .lrn-minisub, .lrn-stat, .lrn-badge { animation: none; }
  .lrn-age, .lrn-tile, .lrn-minisub, .lrn-btn, .lt-btn, .lt-opt, .lt-card, .lt-check { transition: none; }
  .lrn-age:hover, .lrn-tile:hover, .lrn-minisub:hover, .lt-opt:hover { transform: none; }
  .lt-memin, .lt-flipper { transition-duration: 0.01s; }
}

/* Printing an activity gives a clean worksheet, no chrome. */
@media print {
  .nav, .lrn-pfoot, .lrn-close, .lrn-pbar, .footer, .lrn-crumb { display: none !important; }
  .lrn-player, .lrn-player-in { position: static; background: #fff; }
  .lrn-pbody { overflow: visible; }
  body { background: #fff; }
}

/* Uploaded pictures inside an activity */
.lt-img { width: 84px; height: 84px; object-fit: contain; }
.lt-qimg { max-height: 220px; margin: 0 auto 10px; object-fit: contain; }

/* ================================================================
   THE GENERATED GAMES
   ================================================================ */

/* a panel meant for the parent, not the child */
.lt-grownup {
  margin-top: 18px;
  background: rgba(31, 42, 90, 0.04);
  border-radius: var(--radius-sm);
  padding: 4px 16px;
}
.lt-grownup > summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 800;
  padding: 12px 0;
  list-style: none;
}
.lt-grownup > summary::-webkit-details-marker { display: none; }
.lt-grownup > summary::after { content: ' ▾'; opacity: 0.5; }
.lt-grownup[open] > summary::after { content: ' ▴'; }
.lt-grownup-in { padding-bottom: 16px; display: grid; gap: 10px; }
.lt-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lt-chip {
  border: 0;
  background: var(--paper);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  min-height: 40px;
}
.lt-chip:hover { transform: translateY(-2px); }
.lt-chip.on { background: var(--ink); color: #fff; }

/* ---------- word puzzle ---------- */
.lt-ws { display: grid; gap: 18px; }
.lt-wsgrid {
  display: grid;
  grid-template-columns: repeat(var(--n, 9), 1fr);
  gap: 3px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: var(--shadow);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  direction: ltr;
}
.lt-wscell {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(0.8rem, 2.6vw, 1.25rem);
  background: rgba(31, 42, 90, 0.04);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.lt-wscell.picking { background: var(--sun); color: var(--ink); }
.lt-wscell.found { background: var(--mint); color: #fff; }
.lt-wsside h3 { font-size: 1.1rem; margin-bottom: 8px; }
.lt-wslist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lt-wslist li {
  background: var(--paper);
  border-radius: 999px;
  padding: 7px 15px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.lt-wslist li.got {
  background: var(--mint-soft);
  text-decoration: line-through;
  opacity: 0.7;
}
.lt-wsnote { text-align: center; color: var(--ink-soft); font-weight: 700; font-size: 0.9rem; }

/* ---------- word scramble ---------- */
.lt-slots, .lt-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0;
}
.lt-slot {
  width: 54px; height: 62px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 3px dashed rgba(31, 42, 90, 0.22);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
}
.lt-slot.filled { border-style: solid; background: var(--sky-soft); border-color: var(--sky); }
.lt-slots.right .lt-slot { background: var(--mint-soft); border-color: var(--mint); }
.lt-tile {
  width: 54px; height: 62px;
  border: 0;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  transition: transform 0.15s, opacity 0.2s;
}
.lt-tile:hover { transform: translateY(-3px); }
.lt-tile.used { opacity: 0.25; pointer-events: none; }

/* ---------- doodle words ---------- */
.lt-nameart { text-align: center; }
.lt-namepad { background: var(--paper); }

/* ---------- calm breathing ---------- */
.lt-breathe { text-align: center; }
.lt-breathe-stage {
  height: 260px;
  display: grid;
  place-items: center;
  margin: 10px 0;
}
.lt-breathe-ball {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d9eefb, #5dbbea);
  box-shadow: 0 18px 50px rgba(93, 187, 234, 0.4);
  transform: scale(0.45);
  transition: transform 4s ease-in-out;
}
.lt-breathe-label { font-size: clamp(1.4rem, 5vw, 2.2rem); margin: 4px 0; }
.lt-breathe-count {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  margin: 0;
  color: var(--sky);
}

/* ---------- spin a challenge ---------- */
.lt-spinner { text-align: center; }
.lt-wheelwrap {
  position: relative;
  width: min(320px, 82vw);
  margin: 10px auto 18px;
}
.lt-wheel {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid var(--paper);
  box-shadow: var(--shadow-lg);
}
/* Each label is a full size overlay pinned to the top of the wheel, then rotated
   about the centre. Only rotate: any translate would push it off the wheel. */
.lt-wheelemoji {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 22px;
  font-size: 1.7rem;
  pointer-events: none;
  transform-origin: 50% 50%;
}
.lt-wheelpin {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: var(--ink);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2));
}
.lt-missioncard {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 12px;
}
.lt-missioncard h3 { font-size: clamp(1.2rem, 4vw, 1.7rem); margin: 8px 0 4px; }

/* ---------- gratitude jar ---------- */
.lt-gratitude { text-align: center; }
.lt-jar {
  width: min(360px, 88vw);
  margin: 12px auto;
}
.lt-jarlid {
  display: block;
  height: 22px;
  border-radius: 10px 10px 4px 4px;
  background: var(--peach);
  width: 62%;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.lt-jarbody {
  min-height: 220px;
  border: 6px solid rgba(93, 187, 234, 0.35);
  border-top-width: 3px;
  border-radius: 14px 14px 34px 34px;
  background: rgba(217, 238, 251, 0.35);
  padding: 12px 10px;
  display: flex;
  flex-direction: column-reverse;
  gap: 7px;
  justify-content: flex-start;
}
.lt-slip {
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: start;
  box-shadow: var(--shadow);
  transform: rotate(var(--tilt, 0deg));
}
.lt-gratform { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lt-gratform .lt-input { flex: 1; min-width: 200px; }

@media (min-width: 700px) {
  .lt-ws { grid-template-columns: 1.4fr 1fr; align-items: start; }
}
@media (max-width: 420px) {
  .lt-slot, .lt-tile { width: 44px; height: 52px; font-size: 1.35rem; }
  .lt-breathe-stage { height: 210px; }
  .lt-breathe-ball { width: 175px; height: 175px; }
}
@media (prefers-reduced-motion: reduce) {
  .lt-breathe-ball { transition: none; transform: scale(0.8); }
  .lt-wheel { transition: none !important; }
}
