.landingPage2026 {
  --cream: #fbf8f1;
  --cream-deep: #f3ecdf;
  --paper: #fffdf8;
  --ink: #24221f;
  --muted: #6e685e;
  --mint: #dff2e9;
  --mint-strong: #319b78;
  --mint-dark: #176c55;
  --wood: #a96f3c;
  --line: rgba(54, 48, 40, 0.12);
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 3%, rgba(214, 241, 229, 0.72), transparent 26rem),
    radial-gradient(circle at 8% 23%, rgba(255, 229, 184, 0.35), transparent 24rem),
    var(--cream);
  color: var(--ink);
}

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

.landingPage2026 a {
  text-decoration: none;
}

.landingPage2026 :focus-visible {
  outline: 3px solid rgba(49, 155, 120, 0.42);
  outline-offset: 3px;
}

.hero,
.section {
  width: min(100% - clamp(2rem, 7vw, 7.5rem), 1380px);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 690px;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 4.5rem;
}

.heroCopy {
  position: relative;
  z-index: 5;
  animation: fadeUp 700ms 100ms both cubic-bezier(.2, .8, .2, 1);
}

.heroKicker,
.sectionHeader > span,
.finalCta > div:first-child > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 1rem 0 1.2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.heroSubtitle {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.7;
}

.heroActions,
.finalCta > div:first-child > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.primaryButton,
.secondaryButton {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primaryButton {
  background: linear-gradient(135deg, #3cab82, #278865);
  box-shadow: 0 12px 24px rgba(31, 122, 92, 0.2);
  color: #fff;
}

.primaryButton svg {
  width: 18px;
  transition: transform 180ms ease;
}

.primaryButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(31, 122, 92, 0.27);
}

.primaryButton:hover svg {
  transform: translateX(4px);
}

.secondaryButton {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.secondaryButton:hover {
  border-color: rgba(49, 155, 120, 0.42);
  background: #fff;
  transform: translateY(-2px);
}

.trustRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-top: 1.5rem;
  color: #5c665f;
  font-size: 0.78rem;
  font-weight: 700;
}

.trustRow span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.trustRow svg {
  width: 16px;
  color: var(--mint-strong);
}

.heroStage {
  position: relative;
  min-height: 470px;
  animation: shelfRise 760ms 180ms both cubic-bezier(.2, .8, .2, 1);
  isolation: isolate;
}

.heroStage::before {
  position: absolute;
  inset: 12% 2% 5% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(221, 242, 232, 0.35) 54%, transparent 72%);
  content: '';
  filter: blur(4px);
}

.shelfObject {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(79, 56, 32, 0.14);
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(65, 49, 31, 0.16);
  opacity: 0;
  animation: objectIn 520ms both cubic-bezier(.2, .8, .2, 1);
}

.shelfObject img {
  object-fit: cover;
}

.bookCover {
  left: 1%;
  bottom: 104px;
  width: 140px;
  height: 205px;
  border-radius: 8px 12px 12px 8px;
  transform: rotate(-4deg);
  animation-delay: 360ms;
}

.bookCover::after {
  position: absolute;
  inset: 0 auto 0 10px;
  width: 3px;
  background: rgba(255, 255, 255, 0.55);
  content: '';
}

.bookCover span {
  position: absolute;
  inset: auto 9px 12px;
  z-index: 2;
  border-radius: 8px;
  background: rgba(18, 31, 27, 0.74);
  color: white;
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.45rem;
  text-align: center;
}

.openBook {
  left: 17%;
  bottom: 96px;
  width: min(52%, 390px);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation-delay: 470ms;
}

.openBook img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 16px rgba(65, 49, 31, 0.22));
}

.characterCard {
  right: 22%;
  bottom: 102px;
  width: 122px;
  height: 210px;
  border-radius: 14px;
  animation-delay: 580ms;
}

.characterCard small {
  position: absolute;
  inset: 11px 8px auto;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
}

.characterCard img {
  position: absolute;
  right: 7px;
  bottom: -12px;
  width: 108px;
  height: auto;
  object-fit: contain;
}

.animationPreview {
  right: 1%;
  bottom: 108px;
  width: 150px;
  height: 192px;
  border-radius: 12px;
  animation-delay: 690ms;
}

.animationPreview img {
  object-position: 62% 50%;
}

.animationPreview::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(20, 25, 23, 0.58));
  content: '';
}

.playBadge {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(38, 132, 98, 0.9);
  color: white;
  transform: translate(-50%, -50%);
}

.playBadge svg {
  width: 18px;
  transform: translateX(1px);
}

.shelfPlank {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 32px;
  width: 100%;
  height: 110px;
  object-fit: fill;
  filter: drop-shadow(0 20px 16px rgba(69, 43, 21, 0.22));
}

.heroCatWrap {
  position: absolute;
  z-index: 5;
  right: -4%;
  bottom: 35px;
  width: 126px;
  transform-origin: 50% 100%;
  animation: catIdle 4s 1.1s ease-in-out infinite;
}

.heroCat {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.catTail {
  position: absolute;
  z-index: 1;
  right: -27px;
  bottom: 13px;
  width: 56px;
  height: 84px;
  border: 14px solid #3c2b24;
  border-left-color: transparent;
  border-radius: 50%;
  transform-origin: 20% 90%;
  animation: tailMove 2.8s 1s ease-in-out infinite;
}

.catBlink {
  position: absolute;
  z-index: 4;
  top: 16.5%;
  left: 13%;
  width: 69%;
  height: 2.7%;
  border-radius: 50%;
  background: #3e2f29;
  opacity: 0;
  transform: scaleY(0.2);
  animation: blink 5.4s 1.8s infinite;
}

.heroSparkle {
  position: absolute;
  z-index: 6;
  color: #e5b254;
  font-size: 2rem;
  animation: twinkle 2.5s ease-in-out infinite;
}

.sparkleOne { top: 12%; right: 10%; }
.sparkleTwo { top: 20%; left: 12%; animation-delay: 0.8s; }

.ideaForm {
  position: relative;
  z-index: 8;
  grid-column: 1 / -1;
  display: flex;
  width: min(100%, 920px);
  min-height: 64px;
  align-items: center;
  gap: 0.8rem;
  margin: -1rem auto 0;
  padding: 0.48rem 0.52rem 0.48rem 1.15rem;
  border: 1px solid rgba(49, 155, 120, 0.25);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(65, 49, 31, 0.1);
  backdrop-filter: blur(12px);
}

.ideaForm > svg {
  width: 20px;
  flex: 0 0 auto;
  color: var(--mint-strong);
}

.ideaForm input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  outline: 0;
}

.ideaForm input::placeholder {
  color: #9a948a;
}

.ideaForm button {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 15px;
  background: var(--mint-strong);
  color: white;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.ideaForm button:hover { background: var(--mint-dark); transform: translateY(-2px); }
.ideaForm button svg { width: 19px; }

.formError {
  position: absolute;
  z-index: 9;
  bottom: 1.75rem;
  left: 50%;
  margin: 0;
  color: #a13f36;
  font-size: 0.8rem;
  transform: translateX(-50%);
}

.ideaChips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: -2.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.ideaChips button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  cursor: pointer;
  padding: 0.48rem 0.76rem;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ideaChips button:hover { border-color: rgba(49, 155, 120, 0.45); color: var(--mint-dark); transform: translateY(-1px); }

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.sectionHeader {
  max-width: 690px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.sectionHeader h2,
.productCopy h2,
.finalCta h2 {
  margin: 0.7rem 0 0.75rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

.sectionHeader p,
.productCopy > p,
.finalCta p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.modeGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.modeCard {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 10px 30px rgba(65, 49, 31, 0.06);
  padding: 0.72rem 0.72rem 1.4rem;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.modeCard:hover {
  border-color: rgba(49, 155, 120, 0.34);
  box-shadow: 0 22px 44px rgba(65, 49, 31, 0.12);
  transform: translateY(-8px);
}

.modeVisual {
  position: relative;
  overflow: hidden;
  height: 205px;
  border-radius: 18px;
  background: var(--cream-deep);
}

.modeVisual > img { object-fit: cover; transition: transform 500ms ease; }
.modeCard:hover .modeVisual > img { transform: scale(1.04); }

.modeIcon {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--mint-strong);
  box-shadow: 0 8px 18px rgba(31, 94, 73, 0.2);
  color: white;
}

.modeIcon svg { width: 20px; }
.modeCard[data-mode='animation'] .modeIcon { background: #e97c69; }
.modeCard[data-mode='kids-song'] .modeIcon { background: #efad48; }
.modeCard[data-mode='freestyle'] .modeIcon { background: #7469c8; }
.modeCard h3 { margin: 1.25rem 0 0.5rem; padding-inline: 0.55rem; font-size: 1.3rem; }
.modeCard p { flex: 1; margin: 0; padding-inline: 0.55rem; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.modeCard > a { display: inline-flex; align-items: center; gap: 0.4rem; margin: 1rem 0.55rem 0; color: var(--mint-dark); font-size: 0.86rem; font-weight: 850; }
.modeCard > a svg { width: 16px; transition: transform 160ms ease; }
.modeCard > a:hover svg { transform: translateX(4px); }
.musicNotes { position: absolute; top: 1rem; right: 1.2rem; color: #b66e14; font-size: 1.5rem; font-weight: 900; letter-spacing: 0.2rem; }

.howSection {
  width: min(100% - clamp(2rem, 5vw, 5rem), 1480px);
  border: 1px solid rgba(49, 155, 120, 0.13);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(226, 243, 234, 0.66));
  padding-inline: clamp(1.5rem, 5vw, 5.5rem);
}

.stepGrid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stepCard {
  position: relative;
  min-height: 245px;
  border: 1px solid rgba(54, 48, 40, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.8);
  padding: 1.35rem;
}

.stepNumber { float: right; color: rgba(49, 155, 120, 0.25); font-family: Georgia, serif; font-size: 2rem; font-weight: 800; }
.stepIcon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 16px; background: var(--mint); color: var(--mint-dark); }
.stepIcon svg { width: 24px; }
.stepCard h3 { margin: 1.25rem 0 0.45rem; font-size: 1.05rem; }
.stepCard p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.stepArrow { position: absolute; z-index: 3; top: 50%; right: -1.5rem; width: 24px; color: var(--mint-strong); }
.howCat { position: absolute; right: -1rem; bottom: -2.5rem; z-index: 4; width: 116px; height: auto; filter: drop-shadow(0 12px 18px rgba(53, 42, 29, 0.14)); }

.productSection {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}

.productLabel {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.productLabel svg { width: 18px; }
.productCopy ul { display: grid; gap: 0.65rem; margin: 1.6rem 0 1.8rem; padding: 0; list-style: none; }
.productCopy li { display: flex; align-items: center; gap: 0.58rem; color: #4e4a43; font-size: 0.92rem; }
.productCopy li svg { width: 17px; flex: 0 0 auto; color: var(--mint-strong); stroke-width: 3; }

.pictureSection {
  margin-top: clamp(3rem, 7vw, 7rem);
  border-radius: 34px;
  background: linear-gradient(135deg, #fffaf1, #edf7f1);
  padding: clamp(2rem, 6vw, 5rem);
}

.pictureVisual { position: relative; min-height: 470px; }
.flipBook { position: absolute; right: 0; bottom: 0; width: min(100%, 650px); opacity: 0; transform: translateY(28px) scale(0.97); transition: opacity 600ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.pictureSection[data-visible='true'] .flipBook { opacity: 1; transform: none; }
.flipBook > img { display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 24px rgba(61, 45, 23, 0.18)); }
.flipPage { position: absolute; z-index: 2; top: 10%; left: 50%; width: 42%; height: 78%; border-radius: 0 18px 18px 0; background: linear-gradient(100deg, rgba(255,255,255,.18), rgba(255,255,255,.8) 54%, rgba(226,207,171,.45)); box-shadow: -12px 0 20px rgba(65,49,31,.13); opacity: 0; transform: perspective(800px) rotateY(0deg); transform-origin: left center; }
.pictureSection[data-visible='true'] .flipPage { animation: pageFlip 1.15s 600ms cubic-bezier(.3,.7,.2,1) both; }
.storyboardCard { position: absolute; z-index: 3; top: 0; left: -3%; width: 245px; height: 155px; overflow: hidden; border: 7px solid white; border-radius: 18px; box-shadow: 0 18px 35px rgba(65,49,31,.17); opacity: 0; transform: rotate(-5deg) translateY(16px); transition: opacity 500ms 850ms ease, transform 600ms 850ms ease; }
.storyboardCard img { object-fit: cover; }
.pictureSection[data-visible='true'] .storyboardCard { opacity: 1; transform: rotate(-5deg); }

.animationSection {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin-top: 1.5rem;
  border-radius: 34px;
  background: linear-gradient(135deg, #edf7f1, #fff8ef);
  padding: clamp(2rem, 6vw, 5rem);
}

.animationVisual { min-width: 0; opacity: 0; transform: translateX(-24px); transition: opacity 600ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.animationSection[data-visible='true'] .animationVisual { opacity: 1; transform: none; }
.videoCard { position: relative; overflow: hidden; aspect-ratio: 16/10; border: 9px solid #fff; border-radius: 24px; background: #19383a; box-shadow: 0 25px 45px rgba(47, 56, 46, 0.18); }
.videoCard > img { object-fit: cover; }
.videoCard::after { position: absolute; inset: 58% 0 0; background: linear-gradient(transparent, rgba(13, 27, 31, 0.78)); content: ''; }
.videoPlay { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 72px; height: 72px; place-items: center; border: 7px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(49,155,120,.94); color: white; transform: translate(-50%,-50%); animation: playPulse 2.6s ease-in-out infinite; }
.videoPlay svg { width: 28px; transform: translateX(2px); }
.videoControls { position: absolute; z-index: 4; right: 1.2rem; bottom: 1.1rem; left: 1.2rem; display: flex; align-items: center; gap: .65rem; color: white; }
.videoControls > svg { width: 15px; }
.videoControls span { overflow: hidden; height: 5px; flex: 1; border-radius: 999px; background: rgba(255,255,255,.34); }
.videoControls span i { display: block; width: 55%; height: 100%; border-radius: inherit; background: #69d4ae; animation: progressMove 4s ease-in-out infinite alternate; }
.videoControls small { font-size: .68rem; }

.examplesSection { text-align: center; }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-bottom: 1.8rem; }
.filters button { min-height: 38px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.68); color: var(--muted); cursor: pointer; padding: .5rem .95rem; font-size: .8rem; font-weight: 750; transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease; }
.filters button[aria-selected='true'] { border-color: rgba(49,155,120,.32); background: var(--mint); color: var(--mint-dark); transform: translateY(-1px); }
.exampleGrid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 1rem; margin-bottom: 2rem; animation: examplesIn 320ms both ease; text-align: left; }
.exampleCard { min-width: 0; }
.exampleImage { position: relative; overflow: hidden; aspect-ratio: 1/1; border-radius: 18px; background: var(--cream-deep); box-shadow: 0 12px 25px rgba(65,49,31,.09); }
.exampleImage img { object-fit: cover; transition: transform 400ms ease; }
.exampleCard:hover .exampleImage img { transform: scale(1.04); }
.exampleImage > span { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 42px; height: 42px; place-items: center; border: 4px solid rgba(255,255,255,.58); border-radius: 50%; background: rgba(36,34,31,.62); color: white; transform: translate(-50%,-50%); }
.exampleImage > span svg { width: 18px; }
.exampleCard h3 { margin: .8rem 0 .35rem; overflow: hidden; font-size: .9rem; text-overflow: ellipsis; white-space: nowrap; }
.exampleCard small { display: inline-flex; border-radius: 999px; background: var(--mint); color: var(--mint-dark); font-size: .66rem; padding: .3rem .55rem; }

.whySection { width: min(100% - clamp(2rem,5vw,5rem),1480px); border-radius: 32px; background: rgba(255,255,255,.65); padding-inline: clamp(1.5rem,5vw,5rem); }
.whyGrid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; }
.whyGrid article { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,248,.85); padding: 1.5rem; }
.whyGrid article > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: var(--mint); color: var(--mint-dark); }
.whyGrid article > span svg { width: 23px; }
.whyGrid h3 { margin: 1rem 0 .4rem; font-size: 1rem; }
.whyGrid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.6; }

.finalCta {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  align-items: center;
  min-height: 330px;
  margin-top: clamp(4rem,8vw,7rem);
  margin-bottom: clamp(4rem,7vw,6rem);
  overflow: hidden;
  border: 1px solid rgba(49,155,120,.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.9), transparent 18rem),
    linear-gradient(135deg,#e8f5ee,#fff7e9);
  padding: clamp(2rem,5vw,4.2rem);
}
.finalCta h2 { max-width: 760px; }
.finalCta p { max-width: 720px; }
.finalCta .primaryButton:hover { box-shadow: 0 0 0 6px rgba(49,155,120,.12),0 16px 32px rgba(31,122,92,.25); }
.finalCat { position: relative; align-self: stretch; }
.finalCat img:first-child { position: absolute; z-index: 2; right: 15%; bottom: 12%; width: 140px; height: auto; filter: drop-shadow(0 15px 20px rgba(65,49,31,.15)); }
.finalCat img:last-child { position: absolute; right: -15%; bottom: -4%; width: 125%; height: 82px; object-fit: fill; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes shelfRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes objectIn { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes catIdle { 0%,100% { transform: rotate(0deg) translateY(0); } 50% { transform: rotate(.8deg) translateY(-3px); } }
@keyframes tailMove { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(9deg); } }
@keyframes blink { 0%,45%,49%,100% { opacity: 0; transform: scaleY(.15); } 46%,48% { opacity: .95; transform: scaleY(1); } }
@keyframes twinkle { 0%,100% { opacity: .45; transform: scale(.85) rotate(0); } 50% { opacity: 1; transform: scale(1.12) rotate(12deg); } }
@keyframes pageFlip { 0% { opacity: 0; transform: perspective(800px) rotateY(0); } 18% { opacity: .88; } 72% { opacity: .55; } 100% { opacity: 0; transform: perspective(800px) rotateY(-170deg); } }
@keyframes playPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(105,212,174,.35); transform: translate(-50%,-50%) scale(1); } 50% { box-shadow: 0 0 0 14px rgba(105,212,174,0); transform: translate(-50%,-50%) scale(1.03); } }
@keyframes progressMove { from { width: 22%; } to { width: 72%; } }
@keyframes examplesIn { from { opacity: 0; transform: translateY(8px) scale(.985); } to { opacity: 1; transform: none; } }

@media (max-width: 1160px) {
  .hero { grid-template-columns: minmax(0,.9fr) minmax(460px,1.1fr); }
  .bookCover { left: 0; width: 115px; height: 180px; }
  .openBook { left: 11%; width: 58%; }
  .characterCard { right: 19%; width: 104px; height: 188px; }
  .animationPreview { width: 130px; }
  .modeGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .modeCard { min-height: 420px; }
  .exampleGrid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4rem; text-align: center; }
  .heroCopy { display: flex; flex-direction: column; align-items: center; }
  .heroStage { min-height: 430px; margin-top: -1rem; }
  .ideaForm { margin-top: -1.5rem; }
  .formError { bottom: .6rem; }
  .ideaChips { margin-top: -1.3rem; }
  .productSection,.animationSection { grid-template-columns: 1fr; gap: 2.5rem; }
  .pictureVisual { min-height: 420px; }
  .animationSection .animationVisual { order: 2; }
  .stepGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .stepArrow { display: none; }
  .whyGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .finalCta { grid-template-columns: 1fr 190px; }
}

@media (max-width: 640px) {
  .hero,.section { width: min(100% - 1.5rem,1380px); }
  .hero { gap: 1rem; padding: 3rem 0 3.5rem; }
  .hero h1 { font-size: clamp(2.7rem,12vw,4rem); }
  .heroStage { min-height: 355px; transform: scale(.96); transform-origin: center; }
  .bookCover { bottom: 83px; width: 86px; height: 145px; }
  .openBook { left: 8%; bottom: 84px; width: 62%; }
  .characterCard { right: 16%; bottom: 86px; width: 78px; height: 148px; }
  .characterCard img { width: 76px; }
  .animationPreview { right: 0; bottom: 89px; width: 93px; height: 145px; }
  .shelfPlank { bottom: 29px; height: 78px; }
  .heroCatWrap { right: -2%; bottom: 31px; width: 84px; }
  .ideaForm { min-height: 58px; margin-top: -2rem; border-radius: 18px; }
  .ideaForm button { width: 44px; height: 44px; border-radius: 13px; }
  .ideaChips { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; margin: -1.2rem -.75rem 0; padding: 0 .75rem .4rem; }
  .ideaChips strong,.ideaChips button { flex: 0 0 auto; }
  .modeGrid,.stepGrid,.whyGrid { grid-template-columns: 1fr; }
  .modeCard { min-height: 0; }
  .howCat { display: none; }
  .pictureSection,.animationSection,.howSection,.whySection,.finalCta { width: min(100% - 1rem,1480px); border-radius: 24px; }
  .pictureVisual { min-height: 320px; }
  .storyboardCard { width: 150px; height: 98px; }
  .productCopy .primaryButton { width: 100%; }
  .exampleGrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .finalCta { grid-template-columns: 1fr; padding-bottom: 12rem; text-align: center; }
  .finalCta > div:first-child > div { justify-content: center; }
  .finalCat { position: absolute; right: 0; bottom: 0; left: 0; height: 180px; }
  .finalCat img:first-child { right: 50%; width: 105px; transform: translateX(50%); }
  .finalCat img:last-child { right: 8%; width: 84%; }
}

@media (prefers-reduced-motion: reduce) {
  .landingPage2026 *,
  .landingPage2026 *::before,
  .landingPage2026 *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .shelfObject,.flipBook,.storyboardCard,.animationVisual { opacity: 1; transform: none; }
  .flipPage,.catBlink,.catTail { display: none; }
}

/* ReadKidz story-workspace refresh: the homepage should feel like opening a
   children's creation desk, with the product controls and shelf doing the
   visual work instead of oversized generic marketing typography. */
.landingPage2026 {
  background:
    radial-gradient(circle at 82% 7%, rgba(202, 238, 220, 0.78), transparent 28rem),
    radial-gradient(circle at 7% 22%, rgba(255, 225, 177, 0.38), transparent 25rem),
    linear-gradient(180deg, #fcf8ef 0%, #fbf8f1 46%, #f8f3e9 100%);
}

.hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  min-height: 0;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2.7rem, 4.5vw, 4rem) 0 2.6rem;
}

.heroCopy {
  align-self: center;
}

.hero h1 {
  max-width: 620px;
  margin: 0.9rem 0 1.15rem;
  font-family: ui-rounded, 'Arial Rounded MT Bold', 'Nunito Sans', system-ui, sans-serif;
  font-size: clamp(2.75rem, 3.45vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.heroSubtitle {
  max-width: 560px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.heroActions {
  margin-top: 1.55rem;
}

.trustRow {
  margin-top: 1.25rem;
}

.heroStage {
  min-height: 440px;
  margin-right: -1.5rem;
}

.heroStage::before {
  inset: 3% -2% 3% 2%;
  border: 1px solid rgba(49, 155, 120, 0.08);
  border-radius: 44% 56% 46% 54%;
  background:
    radial-gradient(circle at 32% 42%, rgba(255,255,255,.98), rgba(232,247,239,.84) 48%, rgba(245,235,216,.28) 72%, transparent 76%);
}

.bookCover {
  left: 0;
  bottom: 118px;
  width: 158px;
  height: 232px;
}

.openBook {
  left: 15%;
  bottom: 106px;
  width: min(55%, 430px);
}

.animationPreview {
  right: 18%;
  bottom: 118px;
  width: 166px;
  height: 220px;
}

.characterCard {
  right: 1.5%;
  bottom: 115px;
  width: 132px;
  height: 224px;
}

.characterCard img {
  width: 120px;
}

.shelfPlank {
  right: -1%;
  bottom: 28px;
  width: 102%;
  height: 118px;
}

.heroCatWrap {
  right: -7%;
  bottom: 34px;
  width: 144px;
}

.heroComposer {
  position: relative;
  z-index: 8;
  grid-column: 1 / -1;
  width: min(100%, 1080px);
  margin: -1.8rem auto 0;
  border: 1px solid rgba(97, 76, 49, 0.13);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 24px 60px rgba(77, 57, 34, 0.13);
  padding: 0.7rem;
  backdrop-filter: blur(14px);
}

.createModeTabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  border-radius: 19px;
  background: #f4eee3;
  padding: 0.4rem;
}

.createModeTabs button {
  display: inline-flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #625d54;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.createModeTabs button > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,255,255,.72);
}

.createModeTabs button svg {
  width: 16px;
}

.createModeTabs button[aria-selected='true'] {
  background: #fffdf8;
  box-shadow: 0 6px 16px rgba(70, 51, 30, 0.1), inset 0 0 0 1px rgba(49,155,120,.17);
  color: var(--mint-dark);
  transform: translateY(-1px);
}

.createModeTabs button[aria-selected='true'] > span {
  background: var(--mint);
}

.heroComposer .ideaForm {
  width: 100%;
  min-height: 68px;
  margin: 0.55rem 0 0;
  border-color: rgba(49, 155, 120, 0.18);
  border-radius: 19px;
  box-shadow: none;
}

.heroComposer .ideaForm:focus-within {
  border-color: rgba(49,155,120,.52);
  box-shadow: 0 0 0 4px rgba(49,155,120,.08);
}

.heroComposer .ideaChips {
  justify-content: flex-start;
  margin: 0;
  padding: 0.8rem 0.5rem 0.15rem;
}

.section {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.sectionHeader h2,
.productCopy h2,
.finalCta h2 {
  font-family: ui-rounded, 'Arial Rounded MT Bold', 'Nunito Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.modeGrid {
  gap: 1.25rem;
}

.modeCard {
  min-height: 470px;
  overflow: hidden;
  border-color: rgba(82, 67, 48, 0.13);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 34px rgba(70, 51, 30, 0.07);
  padding: 0.78rem 0.78rem 1.45rem;
}

.modeCard::before {
  display: block;
  width: 52px;
  height: 5px;
  margin: -0.78rem 0 0.7rem;
  border-radius: 0 0 999px 999px;
  background: var(--mint-strong);
  content: '';
}

.modeCard[data-mode='animation']::before { background: #e97c69; }
.modeCard[data-mode='kids-song']::before { background: #efad48; }
.modeCard[data-mode='freestyle']::before { background: #7469c8; }

.modeVisual {
  height: 235px;
  border: 6px solid rgba(255,255,255,.94);
  border-radius: 20px;
  box-shadow: 0 9px 22px rgba(66, 50, 34, .08);
}

.modeCard h3 {
  margin-top: 1.1rem;
  font-family: ui-rounded, 'Arial Rounded MT Bold', system-ui, sans-serif;
  font-size: 1.25rem;
}

.modeCard > a {
  width: fit-content;
  border-radius: 999px;
  background: rgba(223,242,233,.72);
  padding: 0.58rem 0.75rem;
}

.howSection {
  width: min(100% - clamp(2rem, 5vw, 5rem), 1480px);
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(223,242,233,.6) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(223,242,233,.6) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(255,253,248,.86);
  box-shadow: inset 0 0 0 1px rgba(49,155,120,.1);
}

.stepGrid {
  gap: 1.15rem;
}

.stepGrid::before {
  position: absolute;
  top: 47px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(49,155,120,.18), rgba(49,155,120,.75), rgba(49,155,120,.18));
  content: '';
}

.stepCard {
  min-height: 260px;
  border: 0;
  background: rgba(255,253,248,.92);
  box-shadow: 0 10px 28px rgba(65,49,31,.07);
}

.stepModeCard {
  border: 2px solid rgba(49,155,120,.34);
  background: linear-gradient(150deg, #f8fff9, #e3f5eb);
  box-shadow: 0 18px 38px rgba(36,116,87,.15);
  transform: translateY(-12px);
}

.stepModeCard .stepIcon {
  background: var(--mint-strong);
  color: #fff;
}

.stepModeList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.stepModeList span {
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--mint-dark);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.34rem 0.5rem;
}

.pictureSection,
.animationSection {
  min-height: 610px;
  border: 1px solid rgba(70, 55, 36, .09);
  border-radius: 38px;
  box-shadow: 0 20px 60px rgba(69,50,28,.08);
}

.pictureSection {
  background:
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.92), transparent 18rem),
    linear-gradient(135deg, #fff9ed, #e8f6ee);
}

.pictureVisual {
  min-height: 500px;
}

.flipBook {
  width: min(100%, 700px);
}

.storyboardCard {
  width: 270px;
  height: 172px;
}

.bookWorkflowLabels {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
}

.bookLabel {
  position: absolute;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(49,155,120,.18);
  border-radius: 999px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 9px 22px rgba(63,48,31,.12);
  color: var(--mint-dark);
  font-size: .72rem;
  font-weight: 850;
  padding: .5rem .72rem;
}

.bookLabel::before {
  width: 7px;
  height: 7px;
  margin-right: .4rem;
  border-radius: 50%;
  background: var(--mint-strong);
  content: '';
}

.bookLabel-story { top: 11%; left: 29%; }
.bookLabel-characters { top: 30%; right: -1%; }
.bookLabel-pages { bottom: 11%; left: 14%; }
.bookLabel-preview { top: 7%; right: 10%; }
.bookLabel-export { right: 5%; bottom: 8%; }

.animationSection {
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.92), transparent 19rem),
    linear-gradient(135deg, #e8f6ee, #fff7ea);
}

.videoCard {
  aspect-ratio: 16 / 9;
  border-width: 10px;
  border-radius: 28px;
  box-shadow: 0 28px 54px rgba(37,57,49,.2);
}

.exampleGrid {
  gap: 1.05rem;
}

.exampleCard {
  border: 1px solid rgba(70,55,36,.1);
  border-radius: 20px;
  background: rgba(255,253,248,.92);
  box-shadow: 0 10px 26px rgba(65,49,31,.07);
  padding: .55rem .55rem .8rem;
}

.exampleImage {
  aspect-ratio: 4 / 3;
  border-radius: 15px;
}

.exampleCard h3,
.exampleCard small {
  margin-left: .25rem;
}

.whySection {
  border: 1px solid rgba(70,55,36,.08);
  border-radius: 38px;
  background: rgba(255,253,248,.76);
  box-shadow: 0 20px 56px rgba(65,49,31,.06);
}

.whyGrid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 0;
  background: linear-gradient(160deg, #fffdf8, #eef8f3);
  box-shadow: inset 0 0 0 1px rgba(49,155,120,.11);
  padding: 1.65rem;
}

.whyGrid article:nth-child(2) { background: linear-gradient(160deg, #fffdf8, #fff2e6); }
.whyGrid article:nth-child(3) { background: linear-gradient(160deg, #fffdf8, #f0edff); }
.whyGrid article:nth-child(4) { background: linear-gradient(160deg, #fffdf8, #edf6ff); }

.whyGrid article > small {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  color: rgba(49,155,120,.25);
  font-family: ui-rounded, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.whyGrid article > span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
}

.whyGrid h3 {
  max-width: 200px;
  font-family: ui-rounded, 'Arial Rounded MT Bold', system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.faqSection {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
  width: min(100% - clamp(2rem,7vw,7.5rem), 1180px);
}

.faqSection .sectionHeader {
  position: sticky;
  top: 110px;
  margin: 0;
  text-align: left;
}

.faqList {
  display: grid;
  gap: .75rem;
}

.faqItem {
  overflow: hidden;
  border: 1px solid rgba(70,55,36,.12);
  border-radius: 20px;
  background: rgba(255,253,248,.9);
  box-shadow: 0 8px 24px rgba(65,49,31,.05);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.faqItem[open] {
  border-color: rgba(49,155,120,.28);
  background: linear-gradient(145deg, #fffdf8, #edf8f2);
  box-shadow: 0 14px 34px rgba(48,104,83,.09);
}

.faqItem summary {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: .9rem;
  align-items: center;
  min-height: 74px;
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
}

.faqItem summary::-webkit-details-marker { display: none; }

.faqItem summary > span {
  color: var(--mint-strong);
  font-size: .72rem;
  font-weight: 900;
}

.faqItem h3 {
  margin: 0;
  font-family: ui-rounded, 'Arial Rounded MT Bold', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.faqItem summary i {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
}

.faqItem summary i::before,
.faqItem summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint-dark);
  content: '';
  transform: translate(-50%,-50%);
  transition: transform 180ms ease;
}

.faqItem summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faqItem[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }

.faqItem > div {
  padding: 0 1.2rem 1.25rem 4.55rem;
}

.faqItem p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.finalCta {
  min-height: 350px;
  border-color: rgba(49,155,120,.22);
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.9), transparent 16rem),
    linear-gradient(135deg,#e4f4eb,#fff4df);
  box-shadow: 0 24px 70px rgba(65,49,31,.09);
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: minmax(0,.78fr) minmax(500px,1.22fr);
  }
  .hero h1 { font-size: clamp(3rem, 5.2vw, 4.25rem); }
  .heroStage { margin-right: 0; }
  .modeVisual { height: 250px; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
  }
  .hero h1 { max-width: 760px; }
  .heroSubtitle { max-width: 680px; }
  .heroStage { width: min(100%, 760px); min-height: 490px; margin: -1rem auto 0; }
  .heroComposer { margin-top: -1.5rem; }
  .stepGrid::before { display: none; }
  .stepModeCard { transform: none; }
  .faqSection { grid-template-columns: 1fr; gap: 2rem; }
  .faqSection .sectionHeader { position: static; max-width: 680px; text-align: center; }
}

@media (max-width: 640px) {
  .hero { padding-top: 2.5rem; }
  .hero h1 {
    max-width: 430px;
    font-size: clamp(2.55rem, 9.5vw, 3rem);
    line-height: 1.04;
  }
  .heroStage { min-height: 350px; }
  .bookCover { bottom: 83px; width: 94px; height: 150px; }
  .openBook { left: 10%; bottom: 79px; width: 60%; }
  .animationPreview { right: 16%; bottom: 86px; width: 95px; height: 145px; }
  .characterCard { right: 0; bottom: 84px; width: 78px; height: 150px; }
  .characterCard img { width: 72px; }
  .shelfPlank { bottom: 26px; height: 82px; }
  .heroCatWrap { right: -3%; bottom: 29px; width: 86px; }
  .heroComposer { margin-top: -1rem; border-radius: 22px; padding: .55rem; }
  .createModeTabs { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .createModeTabs button { justify-content: flex-start; padding-inline: .7rem; }
  .heroComposer .ideaForm { min-height: 60px; }
  .heroComposer .ideaChips { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .45rem; }
  .modeVisual { height: 220px; }
  .pictureSection,.animationSection { min-height: 0; }
  .pictureVisual { min-height: 340px; }
  .bookLabel { font-size: .6rem; padding: .38rem .5rem; }
  .bookLabel-story { left: 22%; }
  .bookLabel-characters { top: 26%; right: -2%; }
  .bookLabel-pages { left: 5%; bottom: 8%; }
  .bookLabel-preview { top: 3%; right: 5%; }
  .bookLabel-export { right: 0; bottom: 5%; }
  .faqItem summary { grid-template-columns: 28px 1fr 22px; gap: .6rem; padding-inline: .9rem; }
  .faqItem > div { padding: 0 .9rem 1.1rem 3.8rem; }
}


/* Plain-image and Node SSR chrome additions. The source uses next/image; the
   generated page uses native optimized browser loading without a React runtime. */
.landingPage2026 img { max-width: 100%; }
.landingPage2026 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.landingPage2026 .bookCover > img,
.landingPage2026 .animationPreview > img,
.landingPage2026 .modeVisual > img,
.landingPage2026 .storyboardCard > img,
.landingPage2026 .videoCard > img,
.landingPage2026 .exampleImage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.landingPage2026 [hidden] { display: none !important; }
.landingPage2026 .filterFade { animation: examplesIn 320ms both ease; }
html.landingExportMode,
html.landingExportMode body {
  scrollbar-width: none;
  scroll-behavior: auto !important;
}
html.landingExportMode::-webkit-scrollbar,
html.landingExportMode body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
html.landingExportMode .landingPage2026 *,
html.landingExportMode .landingPage2026 *::before,
html.landingExportMode .landingPage2026 *::after {
  animation: none !important;
  transition: none !important;
}
html.landingExportMode .landingPage2026 .shelfObject,
html.landingExportMode .landingPage2026 .flipBook,
html.landingExportMode .landingPage2026 .storyboardCard,
html.landingExportMode .landingPage2026 .animationVisual { opacity: 1; transform: none; }
html.landingExportMode .landingPage2026 .flipPage,
html.landingExportMode .landingPage2026 .catBlink,
html.landingExportMode .landingPage2026 .catTail { display: none; }



/* 共享头尾 chrome 规则已于 2026-07-26 全部迁往 landing2026-nav.css（唯一来源）。
   原因：home-2026.css 与另一份拷贝已漂移，且页面加载哪一份决定头尾长相。
   不要在本文件重新添加 .landing2026* 规则。 */
