:root {
  --ink: #171816;
  --muted: #555853;
  --soft: #f2f3f0;
  --surface: #fafbf8;
  --line: rgba(23, 24, 22, 0.16);
  --banquet: #c95f45;
  --banquet-deep: #7b3024;
  --restaurant: #215766;
  --restaurant-deep: #153b46;
  --white: #fdfdfb;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", "Segoe UI", sans-serif;
  --display: "BubbledotICG-FinePos", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; min-height: 100%; }
html { background: var(--soft); }
body {
  color: var(--ink);
  background: var(--soft);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid #f5bd4f;
  outline-offset: 4px;
}

/* Landing */
.landing-page {
  height: 100dvh;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: #151816;
}
.landing-bg,
.selector-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #151816;
}
.landing-bg video,
.selector-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) contrast(1.06);
}
.landing-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 11, .52) 0%, rgba(10, 12, 11, .12) 38%, rgba(10, 12, 11, .62) 100%),
    linear-gradient(90deg, rgba(7, 8, 7, .22), transparent 38%, rgba(7, 8, 7, .12));
}
.landing-shell {
  position: relative;
  z-index: 1;
  height: 100dvh;
  min-height: 620px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px clamp(22px, 4vw, 68px) 28px;
}
.landing-header {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(250, 250, 247, .94);
  color: #1d201d;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 8px rgba(4, 6, 5, .14);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.brand-mark:hover { transform: rotate(-7deg); background: #fff; }
.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(252, 252, 249, .94);
  color: #42453f;
  box-shadow: 0 4px 8px rgba(4, 6, 5, .12);
}
.nav-pill a {
  min-width: 86px;
  padding: 9px 16px;
  border-radius: 999px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.nav-pill a:hover { background: #e9ebe5; color: #11130f; }
.nav-pill a.active { background: #242722; color: #fff; }
.contact-pill,
.primary-cta,
.selector-back,
.solid-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}
.contact-pill { justify-self: end; background: #242722; color: #fff; }
.contact-pill:hover { background: #080a08; transform: translateY(-2px); }
.contact-pill:active,
.primary-cta:active,
.selector-back:active,
.solid-button:active,
.outline-button:active { transform: translateY(1px); }
.menu-toggle { display: none; }
.landing-hero {
  align-self: center;
  justify-self: center;
  width: min(900px, 92vw);
  padding-top: 3vh;
  text-align: center;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 20px;
}
.trust-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  border: 2px solid rgba(255, 255, 255, .74);
  border-radius: 50%;
  background: #eceee8;
  color: #22251f;
  font-size: 14px;
  font-weight: 800;
}
.trust-avatar:first-child { margin-left: 0; background: #d97055; color: #fff; }
.trust-avatar:nth-child(2) { background: #315c63; color: #fff; }
.trust-pill {
  margin-left: 10px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(20, 22, 20, .62);
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}
.landing-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .24);
}
.landing-title span { display: block; }
.landing-title span:last-child { animation: landing-title-in .85s .15s both var(--ease); }
.landing-lede {
  max-width: 670px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.9;
  text-wrap: pretty;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}
.primary-cta {
  min-height: 54px;
  margin-top: 28px;
  padding-inline: 30px;
  background: #f7f8f4;
  color: #1e211d;
  box-shadow: 0 4px 8px rgba(4, 6, 5, .2);
}
.primary-cta:hover { transform: translateY(-3px); background: #fff; }
.landing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(980px, 100%);
  justify-self: center;
  color: #fff;
}
.stat {
  position: relative;
  display: grid;
  grid-template-columns: 26px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 4px clamp(14px, 2vw, 28px);
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255, 255, 255, .34);
}
.stat b {
  grid-row: 1 / 3;
  font-size: 19px;
  font-weight: 500;
  opacity: .76;
}
.stat strong { font-size: 22px; line-height: 1.2; }
.stat span { color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.5; }
.anim { animation: landing-fade-in .72s var(--d, 0s) both var(--ease); }
@keyframes landing-fade-in { from { opacity: 0; transform: translateY(18px); } }
@keyframes landing-title-in { from { opacity: 0; transform: translateY(24px); } }

/* Project selector */
.selector-page {
  height: 100dvh;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background: #151816;
}
.selector-bg video { filter: saturate(.45) brightness(.56) contrast(1.12); }
.selector-bg > div {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 11, .88), rgba(10, 12, 11, .48) 48%, rgba(10, 12, 11, .7));
}
.selector-header {
  position: relative;
  z-index: 2;
  height: 92px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(22px, 4vw, 68px);
}
.selector-header > div { display: grid; justify-content: center; text-align: center; }
.selector-header span { color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.45; }
.selector-header strong { font-size: 18px; line-height: 1.45; }
.selector-back { justify-self: end; min-height: 44px; background: #f7f8f4; color: #1d201c; }
.selector-back:hover { transform: translateY(-2px); background: #fff; }
.selector-main {
  position: relative;
  z-index: 1;
  height: calc(100dvh - 92px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: clamp(24px, 3vh, 36px);
  padding: clamp(20px, 3vh, 36px) clamp(22px, 5vw, 84px) 42px;
}
.selector-copy {
  width: min(100%, 1120px);
  max-width: none;
  justify-self: center;
  text-align: center;
}
.section-label {
  margin: 0 0 12px;
  color: #f09b7a;
  font-size: 15px;
  font-weight: 700;
}
.selector-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.12;
  text-wrap: balance;
}
.selector-copy > p:not(.section-label) {
  max-width: 72ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.85;
  text-wrap: pretty;
}
.selector-copy > p:not(.section-label) { margin-inline: auto; }
.selector-ai-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
}
.selector-ai-link span { color: #f09b7a; transition: transform .25s var(--ease); }
.selector-ai-link:hover span { transform: translateX(5px); }
.selector-projects {
  width: min(100%, 1760px);
  height: 100%;
  max-height: 500px;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
  min-height: 0;
}
.project-visual {
  position: relative;
  min-height: 0;
  max-height: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 190px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  transition: transform .34s var(--ease), filter .34s var(--ease);
}
.project-visual:hover { transform: translateY(-6px); filter: saturate(1.08); }
.project-visual:active { transform: translateY(-2px); }
.project-visual-banquet { background: #b9523c; }
.project-visual-restaurant { background: #1e5663; }
.project-visual-future { background: #344b67; }
.project-visual-copy {
  position: relative;
  z-index: 2;
  grid-row: 2;
  display: grid;
  align-content: center;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  padding: clamp(24px, 3vw, 46px);
}
.project-visual-copy span { grid-column: 1 / -1; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.78); }
.project-visual-copy h2 { grid-column: 1 / -1; margin: 0; font-size: clamp(30px, 2.7vw, 48px); line-height: 1.05; letter-spacing: -.035em; }
.project-visual-copy p { align-self: center; margin: 4px 0 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.5; }
.project-visual-copy b {
  align-self: center;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: 22px;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.project-visual:hover .project-visual-copy b { background: #fff; color: #171916; transform: translateX(3px); }
.project-screens {
  position: relative;
  grid-row: 1;
  grid-column: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}
.project-screens::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,11,.22), transparent 36%);
  pointer-events: none;
}
.project-screens img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.project-visual:hover .project-screens img { transform: scale(1.04); transition: transform .8s var(--ease); }
.project-screens img { object-position: center; }
.project-screens-future img { object-position: center 22%; filter: saturate(.82) contrast(1.06); }
.project-screens-future::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,18,29,.36), transparent 48%), linear-gradient(0deg, rgba(5,15,25,.42), transparent 58%);
  pointer-events: none;
}
.project-future-tags {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: 330px;
}
.project-future-tags span {
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(5,19,31,.78);
  color: rgba(240,249,252,.9);
  font-size: 14px;
  font-weight: 650;
}
.project-card {
  position: relative;
  min-height: 258px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 12px;
  isolation: isolate;
  transition: transform .34s var(--ease), filter .34s var(--ease);
}
.project-card:hover { transform: translateX(8px); filter: saturate(1.08); }
.project-card:active { transform: translateX(3px); }
.project-card-warm { background: var(--banquet); }
.project-card-cool { background: var(--restaurant); }
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 10, 9, .16), rgba(10, 10, 9, .08) 58%, rgba(10, 10, 9, .62));
}
.project-card img {
  position: absolute;
  z-index: -2;
  right: 0;
  top: 0;
  width: 36%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .8;
}
.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.5;
}
.project-meta span:first-child { font-weight: 700; color: #fff; }
.project-card-copy {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: end;
  gap: 16px;
  max-width: 72%;
  padding: 22px 24px 24px;
}
.project-card-copy h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(32px, 3.1vw, 50px);
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.project-card-copy p { margin: 0; color: rgba(255, 255, 255, .84); font-size: 15px; line-height: 1.72; }
.circle-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.project-card:hover .circle-arrow { background: #fff; color: #171916; transform: translateX(3px); }

/* Contact */
.contact-page {
  height: 100dvh;
  min-height: 720px;
  overflow: hidden;
  color: #f7f8f5;
  background: #0b100e;
}
.contact-landing-bg { z-index: 0; }
.contact-page .landing-shade {
  background:
    linear-gradient(180deg, rgba(10, 12, 11, .56) 0%, rgba(10, 12, 11, .18) 38%, rgba(10, 12, 11, .72) 100%),
    linear-gradient(90deg, rgba(7, 8, 7, .44), rgba(7, 8, 7, .14) 52%, rgba(7, 8, 7, .36));
}
.contact-shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 20px clamp(22px, 4vw, 68px) 30px;
}
.contact-header {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
}
.contact-header-title { display: grid; justify-content: center; text-align: center; line-height: 1.4; }
.contact-header-title span { color: rgba(255,255,255,.64); font-size: 15px; }
.contact-header-title strong { font-size: 19px; }
.contact-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f6f7f3;
  color: #1a1d19;
  font-size: 15px;
  font-weight: 700;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.contact-back:hover { transform: translateY(-2px); background: #fff; }
.contact-main {
  width: min(1440px, 100%);
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 116px);
  padding: 30px 0 10px;
}
.contact-intro { max-width: 620px; }
.contact-label { margin: 0 0 16px; color: #f09b7a; font-size: 16px; font-weight: 750; }
.contact-intro h1 {
  max-width: 11em;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.1;
  text-wrap: balance;
}
.contact-intro > p:not(.contact-label) { max-width: 48ch; margin: 24px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.85; }
.contact-channel {
  width: fit-content;
  min-width: 360px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(8,12,10,.48);
}
.contact-channel span { color: rgba(255,255,255,.58); font-size: 14px; }
.contact-channel strong { font-size: 17px; line-height: 1.5; }
.contact-channel button {
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #f6f7f3;
  color: #1c201b;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.contact-project-link { display: inline-flex; gap: 9px; margin-top: 22px; color: rgba(255,255,255,.82); font-size: 16px; font-weight: 700; }
.contact-project-link span { transition: transform .25s var(--ease); }
.contact-project-link:hover span { transform: translateX(5px); }
.contact-form-panel {
  min-width: 0;
  padding: clamp(24px, 2.4vw, 38px);
  border-radius: 10px;
  background: #f5f6f2;
  color: #191c18;
}
.contact-form-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.contact-form-heading > div { display: flex; align-items: center; gap: 12px; }
.contact-form-heading span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #c95f45; color: #fff; font-size: 14px; font-weight: 750; }
.contact-form-heading h2 { margin: 0; font-size: 25px; line-height: 1.3; }
.contact-form-heading > p { margin: 0; color: #656961; font-size: 14px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { min-width: 0; display: grid; gap: 7px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > span { color: #555a52; font-size: 14px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(25,28,24,.18);
  border-radius: 6px;
  padding: 10px 13px;
  background: #fff;
  color: #181b17;
  font: inherit;
  font-size: 16px;
  line-height: 1.55;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field textarea { min-height: 92px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #c95f45; box-shadow: 0 0 0 3px rgba(201,95,69,.12); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #70756c; opacity: 1; }
.form-consent { display: flex; align-items: center; gap: 9px; color: #555a52; font-size: 14px; }
.form-consent input { width: 18px; height: 18px; accent-color: #c95f45; }
.contact-submit {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px 0 20px;
  background: #20241f;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.contact-submit b { font-size: 21px; }
.contact-submit:hover { background: #080a08; transform: translateY(-2px); }
.contact-result {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #e6eee9;
}
.contact-result[hidden] { display: none; }
.contact-result > div { display: grid; }
.contact-result strong { font-size: 15px; }
.contact-result span { color: #58615b; font-size: 14px; }
.contact-result a { white-space: nowrap; color: #174d5b; font-size: 14px; font-weight: 750; }
.contact-status { min-height: 1.5em; margin: 10px 0 0; color: #555a52; font-size: 14px; }

@media (max-width: 1120px) {
  .contact-main { grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr); gap: 42px; }
  .contact-intro h1 { font-size: clamp(44px, 5vw, 68px); }
}

@media (max-width: 820px) {
  .contact-page { min-height: 100dvh; height: auto; overflow: auto; }
  .contact-shell { min-height: 100dvh; padding: 16px 18px 30px; }
  .contact-header { grid-template-columns: 48px 1fr auto; gap: 12px; }
  .contact-header .brand-mark { width: 48px; height: 48px; font-size: 23px; }
  .contact-header-title { justify-content: start; text-align: left; }
  .contact-header-title span { font-size: 14px; }
  .contact-header-title strong { font-size: 17px; }
  .contact-back { min-height: 40px; padding-inline: 14px; font-size: 14px; }
  .contact-main { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 0; }
  .contact-intro { max-width: none; }
  .contact-label { font-size: 15px; }
  .contact-intro h1 { font-size: clamp(40px, 10vw, 58px); }
  .contact-intro > p:not(.contact-label) { margin-top: 16px; font-size: 16px; line-height: 1.75; }
  .contact-channel { min-width: 0; width: 100%; margin-top: 22px; }
  .contact-project-link { margin-top: 16px; font-size: 15px; }
  .contact-form-panel { padding: 22px 18px; }
  .contact-form-heading h2 { font-size: 21px; }
  .contact-form { grid-template-columns: 1fr; gap: 14px; }
  .form-field-wide { grid-column: auto; }
  .contact-submit { grid-column: auto; }
  .contact-result { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-height: 760px) and (min-width: 821px) {
  .contact-shell { padding-top: 14px; padding-bottom: 16px; }
  .contact-main { padding-top: 12px; gap: 46px; }
  .contact-form-panel { padding: 20px 26px; }
  .contact-form-heading { margin-bottom: 12px; }
  .contact-form { gap: 10px 14px; }
  .form-field { gap: 4px; }
  .form-field input,
  .form-field select { min-height: 40px; padding-block: 6px; }
  .form-field textarea { min-height: 68px; }
  .contact-submit { min-height: 44px; }
}

/* Product stories */
.product-page {
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  position: relative;
  background: #091011;
  color: #f4f7f4;
}
.banquet-page { --story-surface: #0d1413; --story-ink: #f4f7f4; --story-muted: rgba(236,244,239,.74); }
.restaurant-page { --story-surface: #0b171b; --story-ink: #f2f7f7; --story-muted: rgba(226,240,242,.74); background: #0b171b; color: #f2f7f7; }
.future-page { --story-surface: #071318; --story-ink: #f2fbfc; --story-muted: rgba(222,240,244,.76); background: #071318; color: #f2fbfc; }
.particle-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  background: radial-gradient(circle at 78% 24%, rgba(201,95,69,.12), transparent 28%), radial-gradient(circle at 12% 78%, rgba(33,87,102,.12), transparent 30%);
}
.particle-canvas { width: 100%; height: 100%; display: block; opacity: .92; }
.product-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 62px);
  pointer-events: none;
  color: var(--story-ink);
  transition: color .45s var(--ease);
}
.product-header > * { pointer-events: auto; }
.back-link,
.product-switch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  transition: color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.back-link:hover,
.product-switch:hover { background: rgba(255, 255, 255, .1); transform: translateY(-1px); }
.product-switch { justify-self: end; }
.product-title { display: grid; gap: 1px; text-align: center; line-height: 1.35; }
.product-title span { color: rgba(238,246,241,.72); font-size: 16px; line-height: 1.45; }
.product-title strong { font-size: 19px; letter-spacing: -.02em; }
.story-shell { position: relative; z-index: 2; height: 100dvh; overflow: hidden; }
.story-track {
  height: auto;
  will-change: transform;
  transition: transform .72s var(--ease);
}
.story-slide {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(390px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 118px);
  padding: 102px clamp(64px, 9vw, 150px) 92px;
  overflow: hidden;
  background: transparent;
}
.slide-copy { position: relative; z-index: 2; max-width: 620px; }
.slide-index {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--banquet-deep);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.5;
}
.restaurant-page .slide-index { color: #8fd4dc; }
.future-page .slide-index { color: #6de0eb; }
.slide-copy h1,
.slide-copy h2 {
  margin: 0 0 20px;
  max-width: 11em;
  font-size: clamp(44px, 5.2vw, 82px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.12;
  text-wrap: balance;
}
.slide-copy h2 { font-size: clamp(40px, 4.6vw, 72px); }
.slide-copy em { color: var(--banquet); font-style: normal; }
.restaurant-page .slide-copy em { color: #9c4639; }
.future-page .slide-copy em { color: #6de0eb; }
.slide-copy > p:not(.slide-index) {
  max-width: 60ch;
  margin: 0;
  color: var(--story-muted);
  font-size: clamp(18px, 1.2vw, 20px);
  line-height: 1.9;
  text-wrap: pretty;
}
.restaurant-page .slide-copy > p:not(.slide-index) { color: var(--story-muted); }
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  color: rgba(230,240,234,.74);
  font-size: 16px;
  line-height: 1.45;
}
.metric-row span { min-width: 92px; }
.metric-row b { display: block; margin-bottom: 4px; color: var(--story-ink); font-size: 32px; line-height: 1.1; }
.restaurant-page .metric-row { color: rgba(226,240,242,.74); }
.restaurant-page .metric-row b { color: var(--story-ink); }
.detail-list {
  display: grid;
  gap: 11px;
  max-width: 58ch;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(231,241,235,.82);
  font-size: 17px;
  line-height: 1.72;
  list-style: none;
}
.detail-list li { position: relative; padding-left: 22px; }
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 9px;
  height: 2px;
  background: var(--banquet);
}
.restaurant-page .detail-list { color: rgba(224,240,243,.82); }
.restaurant-page .detail-list li::before { background: var(--restaurant); }
.future-page .detail-list li::before { background: #6de0eb; }
.restaurant-ai-dish .slide-copy em,
.restaurant-ai-insight .slide-copy em { color: #75d6e1; }
.restaurant-ai-dish .slide-index,
.restaurant-ai-insight .slide-index { color: #75d6e1; }
.restaurant-ai-gallery { background: #e8eff2; }
.restaurant-ai-gallery figure { background: #fbfcfd; }
.restaurant-ai-gallery figure img { padding: 10px; }
.restaurant-ai-secretary-scene { position: relative; display: grid; place-items: center; overflow: hidden; background: #081d34; }
.restaurant-ai-secretary-scene::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 68% 46%, rgba(68,161,255,.32), transparent 40%), linear-gradient(135deg, rgba(23,79,146,.72), rgba(4,17,35,.95)); }
.restaurant-ai-secretary-scene img { position: relative; z-index: 2; width: min(68%, 500px); max-height: 92%; object-fit: contain; border-radius: 10px; box-shadow: 0 0 34px rgba(51,167,255,.18); animation: secretaryFloat 6s ease-in-out infinite; }
.insight-grid { position: absolute; z-index: 3; left: 5%; top: 8%; width: 196px; display: grid; gap: 8px; padding: 14px; border: 1px solid rgba(98,192,255,.38); border-radius: 8px; background: rgba(6,27,54,.92); color: #e7f5ff; }
.insight-grid span { color: #6ed9ff; font-size: 14px; }
.insight-grid b { font-size: 16px; line-height: 1.4; }
.insight-grid i { padding: 7px 8px; border-radius: 4px; background: rgba(47,133,215,.2); color: rgba(222,241,255,.82); font-size: 14px; font-style: normal; }
.insight-pulse { position: absolute; z-index: 1; width: 48%; aspect-ratio: 1; border: 1px solid rgba(97,199,255,.3); border-radius: 50%; animation: insightPulse 3.8s ease-in-out infinite; }
@keyframes secretaryFloat { 0%, 100% { transform: translateY(0) rotate(.2deg); } 50% { transform: translateY(-8px) rotate(-.3deg); } }
@keyframes insightPulse { 0%, 100% { transform: scale(.78); opacity: .3; } 50% { transform: scale(1.12); opacity: .8; } }

/* Retention loop */
.story-retention { grid-template-columns: minmax(360px, .86fr) minmax(480px, 1.14fr); }
.retention-copy { position: relative; z-index: 2; max-width: 600px; }
.retention-copy h2 { margin: 0 0 20px; font-size: clamp(40px, 4.6vw, 72px); font-weight: 650; letter-spacing: -.035em; line-height: 1.12; text-wrap: balance; }
.retention-copy em { color: var(--banquet); font-style: normal; }
.retention-copy > p:not(.slide-index) { max-width: 58ch; margin: 0; color: var(--story-muted); font-size: clamp(18px, 1.2vw, 20px); line-height: 1.9; }
.retention-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.retention-actions span { padding: 9px 13px; border: 1px solid rgba(240,172,137,.24); border-radius: 999px; background: rgba(201,95,69,.1); color: rgba(255,236,227,.82); font-size: 14px; font-weight: 700; }
.retention-loop { position: relative; min-height: min(70dvh, 690px); display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: radial-gradient(circle, rgba(201,95,69,.15), rgba(9,18,18,.86) 58%); }
.retention-ring { position: absolute; border: 1px solid rgba(240,157,125,.3); border-radius: 50%; animation: retentionSpin 20s linear infinite; }
.ring-outer { width: min(80%, 520px); aspect-ratio: 1; border-style: dashed; }
.ring-inner { width: min(55%, 350px); aspect-ratio: 1; animation-duration: 12s; animation-direction: reverse; }
.retention-core { position: relative; z-index: 3; width: 150px; aspect-ratio: 1; display: grid; place-content: center; border: 1px solid rgba(240,172,137,.68); border-radius: 50%; background: #331c1b; color: #fff; text-align: center; box-shadow: 0 0 38px rgba(201,95,69,.22); }
.retention-core b { color: #f2a181; font-size: 38px; line-height: 1; }
.retention-core span { margin-top: 8px; font-size: 14px; }
.retention-node { position: absolute; z-index: 4; min-width: 120px; display: grid; gap: 2px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; background: #152322; color: rgba(255,246,239,.92); text-align: center; animation: retentionFloat 4s ease-in-out infinite; }
.retention-node b { font-size: 16px; }
.retention-node small { color: rgba(245,224,216,.76); font-size: 14px; }
.retention-node-a { top: 16%; left: 12%; }
.retention-node-b { top: 18%; right: 10%; animation-delay: -1s; }
.retention-node-c { bottom: 16%; right: 12%; animation-delay: -2s; }
.retention-node-d { bottom: 18%; left: 10%; animation-delay: -3s; }
.retention-orbit-dot { position: absolute; width: 8px; aspect-ratio: 1; border-radius: 50%; background: #f1a17e; box-shadow: 0 0 16px #f1a17e; animation: retentionOrbit 8s linear infinite; }
.dot-one { left: 20%; top: 35%; }
.dot-two { right: 19%; bottom: 31%; animation-delay: -4s; }
@keyframes retentionSpin { to { transform: rotate(360deg); } }
@keyframes retentionFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes retentionOrbit { from { transform: rotate(0deg) translateX(145px) rotate(0deg); } to { transform: rotate(360deg) translateX(145px) rotate(-360deg); } }
.slide-visual {
  position: relative;
  height: min(70dvh, 690px);
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #eceee9;
}
.slide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(112deg, transparent 32%, rgba(255,255,255,.18) 47%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.story-slide.is-active .slide-visual::after { animation: lightSweep 1.4s var(--ease) .35s both; }
.slide-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(23, 24, 22, .1);
  border-radius: 8px;
  pointer-events: none;
}
.slide-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slide-visual.restaurant-ai-secretary-scene img {
  z-index: 2;
  width: min(68%, 500px);
  height: auto;
  max-height: 92%;
  object-fit: contain;
}
.visual-gallery {
  display: grid;
  place-items: stretch;
  gap: clamp(10px, 1.1vw, 18px);
  padding: clamp(12px, 1.4vw, 22px);
}
.visual-gallery::before { display: none; }
.visual-gallery.gallery-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.visual-gallery.gallery-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.visual-gallery.gallery-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.visual-gallery figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}
.visual-gallery figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  object-position: top center;
  filter: none;
  justify-self: center;
}
.visual-gallery figcaption {
  position: relative;
  z-index: 2;
  padding: 10px 12px;
  border-top: 1px solid rgba(23,24,22,.1);
  color: #3e443f;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.gallery-dashboard figure img { object-fit: cover; }
.value-gallery { background: rgba(255,255,255,.08); }
.value-gallery figure { background: #f6f7f4; }

/* Let gallery cards wrap their screenshots instead of stretching a blank row. */
.visual-gallery {
  align-items: center;
}
.visual-gallery figure {
  align-self: center;
  height: min-content;
  max-height: 100%;
  grid-template-rows: auto auto;
  padding: clamp(7px, .8vw, 12px) clamp(7px, .8vw, 12px) 0;
}
.visual-gallery figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100% - 42px);
  min-height: 0;
  object-fit: contain;
  object-position: top center;
}
.visual-gallery:not(.visual-phone) figure img {
  object-position: center;
}
.slide-visual.visual-gallery {
  height: auto;
  min-height: 0;
  max-height: none;
}
.visual-gallery.visual-phone figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}
.story-slide::before {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  right: 8vw;
  top: 10vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,95,69,.12), transparent 68%);
  filter: blur(8px);
  opacity: .55;
  transform: translate3d(calc(var(--pointer-x, 0) * 1px), calc(var(--pointer-y, 0) * 1px), 0);
  transition: transform .45s var(--ease);
  pointer-events: none;
}
.restaurant-page .story-slide::before { background: radial-gradient(circle, rgba(33,87,102,.14), transparent 68%); }
.story-slide.is-active .slide-copy { animation: copyRise .8s var(--ease) both; }
.story-slide.is-active .visual-gallery figure,
.story-slide.is-active .end-note,
.story-slide.is-active .dashboard-card { animation: visualReveal .9s var(--ease) both; }
.story-slide.is-active .visual-gallery figure:nth-child(2) { animation-delay: .08s; }
.story-slide.is-active .visual-gallery figure:nth-child(3) { animation-delay: .16s; }
.story-slide.is-active .slide-visual { animation: visualFloat 7s ease-in-out .9s infinite; }
@keyframes copyRise { from { opacity: .35; transform: translate3d(0, 18px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes visualReveal { from { opacity: .4; transform: translate3d(0, 18px, 0) scale(.97); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes visualFloat { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -7px, 0); } }
@keyframes lightSweep { to { transform: translateX(120%); } }
.visual-warm { background: #f4dfd6; }
.visual-cool { background: #d8e5e8; }
.visual-phone { background: #e9ecea; }
.visual-phone img {
  width: auto;
  max-width: 100%;
  height: auto;
  padding: clamp(6px, .65vw, 10px);
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 8px 8px rgba(33, 39, 35, .15));
}
.visual-phone figure {
  align-content: stretch;
}
.visual-ranking { background: #e8f0ec; }
.visual-ranking figure { background: #fbfcfa; }
.visual-ranking figure img { padding: clamp(8px, 1vw, 16px); }

/* Future AI capability scenes */
.future-page .story-slide::before { background: radial-gradient(circle, rgba(72,204,220,.14), transparent 68%); }
.future-core,
.future-edit-scene,
.future-video-scene,
.future-human-scene,
.future-voice-scene {
  border: 1px solid rgba(112,224,235,.2);
  background: rgba(5,18,24,.74);
  box-shadow: inset 0 0 60px rgba(32,130,145,.12);
}
.future-core { isolation: isolate; }
.future-core::before,
.future-core::after { display: none; }
.core-center {
  position: relative;
  z-index: 3;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(109,224,235,.58);
  border-radius: 50%;
  background: #0a2028;
  text-align: center;
  box-shadow: 0 0 40px rgba(62,206,221,.24);
}
.core-center span { color: #6de0eb; font-size: 44px; font-weight: 800; line-height: 1; }
.core-center strong { margin-top: 8px; font-size: 16px; }
.core-orbit { position: absolute; border: 1px solid rgba(109,224,235,.24); border-radius: 50%; animation: coreSpin 18s linear infinite; }
.orbit-a { width: 300px; aspect-ratio: 1; }
.orbit-b { width: 430px; aspect-ratio: 1; animation-duration: 24s; animation-direction: reverse; }
.orbit-c { width: 560px; aspect-ratio: 1; border-style: dashed; animation-duration: 32s; }
.core-node {
  position: absolute;
  z-index: 4;
  min-width: 112px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 6px;
  background: #10252c;
  color: rgba(241,251,252,.88);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  animation: nodePulse 3.8s ease-in-out infinite;
}
.node-edit { left: 10%; top: 20%; }
.node-video { right: 8%; top: 24%; animation-delay: -.9s; }
.node-human { left: 13%; bottom: 18%; animation-delay: -1.8s; }
.node-voice { right: 12%; bottom: 16%; animation-delay: -2.7s; }

.future-edit-scene { align-content: center; gap: 22px; padding: clamp(24px, 4vw, 54px); }
.future-edit-scene::before,
.future-video-scene::before,
.future-human-scene::before,
.future-voice-scene::before { display: none; }
.preview-screen {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(135deg, #132b34, #351d26 52%, #09252b);
}
.preview-screen::before { content: ""; position: absolute; inset: 18% 34%; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; animation: previewFocus 3.2s var(--ease) infinite; }
.preview-screen span, .preview-screen b { position: relative; z-index: 2; font-size: 16px; }
.preview-flare { position: absolute; inset: -30% 55% -20% -25%; background: radial-gradient(circle, rgba(241,116,85,.58), transparent 62%); animation: previewMove 5.4s ease-in-out infinite alternate; }
.edit-timeline { position: relative; width: min(100%, 620px); display: flex; gap: 6px; padding: 18px 0; overflow: hidden; }
.edit-timeline i { width: var(--w); height: 42px; display: block; border-radius: 4px; background: var(--c); opacity: .8; }
.timeline-playhead { position: absolute; top: 8px; bottom: 8px; left: 4%; width: 2px; background: #fff; box-shadow: 0 0 10px #fff; animation: timelineScan 5s linear infinite; }
.edit-status { width: min(100%, 620px); display: flex; justify-content: space-between; gap: 12px; color: rgba(223,243,246,.7); font-size: 14px; }

.future-video-scene { align-content: center; gap: 28px; padding: clamp(24px, 4vw, 52px); }
.prompt-stream { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.prompt-stream span { padding: 8px 12px; border: 1px solid rgba(109,224,235,.24); border-radius: 999px; background: #10262d; font-size: 14px; animation: nodePulse 4s ease-in-out infinite; }
.prompt-stream span:nth-child(2) { animation-delay: -1.3s; }
.prompt-stream span:nth-child(3) { animation-delay: -2.6s; }
.storyboard { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.storyboard figure { margin: 0; overflow: hidden; border-radius: 8px; background: #0e2229; }
.storyboard figure > div { height: 260px; background-position: center; background-size: cover; animation: frameDrift 6s ease-in-out infinite alternate; }
.frame-food { background: radial-gradient(circle at 35% 30%, #f0a16b, #8a3c2f 34%, #172a29 68%); }
.frame-store { background: linear-gradient(145deg, #123e49, #08131a 50%, #ca654f); animation-delay: -2s !important; }
.frame-brand { background: radial-gradient(circle at center, #6de0eb 0 5%, #143b45 6% 26%, #08151a 27%); animation-delay: -4s !important; }
.storyboard figcaption { padding: 10px; color: rgba(236,248,249,.76); font-size: 14px; text-align: center; }
.generation-line { display: flex; align-items: center; gap: 12px; color: rgba(230,245,247,.72); font-size: 14px; }
.generation-line i { width: 120px; height: 2px; display: block; overflow: hidden; background: rgba(255,255,255,.14); }
.generation-line i::after { content: ""; width: 45%; height: 100%; display: block; background: #6de0eb; animation: generationProgress 2.4s ease-in-out infinite; }

.future-human-scene { isolation: isolate; overflow: hidden; background: #07151c; }
.human-image-wrap { position: absolute; z-index: 1; inset: 0; overflow: hidden; }
.future-human-scene img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform-origin: 58% 48%; animation: humanStudioMove 12s cubic-bezier(.22, .61, .36, 1) infinite alternate; }
.human-stage-camera { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(3, 10, 19, .5), transparent 46%), linear-gradient(0deg, rgba(3, 10, 19, .48), transparent 34%); pointer-events: none; }
.human-scan { position: absolute; inset: 0; z-index: 4; background: linear-gradient(180deg, transparent 0 44%, rgba(109,224,235,.14) 49%, transparent 55%); mix-blend-mode: screen; animation: humanScan 5.6s linear infinite; pointer-events: none; }
.human-caption { position: absolute; z-index: 7; left: 26px; right: 26px; bottom: 24px; display: grid; gap: 4px; padding: 15px 18px; background: rgba(5,17,22,.82); }
.human-caption span { color: #6de0eb; font-size: 14px; }
.human-caption strong { font-size: 17px; }
.human-hud { position: absolute; z-index: 6; display: grid; gap: 4px; min-width: 120px; padding: 10px 12px; color: rgba(239, 250, 251, .94); font-size: 14px; line-height: 1.35; background: rgba(6, 21, 32, .46); border: 1px solid rgba(125, 229, 243, .34); border-radius: 6px; box-shadow: 0 0 22px rgba(75, 204, 239, .1); backdrop-filter: blur(10px); pointer-events: none; }
.human-hud span { color: rgba(179, 236, 246, .78); font-size: 14px; }
.human-hud strong { font-size: 16px; font-weight: 700; }
.hud-emotion { left: 5%; top: 15%; animation: hudHover 5.8s ease-in-out infinite; }
.hud-emotion strong { color: #a9f2ff; }
.hud-emotion i { display: block; height: 2px; overflow: hidden; background: rgba(164, 238, 248, .14); }
.hud-emotion i::after { content: ""; display: block; width: 42%; height: 100%; background: #89e9f6; animation: hudProgress 3.2s ease-in-out infinite; }
.hud-gesture { right: 5%; top: 24%; min-width: 130px; animation: hudHover 6.2s ease-in-out -1.4s infinite; }
.hud-gesture strong { color: #d8d7ff; }
.hud-voice { right: 6%; top: 50%; min-width: 135px; animation: hudHover 5.4s ease-in-out -3.1s infinite; }
.hud-voice-bars { height: 20px; display: flex; align-items: center; gap: 4px; }
.hud-voice-bars i { width: 3px; height: 40%; border-radius: 999px; background: #91ebf7; transform-origin: center; animation: humanVoiceBeat 1.15s ease-in-out infinite; }
.hud-voice-bars i:nth-child(2) { animation-delay: -.18s; }
.hud-voice-bars i:nth-child(3) { animation-delay: -.36s; }
.hud-voice-bars i:nth-child(4) { animation-delay: -.54s; }
.hud-voice-bars i:nth-child(5) { animation-delay: -.72s; }
.human-contact-zone { position: absolute; z-index: 5; left: 35%; top: 43%; width: 116px; aspect-ratio: 1; transform: translate(-50%, -50%); pointer-events: none; }
.human-contact-zone b { position: absolute; left: 50%; top: 50%; width: 13px; aspect-ratio: 1; border-radius: 50%; background: #d5faff; box-shadow: 0 0 12px #77e5fa, 0 0 32px rgba(107, 157, 255, .84); transform: translate(-50%, -50%); animation: contactCore 2.8s ease-in-out infinite; }
.human-contact-zone::before, .human-contact-zone::after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(131, 232, 248, .52); border-radius: 50%; animation: contactRipple 2.8s ease-out infinite; }
.human-contact-zone::after { animation-delay: -1.35s; }
.human-contact-zone i { position: absolute; left: 50%; top: 50%; width: 4px; aspect-ratio: 1; border-radius: 50%; background: #d8fbff; box-shadow: 0 0 10px #8aeafa; transform: rotate(var(--particle-angle)) translateX(11px); animation: contactParticle 2.8s ease-out infinite; }
.human-contact-zone i:nth-of-type(1) { --particle-angle: 12deg; animation-delay: -.1s; }
.human-contact-zone i:nth-of-type(2) { --particle-angle: 86deg; animation-delay: -.65s; }
.human-contact-zone i:nth-of-type(3) { --particle-angle: 162deg; animation-delay: -1.2s; }
.human-contact-zone i:nth-of-type(4) { --particle-angle: 230deg; animation-delay: -1.75s; }
.human-contact-zone i:nth-of-type(5) { --particle-angle: 302deg; animation-delay: -2.25s; }
.human-data-stream { position: absolute; z-index: 4; left: 34%; top: 41%; width: 52%; height: 40%; pointer-events: none; }
.human-data-stream i { position: absolute; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(113, 224, 244, .75), transparent); transform-origin: left center; animation: humanDataFlow 4.4s ease-in-out infinite; }
.human-data-stream i:nth-child(1) { top: 12%; --stream-angle: 25deg; }
.human-data-stream i:nth-child(2) { top: 48%; --stream-angle: 8deg; animation-delay: -1.45s; }
.human-data-stream i:nth-child(3) { top: 78%; --stream-angle: -15deg; animation-delay: -2.9s; }

.future-voice-scene { align-content: center; justify-items: center; gap: 26px; padding: clamp(28px, 5vw, 70px); }
.voice-avatar { width: 90px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(109,224,235,.55); border-radius: 50%; background: #102a32; color: #fff; font-size: 34px; font-weight: 800; box-shadow: 0 0 34px rgba(109,224,235,.18); }
.voice-copy { display: grid; gap: 6px; text-align: center; }
.voice-copy span { color: #6de0eb; font-size: 14px; }
.voice-copy strong { font-size: clamp(19px, 2vw, 28px); }
.voice-wave { width: min(100%, 620px); height: 150px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.voice-wave i { width: 5px; height: 24%; border-radius: 999px; background: #6de0eb; transform-origin: center; animation: voiceWave 1.2s ease-in-out infinite; }
.voice-wave i:nth-child(3n) { animation-delay: -.3s; }
.voice-wave i:nth-child(3n + 1) { animation-delay: -.6s; }
.voice-wave i:nth-child(4n) { animation-delay: -.9s; }
.voice-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.voice-meta span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(237,248,249,.72); font-size: 14px; }

@keyframes coreSpin { to { transform: rotate(360deg); } }
@keyframes nodePulse { 0%, 100% { transform: translateY(0); border-color: rgba(255,255,255,.17); } 50% { transform: translateY(-6px); border-color: rgba(109,224,235,.55); } }
@keyframes previewFocus { 0%, 100% { transform: scale(.82); opacity: .45; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes previewMove { to { transform: translateX(140%); } }
@keyframes timelineScan { to { left: 96%; } }
@keyframes frameDrift { to { transform: scale(1.08) translateY(-5px); } }
@keyframes generationProgress { 0% { transform: translateX(-110%); } 100% { transform: translateX(250%); } }
@keyframes humanStudioMove { 0% { transform: scale(1.02) translate3d(-.35%, .2%, 0); } 52% { transform: scale(1.065) translate3d(1.15%, -.6%, 0); } 100% { transform: scale(1.045) translate3d(.35%, -.2%, 0); } }
@keyframes humanScan { from { transform: translateY(-70%); } to { transform: translateY(70%); } }
@keyframes hudHover { 0%, 100% { transform: translate3d(0, 0, 0); opacity: .78; } 50% { transform: translate3d(0, -5px, 0); opacity: 1; } }
@keyframes hudProgress { 0%, 100% { transform: translateX(-8%); opacity: .45; } 50% { transform: translateX(130%); opacity: 1; } }
@keyframes humanVoiceBeat { 0%, 100% { transform: scaleY(.45); opacity: .52; } 50% { transform: scaleY(1.8); opacity: 1; } }
@keyframes contactCore { 0%, 100% { transform: translate(-50%, -50%) scale(.75); opacity: .7; } 48% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; } }
@keyframes contactRipple { 0% { transform: scale(.42); opacity: 0; } 24% { opacity: .78; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes contactParticle { 0%, 24% { opacity: 0; transform: rotate(var(--particle-angle)) translateX(11px) scale(.2); } 52% { opacity: 1; } 100% { opacity: 0; transform: rotate(var(--particle-angle)) translateX(62px) scale(1); } }
@keyframes humanDataFlow { 0%, 22% { opacity: 0; transform: rotate(var(--stream-angle)) scaleX(.18); } 45% { opacity: .9; } 82%, 100% { opacity: 0; transform: rotate(var(--stream-angle)) scaleX(1); } }
@keyframes voiceWave { 0%, 100% { transform: scaleY(.35); opacity: .55; } 50% { transform: scaleY(2.7); opacity: 1; } }
.visual-pair {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  background: #dce8e9;
}
.visual-pair::before { display: none; }
.visual-pair img {
  min-width: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(22, 49, 58, .15));
}
.story-end { background: rgba(7,13,13,.72); color: #fff; }
.restaurant-page .story-end { background: rgba(7,18,22,.74); }
.story-end .slide-index { color: #efab90; }
.story-end .slide-copy > p:not(.slide-index) { color: rgba(255, 255, 255, .76); }
.story-end .slide-copy em { color: #f0a486; }
.end-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.solid-button { background: #f7f8f4; color: #1d201c; }
.solid-button:hover { background: #fff; transform: translateY(-2px); }
.outline-button { border: 1px solid rgba(255, 255, 255, .42); color: #fff; }
.outline-button:hover { background: rgba(255, 255, 255, .1); transform: translateY(-2px); }
.end-note {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 340px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 12px;
  text-align: center;
}
.end-note strong { font-size: clamp(44px, 5.5vw, 84px); letter-spacing: -.035em; line-height: 1.1; }
.end-note span { margin-top: 16px; color: rgba(255, 255, 255, .72); font-size: 16px; line-height: 1.7; }
.dashboard-card {
  align-self: center;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border-radius: 12px;
  background: #f8faf8;
  color: #17313a;
}
.dashboard-media {
  height: min(53dvh, 510px);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
  overflow: hidden;
}
.dashboard-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 7px; }
.dashboard-card strong { font-size: 18px; line-height: 1.5; }
.dashboard-card span { color: #52686e; font-size: 15px; line-height: 1.6; }
.slide-nav {
  position: fixed;
  left: clamp(20px, 4vw, 62px);
  bottom: 24px;
  z-index: 21;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slide-dot {
  position: relative;
  border: 0;
  padding: 5px 0 8px;
  background: transparent;
  color: #666962;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45;
  transition: color .25s var(--ease);
}
.slide-dot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  transition: right .3s var(--ease);
}
.slide-dot:hover,
.slide-dot.active { color: var(--ink); }
.slide-dot.active::after { right: 0; }
.slide-controls {
  position: fixed;
  right: clamp(20px, 4vw, 62px);
  bottom: 20px;
  z-index: 21;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666962;
  font-size: 14px;
}
.slide-controls b { color: var(--ink); font-size: 16px; }
.slide-controls button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(250, 251, 248, .72);
  cursor: pointer;
  font-size: 19px;
  line-height: 1;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.slide-controls button:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.product-page .slide-nav,
.product-page .slide-controls { color: rgba(239,247,242,.72); }
.product-page .slide-dot:hover,
.product-page .slide-dot.active,
.product-page .slide-controls b { color: #fff; }
.product-page .slide-controls button { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); color: #fff; }
.product-page .slide-controls button:hover { background: #fff; color: #101515; }
.product-page.is-end .product-header { color: #fff; }
.product-page.is-end .product-title span { color: rgba(255, 255, 255, .66); }
.product-page.is-end .back-link:hover,
.product-page.is-end .product-switch:hover { background: rgba(255, 255, 255, .12); }
.product-page.is-end .slide-dot,
.product-page.is-end .slide-controls { color: rgba(255, 255, 255, .64); }
.product-page.is-end .slide-dot:hover,
.product-page.is-end .slide-dot.active,
.product-page.is-end .slide-controls b { color: #fff; }
.product-page.is-end .slide-controls button { border-color: rgba(255, 255, 255, .34); background: rgba(255, 255, 255, .06); color: #fff; }
.product-page.is-end .slide-controls button:hover { background: #fff; color: #171916; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 50; }
.mobile-menu[hidden] { display: none; }
.menu-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(7, 9, 7, .66); }
.menu-sheet {
  position: absolute;
  top: 14px;
  right: 14px;
  width: min(320px, calc(100vw - 28px));
  display: grid;
  gap: 4px;
  padding: 68px 12px 12px;
  border-radius: 12px;
  background: #f7f8f4;
  color: #1c1f1b;
  box-shadow: 0 8px 8px rgba(0, 0, 0, .16);
}
.menu-sheet a { padding: 13px 15px; border-radius: 8px; font-size: 16px; font-weight: 650; }
.menu-sheet a:hover,
.menu-sheet a.active { background: #e5e8e1; }
body.menu-open { overflow: hidden; }

@media (max-width: 1120px) {
  .selector-main { gap: 24px; }
  .selector-projects { height: 100%; max-height: 470px; }
  .project-card, .project-visual { min-height: 0; max-height: none; }
  .project-visual { grid-template-columns: minmax(0, 1fr); }
  .story-slide { grid-template-columns: minmax(340px, .9fr) minmax(360px, 1.1fr); gap: 46px; padding-inline: 7vw; }
  .slide-copy h1, .slide-copy h2 { font-size: clamp(40px, 5vw, 64px); }
  .slide-nav { gap: 9px; }
}

@media (max-width: 820px) {
  .landing-page { min-height: 680px; }
  .landing-shell { min-height: 680px; padding: 16px 18px 20px; }
  .landing-header { grid-template-columns: 50px 1fr 46px; gap: 12px; }
  .brand-mark { width: 48px; height: 48px; font-size: 23px; }
  .nav-pill, .contact-pill { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    align-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 13px;
    border: 0;
    border-radius: 50%;
    background: #f7f8f4;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: #1b1e1a; }
  .landing-hero { width: 100%; padding: 0 10px 2vh; }
  .landing-title { font-size: clamp(45px, 11.7vw, 70px); line-height: 1.1; }
  .landing-lede { max-width: 34em; margin-top: 18px; font-size: 16px; line-height: 1.82; }
  .primary-cta { margin-top: 22px; }
  .landing-stats { grid-template-columns: 1fr 1fr; row-gap: 16px; }
  .stat { padding: 2px 14px; }
  .stat:nth-child(3)::before { display: none; }
  .stat strong { font-size: 20px; }

  .selector-page { min-height: 720px; }
  .selector-header { height: 72px; grid-template-columns: 48px 1fr auto; padding: 12px 16px; }
  .selector-header > div { justify-content: start; text-align: left; }
  .selector-header span { display: none; }
  .selector-header strong { font-size: 16px; }
  .selector-back { min-height: 40px; padding-inline: 15px; font-size: 14px; }
  .selector-main {
    height: calc(100dvh - 72px);
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-content: stretch;
    gap: 16px;
    padding: 12px 16px 18px;
  }
  .selector-copy { max-width: none; display: block; text-align: center; }
  .section-label { display: none; }
  .selector-copy h1 { font-size: clamp(36px, 8vw, 54px); line-height: 1.08; }
  .selector-copy > p:not(.section-label) { max-width: 56ch; margin: 14px auto 0; font-size: 15px; line-height: 1.68; }
  .selector-ai-link { grid-column: 1 / -1; margin-top: 0; font-size: 15px; }
  .selector-projects { min-height: 0; height: 100%; max-height: none; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: minmax(0, 1fr); overflow: hidden; }
  .project-visual { min-height: 0; max-height: none; height: 100%; grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) 252px; }
  .project-visual:hover { transform: translateY(-4px); }
  .project-visual-copy { grid-row: 2; padding: 18px; }
  .project-visual-copy h2 { font-size: clamp(30px, 5vw, 42px); }
  .project-screens { grid-row: 1; grid-column: 1; min-height: 0; }
  .project-screens img { min-height: 0; }
  .project-future-tags { left: 12px; right: 12px; bottom: 10px; justify-content: flex-start; }
  .project-future-tags span { padding: 5px 7px; }
  .project-card { min-height: 0; height: 100%; }
  .project-card:hover { transform: translateY(-4px); }
  .project-card img { width: 100%; opacity: .55; }
  .project-card::after { background: linear-gradient(180deg, rgba(10, 10, 9, .08), rgba(10, 10, 9, .76)); }
  .project-meta { display: grid; align-content: start; gap: 4px; padding: 16px 16px 0; }
  .project-card-copy { max-width: none; padding: 18px 16px; }
  .project-card-copy h2 { font-size: clamp(28px, 5.5vw, 40px); }

  .product-page { min-height: 680px; }
  .product-header { min-height: 72px; grid-template-columns: 1fr auto 1fr; gap: 8px; padding: 12px 16px; }
  .back-link, .product-switch { min-height: 38px; padding: 0 8px; font-size: 14px; }
  .product-title span { display: none; }
  .product-title strong { font-size: 17px; }
  .story-slide {
    min-height: 680px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(220px, 42dvh);
    align-content: center;
    gap: 22px;
    padding: 82px 24px 78px;
  }
  .slide-copy { max-width: 720px; }
  .slide-index { margin-bottom: 8px; }
  .slide-copy h1, .slide-copy h2 { max-width: 13em; margin-bottom: 12px; font-size: clamp(38px, 7.8vw, 58px); line-height: 1.1; }
  .slide-copy > p:not(.slide-index) { max-width: 70ch; font-size: 17px; line-height: 1.78; }
  .metric-row { margin-top: 18px; }
  .detail-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: none; margin-top: 16px; font-size: 15px; line-height: 1.6; }
  .detail-list li { padding-left: 17px; }
  .slide-visual { width: min(100%, 680px); height: min(42dvh, 330px); min-height: 220px; justify-self: center; }
  .visual-warm > img, .visual-cool > img { object-fit: cover; object-position: top center; }
  .visual-phone img { padding: 5px; }
  .visual-gallery { padding: 12px; gap: 9px; }
  .visual-gallery figure img { padding: 0; }
  .visual-gallery figcaption { padding: 7px 8px; font-size: 14px; }
  .end-note { min-height: 230px; }
  .dashboard-card { width: min(100%, 680px); justify-self: center; }
  .dashboard-media { height: 30dvh; min-height: 210px; }
  .slide-nav { left: 16px; right: 16px; bottom: 14px; justify-content: center; gap: 13px; }
  .slide-dot { width: 20px; height: 20px; overflow: hidden; color: transparent; font-size: 0; }
  .slide-dot::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #8d9189; }
  .slide-dot::after { left: 3px; right: 3px; bottom: 2px; }
  .slide-dot.active::before { background: var(--ink); }
  .product-page.is-end .slide-dot::before { background: rgba(255,255,255,.48); }
  .product-page.is-end .slide-dot.active::before { background: #fff; }
  .slide-controls { right: 16px; bottom: 48px; }
}

@media (max-width: 560px) {
  .landing-page { min-height: 640px; }
  .landing-shell { min-height: 640px; }
  .trust-row { margin-bottom: 14px; }
  .trust-avatar { width: 30px; height: 30px; font-size: 14px; }
  .trust-pill { font-size: 14px; }
  .landing-title { font-size: clamp(41px, 12.5vw, 58px); }
  .landing-lede { font-size: 15px; line-height: 1.72; }
  .primary-cta { min-height: 50px; font-size: 15px; }
  .landing-stats { row-gap: 11px; }
  .stat { grid-template-columns: 21px auto; column-gap: 6px; padding-inline: 8px; }
  .stat b { font-size: 16px; }
  .stat strong { font-size: 18px; }
  .stat span { font-size: 14px; }

  .selector-copy { display: block; }
  .selector-copy h1 { font-size: 34px; }
  .selector-copy h1 br { display: none; }
  .selector-copy > p:not(.section-label) { margin-top: 8px; max-width: 46ch; font-size: 14px; line-height: 1.6; }
  .selector-ai-link { margin-top: 12px; font-size: 14px; }
  .selector-projects { grid-template-columns: 1fr; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .project-visual { min-height: 0; max-height: none; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); grid-template-rows: minmax(0, 1fr); }
  .project-visual-copy { grid-row: 1; padding: 16px; gap: 6px 10px; }
  .project-visual-copy span { font-size: 14px; }
  .project-visual-copy h2 { font-size: 28px; }
  .project-visual-copy p { font-size: 14px; line-height: 1.5; }
  .project-visual-copy b { width: 38px; height: 38px; }
  .project-screens { grid-row: 1; grid-column: 2; grid-template-columns: 1fr; }
  .project-screens img { display: block; }
  .project-future-tags { display: none; }
  .project-card { min-height: 235px; }
  .project-meta { display: flex; padding-top: 13px; font-size: 14px; }
  .project-card-copy { padding: 12px 15px 15px; grid-template-columns: minmax(0, 1fr) 42px; }
  .project-card-copy h2 { font-size: 30px; }
  .project-card-copy p { font-size: 14px; line-height: 1.58; }
  .circle-arrow { width: 40px; height: 40px; }

  .product-header { grid-template-columns: 42px 1fr 42px; }
  .back-link, .product-switch { width: 42px; justify-content: center; padding: 0; font-size: 19px; }
  .back-link span:last-child,
  .product-switch { font-size: 0; }
  .product-switch span { font-size: 19px; }
  .story-slide {
    grid-template-rows: auto minmax(190px, 35dvh);
    gap: 14px;
    padding: 76px 18px 70px;
  }
  .slide-index { font-size: 14px; }
  .slide-copy h1, .slide-copy h2 { font-size: clamp(34px, 9.4vw, 46px); margin-bottom: 10px; }
  .slide-copy > p:not(.slide-index) { font-size: 16px; line-height: 1.74; }
  .metric-row { gap: 15px; margin-top: 13px; font-size: 14px; }
  .metric-row span { min-width: 78px; }
  .metric-row b { font-size: 23px; }
  .detail-list { display: grid; grid-template-columns: 1fr; gap: 4px; margin-top: 10px; font-size: 14px; line-height: 1.52; }
  .slide-visual { height: clamp(190px, 35dvh, 260px); min-height: 0; }
  .visual-gallery { padding: 8px; gap: 6px; }
  .visual-phone img { padding: 4px; }
  .visual-gallery figcaption { padding: 6px 4px; font-size: 14px; }
  .visual-gallery.gallery-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visual-pair { gap: 7px; padding: 10px; }
  .end-actions { margin-top: 16px; }
  .solid-button, .outline-button { min-height: 44px; padding-inline: 16px; font-size: 14px; }
  .end-note { min-height: 190px; padding: 20px; }
  .end-note strong { font-size: 40px; }
  .end-note span { margin-top: 8px; font-size: 14px; }
  .dashboard-card { padding: 10px; }
  .dashboard-media { height: 25dvh; min-height: 180px; gap: 7px; }
  .dashboard-card strong { font-size: 16px; }
  .dashboard-card span { font-size: 14px; }
  .slide-controls { bottom: 45px; }
  .slide-controls span { display: none; }
}

@media (max-height: 720px) and (min-width: 821px) {
  .slide-visual { height: clamp(330px, 58dvh, 500px); min-height: 0; }
  .visual-gallery { padding: 10px; gap: 9px; }
  .visual-phone img { padding: 5px; }
}

@media (max-width: 820px) {
  .story-retention { grid-template-columns: 1fr; }
  .retention-copy h2 { font-size: clamp(34px, 9.4vw, 46px); margin-bottom: 10px; }
  .retention-copy > p:not(.slide-index) { font-size: 16px; line-height: 1.74; }
  .retention-actions { margin-top: 15px; gap: 7px; }
  .retention-actions span { padding: 7px 9px; font-size: 14px; }
  .retention-loop { min-height: 42dvh; }
  .retention-core { width: 100px; }
  .retention-core b { font-size: 28px; }
  .retention-core span { font-size: 14px; }
  .retention-node { min-width: 92px; padding: 7px 8px; }
  .retention-node b { font-size: 14px; }
  .retention-node small { font-size: 14px; }
  .retention-node-a { top: 8%; left: 4%; }
  .retention-node-b { top: 8%; right: 4%; }
  .retention-node-c { bottom: 8%; right: 4%; }
  .retention-node-d { bottom: 8%; left: 4%; }
  .ring-outer { width: 82%; }
  .ring-inner { width: 56%; }
  .future-core,
  .future-edit-scene,
  .future-video-scene,
  .future-human-scene,
  .future-voice-scene { min-height: 0; }
  .core-center { width: 108px; }
  .core-center span { font-size: 32px; }
  .core-center strong { font-size: 14px; }
  .orbit-a { width: 220px; }
  .orbit-b { width: 315px; }
  .orbit-c { width: 405px; }
  .core-node { min-width: 96px; padding: 7px 8px; font-size: 14px; }
  .node-edit { left: 4%; top: 14%; }
  .node-video { right: 4%; top: 18%; }
  .node-human { left: 5%; bottom: 13%; }
  .node-voice { right: 5%; bottom: 11%; }
  .preview-screen { padding: 14px; }
  .preview-screen span, .preview-screen b { font-size: 14px; }
  .edit-status { font-size: 14px; }
  .storyboard figure > div { height: 150px; }
  .storyboard figcaption { padding: 7px 4px; font-size: 14px; }
  .human-caption { left: 14px; right: 14px; bottom: 14px; padding: 11px 13px; }
  .human-caption strong { font-size: 14px; }
  .human-hud { min-width: 0; padding: 7px 8px; font-size: 14px; }
  .human-hud span { font-size: 14px; }
  .human-hud strong { font-size: 14px; }
  .hud-emotion { left: 4%; top: 9%; }
  .hud-gesture { right: 4%; top: 22%; }
  .hud-voice { right: 4%; top: 45%; }
  .human-contact-zone { left: 36%; top: 43%; width: 76px; opacity: .84; }
  .human-data-stream { left: 34%; top: 41%; width: 49%; opacity: .58; }
  .voice-wave { height: 100px; gap: 4px; }
  .voice-wave i { width: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  .retention-ring,
  .retention-node,
  .retention-orbit-dot,
  .future-page .core-orbit,
  .future-page .core-node,
  .future-page .preview-screen::before,
  .future-page .preview-flare,
  .future-page .timeline-playhead,
  .future-page .prompt-stream span,
  .future-page .storyboard figure > div,
  .future-page .generation-line i::after,
  .future-page .future-human-scene img,
  .future-page .human-actor,
  .future-page .human-scan,
  .future-page .human-hud,
  .future-page .human-hud *,
  .future-page .human-contact-zone *,
  .future-page .human-data-stream i,
  .future-page .photo-scan-aperture,
  .future-page .photo-scan-trace,
  .future-page .scan-extraction-route i,
  .future-page .video-source-photo,
  .future-page .scan-corner,
  .future-page .scan-subject-box,
  .future-page .scan-pixel-field i,
  .future-page .scan-readout,
  .future-page .voice-wave i { animation: none; }
  .restaurant-ai-secretary-scene img,
  .insight-pulse { animation: none; }
}

/* Gallery sizing: keep one shared image viewport per gallery and preserve full screenshots. */
.slide-visual.visual-gallery {
  height: min(58dvh, 600px);
  min-height: 360px;
  max-height: none;
}
.visual-gallery {
  align-items: stretch;
}
.visual-gallery figure {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}
.visual-gallery figure img,
.visual-gallery.visual-phone figure img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .slide-visual.visual-gallery { height: min(42dvh, 330px); min-height: 220px; }
}

@media (max-width: 560px) {
  .slide-visual.visual-gallery { height: clamp(190px, 35dvh, 260px); min-height: 0; }
}

/* AI数字人回退到 2026-08-21 动效前版本：保留旧版单图展示与状态标签。 */
.future-page .future-human-scene { isolation: auto; background: #07151c; }
.future-page .future-human-scene::after { display: none; }
.future-page .future-human-scene img {
  object-position: center 18%;
  animation: humanGesture 6s ease-in-out infinite;
}
.future-page .future-human-scene .human-caption {
  border-left: 2px solid #6de0eb;
  border-top: 0;
  background: rgba(5,17,22,.82);
  backdrop-filter: none;
}
.future-page .future-human-scene .human-signal {
  position: absolute;
  z-index: 4;
  display: block;
  min-width: 0;
  padding: 8px 11px;
  border: 1px solid rgba(109,224,235,.38);
  border-radius: 5px;
  background: rgba(5,21,28,.78);
  color: rgba(239,250,251,.86);
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
  animation: signalFloat 3.6s ease-in-out infinite;
}
.future-page .future-human-scene .signal-a { left: 7%; top: 18%; }
.future-page .future-human-scene .signal-b { right: 6%; top: 30%; animation-delay: -1.2s; }
.future-page .future-human-scene .signal-c { right: 9%; top: 52%; animation-delay: -2.4s; }

@media (max-width: 820px) {
  .future-page .future-human-scene .human-signal { padding: 6px 8px; font-size: 14px; }
  .future-page .future-human-scene .signal-a { left: 4%; top: 11%; }
  .future-page .future-human-scene .signal-b { right: 4%; top: 23%; }
  .future-page .future-human-scene .signal-c { right: 4%; top: 41%; }
}

@media (max-height: 720px) and (min-width: 821px) {
  .landing-shell { padding-top: 14px; padding-bottom: 18px; }
  .landing-header { transform: scale(.92); transform-origin: top center; }
  .landing-hero { padding-top: 1vh; }
  .trust-row { margin-bottom: 10px; }
  .landing-title { font-size: clamp(48px, 5.5vw, 76px); }
  .landing-lede { margin-top: 14px; font-size: 16px; }
  .primary-cta { min-height: 48px; margin-top: 18px; }
  .stat strong { font-size: 19px; }
  .story-slide { padding-top: 88px; padding-bottom: 70px; }
  .slide-copy h1, .slide-copy h2 { margin-bottom: 13px; font-size: clamp(38px, 4.5vw, 62px); }
  .slide-copy > p:not(.slide-index) { font-size: 16px; line-height: 1.7; }
  .detail-list { margin-top: 16px; gap: 7px; font-size: 15px; }
  .slide-visual { height: 63dvh; min-height: 330px; }
  .dashboard-media { height: 46dvh; }
}

/* 2026 AI motion system: restrained ambience, functional processing scenes, and responsive depth. */
.ai-motion-v2 {
  --ai-ice: #bfeeff;
  --ai-cyan: #76dff1;
  --ai-violet: #9c9dff;
  --ai-deep: #061319;
}

.landing-bg::before,
.landing-bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -14%;
  pointer-events: none;
}
.landing-bg::before {
  background: radial-gradient(circle at 50% 48%, rgba(117, 224, 243, .16), transparent 18%), radial-gradient(circle at 72% 24%, rgba(147, 144, 255, .09), transparent 24%);
  filter: blur(18px);
  animation: ambientBreathe 11s ease-in-out infinite alternate;
}
.landing-bg::after {
  background: linear-gradient(116deg, transparent 35%, rgba(188, 239, 255, .08) 47%, transparent 58%);
  filter: blur(22px);
  mix-blend-mode: screen;
  animation: ambientSweep 16s ease-in-out infinite alternate;
}
.landing-bg video { transform: scale(1.025); animation: heroVideoDrift 18s ease-in-out infinite alternate; }
.landing-shade { z-index: 4; }
.landing-neural-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  pointer-events: none;
}
.landing-ai-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 49%;
  width: clamp(210px, 24vw, 365px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: .82;
}
.landing-core-pulse,
.landing-core-light {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
}
.landing-core-pulse {
  background: radial-gradient(circle, rgba(225, 251, 255, .9) 0 7%, rgba(118, 223, 241, .36) 25%, rgba(97, 133, 255, .08) 53%, transparent 72%);
  box-shadow: 0 0 38px rgba(119, 222, 241, .28), 0 0 110px rgba(109, 132, 255, .14);
  animation: coreBreathe 4.6s ease-in-out infinite;
}
.landing-core-light { inset: 15%; border: 1px solid rgba(187, 241, 255, .18); box-shadow: inset 0 0 38px rgba(124, 228, 244, .08); animation: coreHalo 7s ease-in-out infinite; }
.landing-core-orbit {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(185, 239, 255, .22);
  border-radius: 50%;
  animation: coreOrbit 18s linear infinite;
}
.landing-core-orbit::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 50%;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ai-ice);
  box-shadow: 0 0 13px 3px rgba(149, 229, 255, .56);
}
.orbit-two { inset: 1%; transform: rotate(58deg) scaleY(.58); animation-duration: 25s; animation-direction: reverse; }
.orbit-three { inset: 5%; transform: rotate(-36deg) scaleX(.68); border-color: rgba(155, 151, 255, .22); animation-duration: 31s; }
.landing-core-node {
  position: absolute;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(236, 253, 255, .9);
  box-shadow: 0 0 11px 3px rgba(142, 224, 248, .44);
  animation: nodeTwinkle 3.8s ease-in-out infinite;
}
.landing-core-node.node-one { left: 13%; top: 29%; }
.landing-core-node.node-two { right: 12%; bottom: 28%; animation-delay: -1.2s; }
.landing-core-node.node-three { right: 20%; top: 18%; animation-delay: -2.4s; }
.landing-header,
.landing-hero,
.landing-stats { position: relative; z-index: 6; }
.landing-title { text-shadow: 0 2px 22px rgba(0, 0, 0, .34), 0 0 36px rgba(141, 228, 246, .08); }
.primary-cta { position: relative; overflow: hidden; box-shadow: 0 4px 8px rgba(4, 6, 5, .2), 0 0 0 1px rgba(190, 238, 255, .12); }
.primary-cta::after,
.solid-button::after,
.outline-button::after {
  content: "";
  position: absolute;
  top: -95%;
  left: -30%;
  width: 20%;
  height: 290%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  transform: translateX(-260%) rotate(19deg);
  transition: transform .65s var(--ease);
  pointer-events: none;
}
.primary-cta:hover::after,
.solid-button:hover::after,
.outline-button:hover::after { transform: translateX(810%) rotate(19deg); }

.future-page .particle-field {
  background: radial-gradient(circle at 76% 22%, rgba(130, 126, 255, .14), transparent 28%), radial-gradient(circle at 16% 82%, rgba(86, 220, 238, .12), transparent 30%);
}
.future-page .particle-field::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: radial-gradient(ellipse at 42% 44%, rgba(109, 224, 235, .1), transparent 25%);
  filter: blur(20px);
  animation: ambientBreathe 13s ease-in-out infinite alternate;
}
.future-page .product-header::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(135, 228, 241, .58), transparent);
  animation: headerSignal 5s ease-in-out infinite;
}
.future-page .story-slide::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 12%;
  width: min(42vw, 600px);
  height: min(42vw, 600px);
  border: 1px solid rgba(136, 230, 245, .08);
  border-radius: 50%;
  transform: translate3d(calc(var(--pointer-x, 0) * .5px), calc(var(--pointer-y, 0) * .5px), 0);
  pointer-events: none;
}
.future-page .slide-copy { text-shadow: 0 2px 22px rgba(0, 0, 0, .24); }
.future-page .slide-visual {
  transform: perspective(1100px) rotateX(var(--motion-tilt-y, 0deg)) rotateY(var(--motion-tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  box-shadow: inset 0 0 60px rgba(32, 130, 145, .12), 0 18px 34px rgba(0, 0, 0, .18);
}
.future-page .slide-visual::after {
  background: linear-gradient(116deg, transparent 25%, rgba(226, 252, 255, .16) 46%, transparent 63%);
  mix-blend-mode: screen;
}
.future-page .slide-visual:hover { box-shadow: inset 0 0 72px rgba(79, 210, 227, .15), 0 24px 48px rgba(0, 0, 0, .26), 0 0 34px rgba(111, 219, 239, .1); }
.future-page .slide-visual::before {
  inset: 12px;
  border-color: rgba(157, 235, 246, .14);
  background: radial-gradient(circle at var(--motion-glow-x, 50%) var(--motion-glow-y, 50%), rgba(171, 239, 249, .09), transparent 33%);
}
.future-core { overflow: hidden; background: radial-gradient(circle at center, rgba(77, 208, 228, .13), rgba(5, 18, 24, .84) 54%, rgba(5, 18, 24, .96)); }
.future-core-processing { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.processing-beam {
  position: absolute;
  left: -24%;
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178, 242, 255, .86), transparent);
  box-shadow: 0 0 15px rgba(123, 225, 245, .42);
  transform-origin: right center;
  animation: coreBeam 6.4s ease-in-out infinite;
}
.beam-a { --beam-angle: 28deg; top: 29%; }
.beam-b { --beam-angle: -18deg; top: 64%; animation-delay: -2.2s; }
.beam-c { --beam-angle: 9deg; top: 42%; animation-delay: -4.3s; }
.processing-pulse { position: absolute; inset: 31%; border: 1px solid rgba(151, 237, 248, .28); border-radius: 50%; animation: processingPulse 4.4s ease-out infinite; }
.future-page .core-center { background: radial-gradient(circle at 36% 30%, rgba(220, 251, 255, .24), #0a2028 56%); box-shadow: 0 0 40px rgba(62, 206, 221, .24), 0 0 110px rgba(106, 132, 255, .1); animation: coreBreathe 4.6s ease-in-out infinite; }
.future-page .core-orbit { box-shadow: 0 0 16px rgba(105, 224, 240, .06); }
.future-page .core-node { background: rgba(16, 37, 44, .72); backdrop-filter: blur(10px); box-shadow: 0 0 20px rgba(101, 222, 239, .04); }

.future-edit-scene { background: radial-gradient(circle at 68% 28%, rgba(133, 129, 255, .15), transparent 32%), rgba(5, 18, 24, .82); }
.future-edit-scene .preview-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(156, 232, 246, .28) 50%, transparent 57%);
  transform: translateY(-112%);
  animation: visualScan 4.8s linear infinite;
}
.future-edit-scene .edit-timeline i { position: relative; overflow: hidden; }
.future-edit-scene .edit-timeline i::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent); transform: translateX(-130%); animation: clipShimmer 3.2s ease-in-out infinite; }
.future-edit-scene .edit-timeline i:nth-child(2)::after { animation-delay: -.7s; }
.future-edit-scene .edit-timeline i:nth-child(3)::after { animation-delay: -1.4s; }

.future-video-scene { background: radial-gradient(circle at 52% 48%, rgba(95, 208, 229, .13), transparent 40%), rgba(5, 18, 24, .82); }
.future-video-scene .storyboard figure { position: relative; border: 1px solid rgba(148, 234, 246, .12); }
.future-video-scene .storyboard figure::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(173, 239, 248, .18), transparent 50%); opacity: .45; animation: reconstructionGlow 4.2s ease-in-out infinite; }
.future-video-scene .storyboard figure:nth-child(2)::after { animation-delay: -1.4s; }
.future-video-scene .storyboard figure:nth-child(3)::after { animation-delay: -2.8s; }
.future-video-scene .generation-line { position: relative; }
.future-video-scene .generation-line::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(124, 223, 241, .68), transparent); opacity: .45; animation: lineSignal 3.6s ease-in-out infinite; }

.future-human-scene { background: radial-gradient(circle at 50% 40%, rgba(135, 126, 255, .15), transparent 46%), #07151c; }
.future-human-scene::after { content: ""; position: absolute; z-index: 5; inset: 0; background: linear-gradient(90deg, transparent 38%, rgba(185, 241, 251, .1) 50%, transparent 62%); transform: translateX(-120%); animation: humanLightPass 7.4s ease-in-out infinite; pointer-events: none; }
.future-human-scene .human-caption { border-top: 1px solid rgba(115, 225, 240, .5); background: rgba(5, 17, 22, .7); backdrop-filter: blur(12px); }

.future-voice-scene { background: radial-gradient(circle at 50% 48%, rgba(115, 220, 238, .14), transparent 35%), rgba(5, 18, 24, .86); }
.future-voice-scene::after { content: ""; position: absolute; width: 132px; aspect-ratio: 1; border: 1px solid rgba(123, 226, 241, .18); border-radius: 50%; animation: voiceRipple 3.4s ease-out infinite; pointer-events: none; }
.future-voice-scene .voice-avatar { background: radial-gradient(circle at 36% 30%, rgba(229, 253, 255, .25), #102a32 62%); animation: coreBreathe 4s ease-in-out infinite; }
.future-voice-scene .voice-wave { position: relative; }
.future-voice-scene .voice-wave::before,
.future-voice-scene .voice-wave::after { content: ""; position: absolute; top: 50%; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(119, 223, 240, .4), transparent); }
.future-voice-scene .voice-wave::after { transform: rotate(90deg) scaleX(.62); opacity: .5; }

@keyframes ambientBreathe { from { transform: translate3d(-2%, -1%, 0) scale(.98); opacity: .62; } to { transform: translate3d(2%, 2%, 0) scale(1.06); opacity: 1; } }
@keyframes ambientSweep { from { transform: translate3d(-7%, -2%, 0) rotate(-5deg); } to { transform: translate3d(7%, 3%, 0) rotate(4deg); } }
@keyframes heroVideoDrift { from { transform: scale(1.025); } to { transform: scale(1.065); } }
@keyframes coreBreathe { 0%, 100% { transform: scale(.96); filter: brightness(.93); } 50% { transform: scale(1.06); filter: brightness(1.12); } }
@keyframes coreHalo { 0%, 100% { transform: scale(.94); opacity: .4; } 50% { transform: scale(1.1); opacity: .9; } }
@keyframes coreOrbit { to { transform: rotate(360deg); } }
@keyframes nodeTwinkle { 0%, 100% { opacity: .32; transform: scale(.72); } 50% { opacity: 1; transform: scale(1.22); } }
@keyframes headerSignal { 0%, 100% { transform: scaleX(.28); opacity: .3; } 50% { transform: scaleX(1); opacity: 1; } }
@keyframes coreBeam { 0%, 22% { opacity: 0; transform: translateX(-35%) rotate(var(--beam-angle, 0deg)); } 42%, 68% { opacity: .9; } 100% { opacity: 0; transform: translateX(230%) rotate(var(--beam-angle, 0deg)); } }
@keyframes processingPulse { 0% { transform: scale(.5); opacity: 0; } 32% { opacity: .75; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes visualScan { from { transform: translateY(-115%); } to { transform: translateY(115%); } }
@keyframes clipShimmer { 0%, 30% { transform: translateX(-130%); } 70%, 100% { transform: translateX(170%); } }
@keyframes reconstructionGlow { 0%, 100% { transform: scale(.85); opacity: .1; } 50% { transform: scale(1.18); opacity: .72; } }
@keyframes lineSignal { 0%, 100% { transform: scaleX(.35); opacity: .1; } 50% { transform: scaleX(1); opacity: .8; } }
@keyframes humanLightPass { 0%, 30% { transform: translateX(-125%); } 65%, 100% { transform: translateX(125%); } }
@keyframes voiceRipple { 0% { transform: scale(.48); opacity: 0; } 30% { opacity: .7; } 100% { transform: scale(2.55); opacity: 0; } }

@media (max-width: 820px) {
  .landing-ai-core { width: 190px; top: 51%; opacity: .68; }
  .landing-neural-canvas { opacity: .68; }
  .future-page .story-slide::after { width: 72vw; height: 72vw; right: -14vw; top: 20%; }
  .future-page .slide-visual { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .landing-bg::before,
  .landing-bg::after,
  .landing-bg video,
  .landing-core-pulse,
  .landing-core-light,
  .landing-core-orbit,
  .landing-core-node,
  .future-page .particle-field::before,
  .future-page .product-header::after,
  .future-page .future-core-processing *,
  .future-page .core-center,
  .future-edit-scene .preview-screen::after,
  .future-edit-scene .edit-timeline i::after,
  .future-video-scene .storyboard figure::after,
  .future-video-scene .generation-line::after,
  .future-human-scene::after,
  .future-human-scene .human-contact-zone::before,
  .future-human-scene .human-contact-zone::after,
  .future-voice-scene::after,
  .future-voice-scene .voice-avatar { animation: none !important; }
  .future-page .slide-visual { transform: none !important; }
}

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

/* Keep the AI digital-human scene on the pre-motion presentation. */
.future-page .future-human-scene {
  isolation: auto;
  overflow: hidden;
  background: #07151c;
  box-shadow: inset 0 0 60px rgba(32,130,145,.12);
}
.future-page .future-human-scene::after {
  display: none;
}
.future-page .future-human-scene img {
  object-position: center 18%;
  animation: humanGesture 6s ease-in-out infinite;
}
.future-page .future-human-scene .human-caption {
  border-top: 0;
  border-left: 2px solid #6de0eb;
  background: rgba(5,17,22,.82);
  backdrop-filter: none;
}
.future-page .future-human-scene .human-signal {
  box-shadow: none;
  animation: signalFloat 3.6s ease-in-out infinite;
}

/* AI workflow scenes: the animation describes a complete generation cycle, not ambient decoration. */
.future-edit-scene,
.future-video-scene {
  align-content: stretch;
  gap: 0;
  padding: clamp(20px, 3vw, 38px);
  background: radial-gradient(circle at 72% 22%, rgba(135, 126, 255, .18), transparent 34%), rgba(5, 18, 24, .88);
}
.future-edit-scene > *,
.future-video-scene > * { position: relative; z-index: 4; }
.edit-workflow {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin: auto 0 16px;
}
.edit-source-bank {
  position: relative;
  min-height: 172px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.source-title,
.edit-process-step span,
.scene-state,
.video-prompt span,
.video-image-stage > span,
.video-motion-stage > span,
.video-depth-stage > span,
.video-render-stage > span { font-size: 14px; }
.source-title {
  position: absolute;
  z-index: 3;
  top: -2px;
  color: rgba(212, 247, 251, .84);
}
.source-tile {
  position: absolute;
  width: 74px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(172, 237, 246, .3);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(84, 210, 223, .42), rgba(22, 37, 89, .55) 55%, rgba(238, 122, 90, .3));
  box-shadow: 0 0 20px rgba(101, 219, 238, .12);
  animation: sourceEnter 8.4s cubic-bezier(.22, .61, .36, 1) infinite;
}
.tile-a { --tile-y: -24px; --tile-r: -8deg; animation-delay: 0s; }
.tile-b { --tile-y: 14px; --tile-r: 8deg; animation-delay: -2.8s; }
.tile-c { --tile-y: 46px; --tile-r: -3deg; animation-delay: -5.6s; }
.edit-process-lane {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.edit-process-lane::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 31px;
  height: 1px;
  background: rgba(113, 216, 233, .24);
}
.edit-process-lane::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 7%;
  top: 30px;
  width: 18%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #9ef4ff, transparent);
  box-shadow: 0 0 16px rgba(114, 229, 246, .8);
  animation: workflowPacket 8.4s linear infinite;
}
.edit-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(210, 242, 247, .58);
  text-align: center;
  animation: workflowFocus 8.4s ease-in-out infinite;
}
.edit-process-step b {
  width: 62px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 225, 241, .3);
  border-radius: 50%;
  background: rgba(8, 30, 38, .92);
  color: #d7fbff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(84, 209, 227, .08);
}
.edit-process-step i {
  position: absolute;
  top: 9px;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(139, 236, 247, .42);
  border-radius: 50%;
  opacity: 0;
}
.step-scan { animation-delay: -7.7s; }
.step-analysis { animation-delay: -6.1s; }
.step-reorder { animation-delay: -4.5s; }
.step-timeline { animation-delay: -2.9s; }
.step-play { animation-delay: -1.3s; }
.step-scan i { animation: stepRing 8.4s ease-out infinite; animation-delay: -.7s; }
.step-analysis i { animation: stepRing 8.4s ease-out infinite; animation-delay: -2.3s; }
.step-reorder i { animation: stepRing 8.4s ease-out infinite; animation-delay: -3.9s; }
.step-timeline i { animation: stepRing 8.4s ease-out infinite; animation-delay: -5.5s; }
.step-play i { animation: stepRing 8.4s ease-out infinite; animation-delay: -7.1s; }
.edit-output { width: min(100%, 650px); margin-top: auto; }
.edit-output-frame {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  overflow: hidden;
  padding: 17px 18px;
  border: 1px solid rgba(148, 236, 247, .32);
  border-radius: 8px;
  background: radial-gradient(circle at 30% 22%, rgba(246, 157, 106, .62), transparent 24%), linear-gradient(115deg, #142c34, #202051 54%, #10272e);
}
.edit-output-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(198, 249, 255, .28) 50%, transparent 66%);
  animation: outputReveal 8.4s ease-in-out infinite;
}
.edit-output-frame span, .edit-output-frame b { position: relative; z-index: 1; font-size: 14px; }
.edit-output-frame b { color: rgba(234, 252, 255, .84); }
.edit-output-play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 252, 255, .54);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  transform: translate(-50%, -50%);
  animation: outputPlay 8.4s ease-in-out infinite;
}
.edit-output-timeline { position: relative; display: grid; grid-template-columns: 1.25fr .9fr 1.5fr 1fr; gap: 5px; padding: 12px 0 2px; }
.edit-output-timeline > i { height: 24px; border-radius: 3px; background: var(--clip-color); opacity: .8; animation: outputClip 8.4s ease-in-out infinite; }
.edit-output-timeline > i:nth-child(2) { animation-delay: -.42s; }
.edit-output-timeline > i:nth-child(3) { animation-delay: -.82s; }
.edit-output-timeline > i:nth-child(4) { animation-delay: -1.2s; }
.edit-output-timeline b { position: absolute; top: 8px; bottom: -1px; width: 2px; background: #ecfdff; box-shadow: 0 0 10px #fff; animation: outputPlayhead 8.4s linear infinite; }
.scene-state { width: min(100%, 650px); display: flex; justify-content: space-between; gap: 12px; margin: 14px 0 0; color: rgba(212, 242, 247, .7); line-height: 1.45; }
.scene-state b { color: #aaf4fd; font-size: 14px; white-space: nowrap; }

.future-video-scene { background: radial-gradient(circle at 50% 42%, rgba(95, 208, 229, .16), transparent 40%), rgba(5, 18, 24, .88); }
.video-generation-stage {
  position: relative;
  width: min(100%, 650px);
  min-height: 406px;
  display: grid;
  grid-template-columns: 1.22fr .88fr;
  grid-template-rows: 114px 1fr;
  gap: 14px;
  margin: auto 0;
}
.video-prompt,
.video-image-stage,
.video-motion-stage,
.video-depth-stage,
.video-render-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 230, 242, .22);
  border-radius: 8px;
  background: rgba(7, 28, 36, .68);
}
.video-prompt { display: grid; align-content: center; gap: 7px; padding: 16px 18px; }
.video-prompt span { color: #83ebf7; }
.video-prompt strong { max-width: 24ch; font-size: 16px; line-height: 1.45; font-weight: 600; }
.video-prompt i { position: absolute; bottom: 0; left: 0; height: 2px; width: 30%; background: #a8f4ff; box-shadow: 0 0 15px #8ceffc; animation: promptCursor 9.6s steps(4, end) infinite; }
.video-flow-rail { position: absolute; z-index: 2; left: 38%; top: 89px; right: 13%; height: 1px; display: flex; justify-content: space-between; background: rgba(126, 226, 240, .22); transform: rotate(19deg); transform-origin: left center; pointer-events: none; }
.video-flow-rail i { width: 7px; aspect-ratio: 1; border-radius: 50%; background: #adf5ff; box-shadow: 0 0 12px #81eaf6; animation: videoRailPacket 9.6s linear infinite; }
.video-flow-rail i:nth-child(2) { animation-delay: -1.9s; }.video-flow-rail i:nth-child(3) { animation-delay: -3.8s; }.video-flow-rail i:nth-child(4) { animation-delay: -5.7s; }.video-flow-rail i:nth-child(5) { animation-delay: -7.6s; }
.video-image-stage { grid-row: 2; display: grid; place-items: center; min-height: 264px; padding: 36px 18px 16px; }
.video-source-frame { --scan-travel: 310px; position: relative; width: min(100%, 286px); aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid rgba(131, 231, 243, .5); border-radius: 5px; background: #0b2027; box-shadow: 0 0 0 1px rgba(2, 14, 20, .88), 0 18px 35px rgba(0, 0, 0, .24); }
.video-source-photo { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(7, 26, 31, .08), rgba(7, 26, 31, .28)), url("assets/restaurant-dining-scene.png") center / cover; filter: saturate(.82) contrast(1.08); animation: sourcePhotoReveal 9.6s cubic-bezier(.22, .61, .36, 1) infinite; }
.photo-scan-aperture { position: absolute; z-index: 2; inset: 0 auto 0 -47%; width: 48%; background: linear-gradient(90deg, transparent 0%, rgba(115, 225, 241, .02) 18%, rgba(144, 241, 250, .19) 72%, rgba(222, 255, 255, .32) 100%); mix-blend-mode: screen; opacity: 0; transform: skewX(-11deg); animation: scanApertureSweep 9.6s cubic-bezier(.22, .61, .36, 1) infinite; }
.photo-scan-trace { position: absolute; z-index: 3; top: 0; bottom: 0; left: -2px; width: 1px; background: #d2fbff; box-shadow: 0 0 13px #75e7f6, 0 0 28px rgba(75, 221, 244, .55); opacity: 0; animation: scanTraceSweep 9.6s cubic-bezier(.22, .61, .36, 1) infinite; }
.photo-scan-trace::after { content: ""; position: absolute; top: 12%; bottom: 12%; left: -3px; width: 7px; border-radius: 50%; background: #effeff; box-shadow: 0 0 15px 5px rgba(126, 236, 247, .3); }
.photo-vignette { position: absolute; z-index: 2; inset: 0; box-shadow: inset 0 0 48px rgba(0, 10, 15, .6); pointer-events: none; }
.scan-corner { position: absolute; z-index: 4; width: 20px; height: 20px; border-color: #aaf4fd; opacity: 0; animation: scanCornerLock 9.6s ease-out infinite; }
.corner-a { left: 9%; top: 20%; border-left: 2px solid; border-top: 2px solid; }.corner-b { right: 9%; top: 20%; border-right: 2px solid; border-top: 2px solid; }.corner-c { left: 9%; bottom: 13%; border-left: 2px solid; border-bottom: 2px solid; }.corner-d { right: 9%; bottom: 13%; border-right: 2px solid; border-bottom: 2px solid; }
.scan-subject-box { position: absolute; z-index: 5; left: 17%; top: 29%; display: grid; gap: 2px; padding: 5px 7px; border-left: 1px solid rgba(183, 249, 255, .78); background: rgba(3, 17, 23, .76); color: #d8fbff; opacity: 0; transform: translateY(6px); animation: subjectTagReveal 9.6s ease-out infinite; }
.scan-subject-box b { font-size: 14px; }.scan-subject-box small { color: rgba(203, 244, 249, .74); font-size: 14px; }
.scan-pixel-field { position: absolute; z-index: 4; inset: 0; pointer-events: none; }
.scan-pixel-field i { position: absolute; width: 4px; aspect-ratio: 1; border-radius: 50%; background: #d8fbff; box-shadow: 0 0 9px #75e7f6; opacity: 0; animation: scanParticleExtract 9.6s cubic-bezier(.22, .61, .36, 1) infinite; }
.scan-pixel-field i:nth-child(1) { left: 18%; top: 28%; --pixel-x: 43px; --pixel-y: -15px; animation-delay: -1.8s; }.scan-pixel-field i:nth-child(2) { left: 34%; top: 62%; --pixel-x: 50px; --pixel-y: -33px; animation-delay: -2.05s; }.scan-pixel-field i:nth-child(3) { left: 48%; top: 43%; --pixel-x: 49px; --pixel-y: -11px; animation-delay: -2.3s; }.scan-pixel-field i:nth-child(4) { left: 67%; top: 69%; --pixel-x: 40px; --pixel-y: -39px; animation-delay: -2.55s; }.scan-pixel-field i:nth-child(5) { left: 76%; top: 31%; --pixel-x: 28px; --pixel-y: 10px; animation-delay: -2.8s; }.scan-pixel-field i:nth-child(6) { left: 25%; top: 79%; --pixel-x: 61px; --pixel-y: -49px; animation-delay: -3.05s; }.scan-pixel-field i:nth-child(7) { left: 57%; top: 24%; --pixel-x: 35px; --pixel-y: 20px; animation-delay: -3.3s; }.scan-pixel-field i:nth-child(8) { left: 40%; top: 51%; --pixel-x: 56px; --pixel-y: 27px; animation-delay: -3.55s; }.scan-pixel-field i:nth-child(9) { left: 12%; top: 52%; --pixel-x: 72px; --pixel-y: -13px; animation-delay: -3.8s; }.scan-pixel-field i:nth-child(10) { left: 61%; top: 80%; --pixel-x: 35px; --pixel-y: -55px; animation-delay: -4.05s; }.scan-pixel-field i:nth-child(11) { left: 82%; top: 56%; --pixel-x: 19px; --pixel-y: -19px; animation-delay: -4.3s; }.scan-pixel-field i:nth-child(12) { left: 39%; top: 20%; --pixel-x: 48px; --pixel-y: 17px; animation-delay: -4.55s; }
.scan-extraction-route { position: absolute; z-index: 4; inset: 0; pointer-events: none; overflow: hidden; }
.scan-extraction-route i { position: absolute; left: 64%; width: 32%; height: 1px; background: linear-gradient(90deg, rgba(173, 245, 255, .08), rgba(204, 251, 255, .82), transparent); opacity: 0; transform-origin: left center; animation: extractionRoute 9.6s ease-out infinite; }
.scan-extraction-route i:nth-child(1) { top: 31%; --route-angle: -15deg; animation-delay: -2.3s; }.scan-extraction-route i:nth-child(2) { top: 52%; --route-angle: 4deg; animation-delay: -2.7s; }.scan-extraction-route i:nth-child(3) { top: 72%; --route-angle: 17deg; animation-delay: -3.1s; }
.scan-readout { position: absolute; z-index: 6; left: 10px; right: 10px; bottom: 8px; min-height: 24px; display: flex; align-items: center; gap: 7px; padding: 4px 7px; color: rgba(221, 248, 251, .88); font-size: 14px; line-height: 1.25; background: rgba(3, 17, 23, .76); border-top: 1px solid rgba(127, 229, 240, .28); opacity: 0; animation: readoutReveal 9.6s ease-in-out infinite; }
.scan-readout i { width: 19px; height: 1px; background: #87eaf5; box-shadow: 0 0 10px #75e7f6; }
.video-image-stage > span,
.video-motion-stage > span,
.video-depth-stage > span,
.video-render-stage > span { position: absolute; z-index: 3; left: 13px; top: 12px; color: rgba(212, 245, 249, .84); }
.video-motion-stage { grid-column: 2; grid-row: 1; display: grid; place-items: center; min-height: 114px; }
.video-motion-stage::before { content: ""; width: 46px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 34% 32%, #f9c77e, #d25945 32%, #17343e 68%); animation: motionImage 9.6s ease-in-out infinite; }
.motion-vector { position: absolute; left: 44%; width: 36%; height: 1px; background: linear-gradient(90deg, rgba(161, 241, 250, .1), #a9f4ff, transparent); transform-origin: left center; animation: motionVector 9.6s ease-in-out infinite; }
.vector-a { top: 48%; --vector-angle: -22deg; }.vector-b { top: 60%; --vector-angle: 8deg; animation-delay: -.35s; }.vector-c { top: 72%; --vector-angle: 28deg; animation-delay: -.7s; }
.video-depth-stage { grid-column: 2; grid-row: 2; min-height: 170px; display: grid; place-items: center; perspective: 500px; }
.video-depth-stage i { position: absolute; width: 64%; aspect-ratio: 16 / 9; border: 1px solid rgba(141, 232, 245, .42); background: linear-gradient(130deg, rgba(120, 221, 236, .16), transparent); transform: translateZ(var(--depth-z)) rotateY(-15deg) rotateX(8deg); animation: depthExpand 9.6s cubic-bezier(.22, .61, .36, 1) infinite; }
.video-depth-stage i:nth-of-type(1) { --depth-z: 0px; animation-delay: -.1s; }.video-depth-stage i:nth-of-type(2) { --depth-z: 46px; animation-delay: -.55s; }.video-depth-stage i:nth-of-type(3) { --depth-z: 92px; animation-delay: -1s; }
.video-render-stage { position: absolute; right: 9px; bottom: 10px; width: 36%; min-height: 104px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(72, 68, 165, .58), rgba(7, 31, 37, .9)); }
.video-render-stage::before { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(184, 246, 252, .38); animation: renderFrame 9.6s ease-in-out infinite; }
.video-render-stage b { position: relative; z-index: 1; width: 34px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(236, 253, 255, .62); border-radius: 50%; color: #fff; font-size: 14px; animation: renderReady 9.6s ease-in-out infinite; }
.video-render-stage i { position: absolute; bottom: 14px; width: 44%; height: 2px; background: #a4f2fb; animation: renderProgress 9.6s ease-in-out infinite; }

.future-human-scene .human-image-wrap { transform: none; animation: none; }
.future-human-scene img { transform: none; animation: none; }
.human-actor { position: absolute; z-index: 2; inset: 0; pointer-events: none; background-image: url("assets/future-digital-human-centered.webp"); background-position: center; background-size: cover; background-repeat: no-repeat; will-change: transform, opacity, filter; mix-blend-mode: normal; }
.human-actor-body { clip-path: ellipse(22% 35% at 51% 63%); -webkit-mask-image: radial-gradient(ellipse 24% 38% at 51% 63%, #000 58%, transparent 100%); mask-image: radial-gradient(ellipse 24% 38% at 51% 63%, #000 58%, transparent 100%); transform-origin: 51% 67%; animation: actorBreathShift 5.2s cubic-bezier(.22, .61, .36, 1) infinite; opacity: .72; }
.human-actor-head { clip-path: ellipse(12% 15% at 51% 27%); -webkit-mask-image: radial-gradient(ellipse 13% 17% at 51% 27%, #000 56%, transparent 100%); mask-image: radial-gradient(ellipse 13% 17% at 51% 27%, #000 56%, transparent 100%); transform-origin: 51% 31%; animation: actorHeadTurn 6.4s cubic-bezier(.22, .61, .36, 1) infinite; opacity: .82; }
.human-actor-face { clip-path: ellipse(7% 7.8% at 51% 27.8%); -webkit-mask-image: radial-gradient(ellipse 8% 9% at 51% 27.8%, #000 48%, transparent 100%); mask-image: radial-gradient(ellipse 8% 9% at 51% 27.8%, #000 48%, transparent 100%); transform-origin: 51% 30%; animation: actorFaceTalk 1.25s steps(5, end) infinite; opacity: .9; filter: saturate(1.15) contrast(1.04); }
.human-actor-arm { clip-path: ellipse(15% 24% at 40% 57%); -webkit-mask-image: radial-gradient(ellipse 17% 26% at 40% 57%, #000 52%, transparent 100%); mask-image: radial-gradient(ellipse 17% 26% at 40% 57%, #000 52%, transparent 100%); transform-origin: 44% 62%; animation: actorArmGesture 6.4s cubic-bezier(.22, .61, .36, 1) infinite; opacity: .78; }
.human-actor-hand { clip-path: ellipse(13% 16% at 36% 53%); -webkit-mask-image: radial-gradient(ellipse 14% 18% at 36% 53%, #000 52%, transparent 100%); mask-image: radial-gradient(ellipse 14% 18% at 36% 53%, #000 52%, transparent 100%); transform-origin: 41% 62%; animation: actorHandGesture 6.4s cubic-bezier(.22, .61, .36, 1) infinite; opacity: .92; }
.human-performance-layer { position: absolute; z-index: 4; inset: 0; pointer-events: none; }
.human-eye-blink { position: absolute; z-index: 2; top: 24.9%; width: 4.4%; height: .85%; border-radius: 50%; background: rgba(17, 13, 20, .9); transform-origin: center; animation: humanBlink 5.9s ease-in-out infinite; }
.eye-left { left: 47.25%; }.eye-right { left: 52.1%; animation-delay: -.03s; }
.human-mouth-sync { position: absolute; z-index: 2; left: 49.55%; top: 30.55%; width: 3.5%; height: .55%; border-radius: 50%; background: rgba(61, 19, 28, .65); mix-blend-mode: multiply; filter: blur(.18px); animation: humanMouthSync 1.2s steps(4, end) infinite; }
.human-head-axis { position: absolute; left: 50.8%; top: 23.1%; width: 1px; height: 15.5%; background: linear-gradient(180deg, transparent, rgba(139, 235, 246, .52), transparent); transform-origin: 50% 44%; animation: headAxis 7.2s ease-in-out infinite; opacity: .35; }
.human-breath-field { position: absolute; left: 40%; top: 35%; width: 22%; height: 33%; border: 1px solid rgba(125, 225, 242, .14); border-radius: 48% 52% 40% 45%; animation: humanBreathField 3.6s ease-in-out infinite; }
.human-hand-trace { position: absolute; left: 29.6%; top: 38%; width: 14.8%; height: 17%; border: 1px solid rgba(138, 236, 246, .46); border-right: 0; border-bottom: 0; border-radius: 50% 0 0 0; transform-origin: 100% 100%; animation: handGestureTrace 7.2s cubic-bezier(.22, .61, .36, 1) infinite; }
.human-caption { gap: 7px; }
.human-speech-wave { height: 18px; display: flex; align-items: center; gap: 4px; }
.human-speech-wave i { width: 3px; height: 25%; border-radius: 99px; background: #98eef8; transform-origin: center; animation: speechWave 1.2s steps(4, end) infinite; }
.human-speech-wave i:nth-child(2n) { animation-delay: -.2s; }.human-speech-wave i:nth-child(3n) { animation-delay: -.45s; }.human-speech-wave i:nth-child(4n) { animation-delay: -.7s; }

@keyframes sourceEnter { 0%, 12% { opacity: 0; transform: translateX(-42px) translateY(var(--tile-y)) rotate(var(--tile-r)) scale(.82); } 26%, 74% { opacity: .92; transform: translateX(0) translateY(var(--tile-y)) rotate(var(--tile-r)) scale(1); } 88%, 100% { opacity: 0; transform: translateX(58px) translateY(10px) rotate(12deg) scale(.72); } }
@keyframes workflowPacket { 0%, 12% { transform: translateX(-22%); opacity: 0; } 18%, 82% { opacity: 1; } 92%, 100% { transform: translateX(420%); opacity: 0; } }
@keyframes workflowFocus { 0%, 13%, 100% { color: rgba(210, 242, 247, .58); transform: translateY(0); } 18%, 28% { color: #effeff; transform: translateY(-4px); } 23% { filter: drop-shadow(0 0 12px rgba(130, 237, 249, .72)); } }
@keyframes stepRing { 0%, 14%, 100% { transform: scale(.62); opacity: 0; } 18% { opacity: .9; } 33% { transform: scale(1.65); opacity: 0; } }
@keyframes outputReveal { 0%, 70% { transform: translateX(-140%); opacity: 0; } 79% { opacity: 1; } 91%, 100% { transform: translateX(150%); opacity: 0; } }
@keyframes outputPlay { 0%, 72% { opacity: 0; transform: translate(-50%, -50%) scale(.72); } 80%, 95% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 100% { opacity: .5; transform: translate(-50%, -50%) scale(.82); } }
@keyframes outputClip { 0%, 48% { transform: scaleX(.05); transform-origin: left; opacity: .18; } 72%, 100% { transform: scaleX(1); opacity: .84; } }
@keyframes outputPlayhead { 0%, 73% { left: 0; opacity: 0; } 77% { opacity: 1; } 96%, 100% { left: 100%; opacity: 0; } }
@keyframes promptCursor { 0%, 16% { width: 0; } 28%, 80% { width: 86%; } 100% { width: 0; } }
@keyframes videoRailPacket { 0%, 38% { opacity: 0; transform: translateX(-24px) scale(.4); } 50%, 72% { opacity: 1; transform: translateX(0) scale(1); } 86%, 100% { opacity: 0; transform: translateX(24px) scale(.4); } }
@keyframes sourcePhotoReveal { 0%, 12% { opacity: .18; filter: saturate(.25) blur(7px); transform: scale(1.07); } 23%, 68% { opacity: 1; filter: saturate(.88) blur(0); transform: scale(1); } 84%, 100% { opacity: .7; filter: saturate(.56) blur(1px); transform: scale(1.025); } }
@keyframes scanApertureSweep { 0%, 15% { opacity: 0; transform: translateX(0) skewX(-11deg); } 21% { opacity: .95; } 55% { opacity: .95; transform: translateX(var(--scan-travel)) skewX(-11deg); } 64%, 100% { opacity: 0; transform: translateX(calc(var(--scan-travel) + 30px)) skewX(-11deg); } }
@keyframes scanTraceSweep { 0%, 17% { opacity: 0; transform: translateX(0); } 22%, 53% { opacity: 1; transform: translateX(calc(var(--scan-travel) - 10px)); } 61%, 100% { opacity: 0; transform: translateX(var(--scan-travel)); } }
@keyframes scanCornerLock { 0%, 18% { opacity: 0; transform: scale(.78); } 27%, 57% { opacity: 1; transform: scale(1); } 74%, 100% { opacity: 0; transform: scale(1.06); } }
@keyframes subjectTagReveal { 0%, 29% { opacity: 0; transform: translateY(6px); } 37%, 63% { opacity: 1; transform: translateY(0); } 77%, 100% { opacity: 0; transform: translateY(-4px); } }
@keyframes scanParticleExtract { 0%, 27% { opacity: 0; transform: translate3d(0, 0, 0) scale(.25); } 36% { opacity: .9; } 58% { opacity: .95; transform: translate3d(var(--pixel-x), var(--pixel-y), 0) scale(1); } 73%, 100% { opacity: 0; transform: translate3d(calc(var(--pixel-x) * 1.42), calc(var(--pixel-y) * 1.42), 0) scale(.35); } }
@keyframes extractionRoute { 0%, 35% { opacity: 0; transform: scaleX(.08) rotate(var(--route-angle, 0deg)); } 46%, 62% { opacity: .78; transform: scaleX(1) rotate(var(--route-angle, 0deg)); } 76%, 100% { opacity: 0; transform: translateX(18px) scaleX(.6) rotate(var(--route-angle, 0deg)); } }
@keyframes readoutReveal { 0%, 55% { opacity: 0; transform: translateY(4px); } 64%, 86% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-3px); } }
@keyframes motionImage { 0%, 45% { transform: translateX(-12px) scale(.76); opacity: .44; } 56%, 80% { transform: translateX(10px) scale(1); opacity: 1; } 100% { transform: translateX(20px) scale(.82); opacity: .5; } }
@keyframes motionVector { 0%, 44% { opacity: 0; transform: rotate(var(--vector-angle)) scaleX(.2); } 57%, 78% { opacity: .9; transform: rotate(var(--vector-angle)) scaleX(1); } 100% { opacity: 0; transform: rotate(var(--vector-angle)) translateX(28px) scaleX(.7); } }
@keyframes depthExpand { 0%, 57% { opacity: .24; transform: translateZ(var(--depth-z)) rotateY(-15deg) rotateX(8deg) scale(.62); } 70%, 86% { opacity: .78; transform: translateZ(var(--depth-z)) rotateY(-15deg) rotateX(8deg) scale(1); } 100% { opacity: .28; transform: translateZ(var(--depth-z)) rotateY(-15deg) rotateX(8deg) translateX(34px) scale(1.08); } }
@keyframes renderFrame { 0%, 72% { transform: scale(.84); opacity: .24; } 82%, 96% { transform: scale(1); opacity: 1; } 100% { opacity: .56; } }
@keyframes renderReady { 0%, 78% { transform: scale(.66); opacity: .3; } 86%, 100% { transform: scale(1); opacity: 1; } }
@keyframes renderProgress { 0%, 78% { transform: scaleX(0); transform-origin: left; } 94%, 100% { transform: scaleX(1); transform-origin: left; } }
@keyframes actorBreathShift { 0%, 100% { transform: translate3d(-.25%, .35%, 0) scale(1); filter: brightness(.98); } 32% { transform: translate3d(.28%, -.55%, 0) scale(1.022); filter: brightness(1.05); } 56% { transform: translate3d(.52%, -.18%, 0) scale(1.012); filter: brightness(1.02); } 78% { transform: translate3d(-.18%, .2%, 0) scale(1.006); filter: brightness(.99); } }
@keyframes actorHeadTurn { 0%, 100% { transform: translate3d(-1.1%, .35%, 0) rotate(-1.45deg) scale(1.012); } 27% { transform: translate3d(1.3%, -.35%, 0) rotate(1.65deg) scale(1.024); } 52% { transform: translate3d(.55%, -.14%, 0) rotate(.65deg) scale(1.017); } 76% { transform: translate3d(-.6%, .22%, 0) rotate(-.7deg) scale(1.01); } }
@keyframes actorFaceTalk { 0%, 100% { transform: translate3d(-.35%, 0, 0) scale(.98, .92); } 18% { transform: translate3d(.25%, .08%, 0) scale(1.06, 1.28); } 36% { transform: translate3d(.4%, 0, 0) scale(1.02, .78); } 55% { transform: translate3d(-.2%, .1%, 0) scale(1.1, 1.18); } 74% { transform: translate3d(-.42%, 0, 0) scale(.94, .84); } }
@keyframes actorArmGesture { 0%, 18%, 100% { transform: translate3d(0, 0, 0) rotate(-.4deg) scale(1); } 35% { transform: translate3d(1.8%, -2.6%, 0) rotate(2.4deg) scale(1.035); } 52% { transform: translate3d(3.2%, -4.4%, 0) rotate(4.2deg) scale(1.05); } 69% { transform: translate3d(1.4%, -2%, 0) rotate(2deg) scale(1.028); } 84% { transform: translate3d(-.5%, -.45%, 0) rotate(-.8deg) scale(1.008); } }
@keyframes actorHandGesture { 0%, 18%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg) scale(1); } 35% { transform: translate3d(3.8%, -4.6%, 0) rotate(4deg) scale(1.04); } 52% { transform: translate3d(6.6%, -7.8%, 0) rotate(7deg) scale(1.08); } 69% { transform: translate3d(3.1%, -3.8%, 0) rotate(3deg) scale(1.035); } 84% { transform: translate3d(-.8%, -.8%, 0) rotate(-1deg) scale(1.01); } }
@keyframes humanBlink { 0%, 42%, 45%, 78%, 81%, 100% { transform: scaleY(.08); opacity: 0; } 43%, 79% { transform: scaleY(1); opacity: .52; } }
@keyframes humanMouthSync { 0%, 100% { transform: scaleX(.72) scaleY(.65); opacity: .15; } 25% { transform: scaleX(1.02) scaleY(1.55); opacity: .64; } 50% { transform: scaleX(.85) scaleY(.82); opacity: .34; } 75% { transform: scaleX(1.15) scaleY(1.34); opacity: .56; } }
@keyframes headAxis { 0%, 100% { transform: rotate(-4deg); opacity: .24; } 45% { transform: rotate(4deg); opacity: .58; } 72% { transform: rotate(1deg); opacity: .4; } }
@keyframes humanBreathField { 0%, 100% { transform: scale(.94); opacity: .12; } 50% { transform: scale(1.05); opacity: .4; } }
@keyframes handGestureTrace { 0%, 22% { opacity: 0; transform: rotate(-18deg) scale(.82); } 36%, 62% { opacity: .8; transform: rotate(6deg) scale(1); } 78%, 100% { opacity: 0; transform: rotate(17deg) scale(.78); } }
@keyframes speechWave { 0%, 100% { transform: scaleY(.35); opacity: .42; } 25% { transform: scaleY(1.5); opacity: 1; } 55% { transform: scaleY(.68); opacity: .64; } 78% { transform: scaleY(1.25); opacity: .92; } }

@media (max-width: 820px) {
  .future-edit-scene, .future-video-scene { padding: 15px; }
  .edit-workflow { grid-template-columns: 80px minmax(0, 1fr); gap: 9px; margin-bottom: 7px; }
  .edit-source-bank { min-height: 112px; transform: scale(.78); transform-origin: center; }
  .edit-process-lane { gap: 2px; }
  .edit-process-step { gap: 5px; }
  .edit-process-step b { width: 32px; font-size: 14px; }
  .edit-process-step span { max-width: 5em; line-height: 1.2; }
  .edit-process-lane::before { top: 16px; }
  .edit-process-lane::after { top: 15px; }
  .edit-process-step i { top: -1px; width: 28px; }
  .edit-output-frame { min-height: 73px; padding: 11px; }
  .edit-output-timeline { padding-top: 7px; }
  .edit-output-timeline > i { height: 14px; }
  .scene-state { margin-top: 7px; }
  .video-generation-stage { min-height: 230px; grid-template-rows: 74px 1fr; gap: 8px; }
  .video-prompt { padding: 10px; gap: 3px; }
  .video-prompt strong { font-size: 14px; line-height: 1.32; }
  .video-image-stage { min-height: 145px; padding: 28px 10px 12px; }
  .video-source-frame { --scan-travel: 190px; width: min(100%, 178px); }
  .scan-subject-box { left: 13%; top: 25%; padding: 3px 4px; }
  .scan-subject-box b, .scan-subject-box small, .scan-readout { font-size: 14px; }
  .video-render-stage { min-height: 68px; }
  .video-flow-rail { top: 58px; }
  .video-render-stage b { width: 26px; font-size: 14px; }
  .human-eye-blink { opacity: .76; }
  .human-head-axis, .human-breath-field { opacity: .5; }
}

/* Case-study AI motion: each effect describes consumption, service, or operating intelligence. */
.case-motion-enabled .particle-field { background: radial-gradient(circle at 76% 20%, rgba(122, 210, 218, .1), transparent 28%), radial-gradient(circle at 12% 78%, rgba(222, 130, 98, .08), transparent 30%); }
.banquet-motion .particle-field { background: radial-gradient(circle at 76% 20%, rgba(237, 146, 111, .13), transparent 28%), radial-gradient(circle at 13% 78%, rgba(94, 205, 206, .08), transparent 30%); }
.restaurant-motion .particle-field { background: radial-gradient(circle at 74% 18%, rgba(102, 216, 229, .15), transparent 30%), radial-gradient(circle at 14% 78%, rgba(111, 129, 242, .08), transparent 28%); }
.case-motion-enabled .product-header::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 239, 237, .52), transparent);
  animation: headerSignal 5.6s ease-in-out infinite;
}
.banquet-motion .product-header::after { background: linear-gradient(90deg, transparent, rgba(245, 165, 133, .62), transparent); }
.case-motion-enabled .story-slide::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 2%;
  top: 9%;
  width: min(46vw, 680px);
  height: min(42vw, 620px);
  border: 1px solid rgba(172, 230, 232, .08);
  border-radius: 46% 54% 61% 39% / 48% 44% 56% 52%;
  transform: translate3d(calc(var(--pointer-x, 0) * .45px), calc(var(--pointer-y, 0) * .45px), 0) rotate(-8deg);
  opacity: .7;
  pointer-events: none;
}
.banquet-motion .story-slide::after { border-color: rgba(242, 159, 126, .1); }
.case-motion-enabled .slide-copy,
.case-motion-enabled .slide-visual { z-index: 2; }
.case-motion-enabled .slide-visual {
  transform: perspective(1200px) rotateX(var(--case-tilt-y, 0deg)) rotateY(var(--case-tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform .46s var(--ease), box-shadow .46s var(--ease), filter .46s var(--ease);
}
.case-motion-enabled .story-slide.is-active .slide-visual { animation: none; }
.case-motion-enabled .slide-visual:hover { filter: brightness(1.025); }
.case-motion-enabled .slide-visual::before {
  z-index: 2;
  inset: 12px;
  border-color: rgba(203, 239, 240, .13);
  background: radial-gradient(circle at var(--case-light-x, 50%) var(--case-light-y, 50%), rgba(207, 247, 248, .09), transparent 32%);
  transition: background .36s var(--ease);
}
.banquet-motion .slide-visual::before { border-color: rgba(250, 193, 167, .14); background: radial-gradient(circle at var(--case-light-x, 50%) var(--case-light-y, 50%), rgba(255, 204, 180, .08), transparent 32%); }
.case-motion-enabled .slide-visual::after { z-index: 5; background: linear-gradient(115deg, transparent 30%, rgba(242, 255, 255, .14) 48%, transparent 65%); mix-blend-mode: screen; }

.case-core-overlay {
  position: absolute;
  z-index: 4;
  inset: 8% 11%;
  pointer-events: none;
  opacity: .72;
}
.case-core-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(255, 255, 255, .8) 0 4%, rgba(116, 221, 229, .42) 23%, rgba(21, 76, 83, .66) 57%, rgba(7, 20, 23, .1) 72%);
  box-shadow: 0 0 42px rgba(91, 210, 219, .22);
  animation: caseCoreBreathe 4.8s ease-in-out infinite;
}
.banquet-motion .case-core-heart { background: radial-gradient(circle at 36% 28%, rgba(255, 246, 238, .82) 0 4%, rgba(239, 151, 113, .42) 23%, rgba(100, 47, 35, .66) 57%, rgba(20, 11, 10, .1) 72%); box-shadow: 0 0 42px rgba(224, 121, 88, .2); }
.case-route {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(167, 232, 235, .58), transparent);
  opacity: .75;
}
.route-north { transform: rotate(-124deg); }
.route-east { transform: rotate(-20deg); }
.route-south { transform: rotate(55deg); }
.route-west { transform: rotate(158deg); }
.banquet-motion .case-route { background: linear-gradient(90deg, rgba(247, 178, 147, .62), transparent); }
.case-core-node {
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(224, 252, 253, .96);
  box-shadow: 0 0 12px rgba(122, 228, 238, .65);
  animation: caseNodeSignal 3.8s ease-in-out infinite;
}
.case-core-node.node-north { left: 28%; top: 10%; }
.case-core-node.node-east { right: 9%; top: 34%; animation-delay: -.8s; }
.case-core-node.node-south { right: 27%; bottom: 10%; animation-delay: -1.6s; }
.case-core-node.node-west { left: 9%; bottom: 30%; animation-delay: -2.4s; }
.banquet-motion .case-core-node { background: rgba(255, 238, 226, .96); box-shadow: 0 0 12px rgba(244, 157, 124, .58); }

.case-flow-overlay,
.case-vision-overlay,
.case-reconstruction-overlay,
.case-agent-overlay,
.case-loop-overlay {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.flow-line {
  position: absolute;
  left: -13%;
  width: 126%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0 8%, rgba(135, 222, 232, .1) 22%, rgba(210, 253, 255, .58) 49%, rgba(135, 222, 232, .1) 76%, transparent 92%);
  transform-origin: center;
  animation: dataRoute 6.8s ease-in-out infinite;
}
.banquet-motion .flow-line { background: linear-gradient(90deg, transparent 0 8%, rgba(238, 143, 108, .1) 22%, rgba(255, 227, 211, .58) 49%, rgba(238, 143, 108, .1) 76%, transparent 92%); }
.line-one { --flow-angle: -11deg; top: 28%; }
.line-two { --flow-angle: 7deg; top: 54%; animation-delay: -2.1s; }
.line-three { --flow-angle: -6deg; top: 72%; animation-delay: -4.3s; }
.flow-packet {
  position: absolute;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #effdff;
  box-shadow: 0 0 11px rgba(143, 231, 240, .75);
  animation: dataPacket 4.5s linear infinite;
}
.packet-one { left: 10%; top: 28%; }
.packet-two { left: 22%; top: 54%; animation-delay: -1.45s; }
.packet-three { left: 36%; top: 72%; animation-delay: -2.9s; }
.banquet-motion .flow-packet { background: #fff2e9; box-shadow: 0 0 11px rgba(244, 156, 122, .7); }
.merchant-flow-overlay { background: radial-gradient(circle at 66% 44%, rgba(249, 160, 126, .08), transparent 24%); }
.region-flow-overlay { background: radial-gradient(circle at 32% 58%, rgba(221, 240, 238, .07), transparent 25%); }
.settlement-flow-overlay { background: radial-gradient(circle at 76% 28%, rgba(250, 177, 147, .08), transparent 20%); }

.case-loop-overlay { opacity: .82; }
.loop-signal {
  position: absolute;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff0e6;
  box-shadow: 0 0 14px rgba(242, 154, 119, .8);
  animation: retentionSignal 7.8s linear infinite;
}
.signal-one { left: 20%; top: 36%; }
.signal-two { right: 17%; top: 28%; animation-delay: -2.6s; }
.signal-three { right: 24%; bottom: 20%; animation-delay: -5.2s; }
.loop-pulse { position: absolute; left: 50%; top: 50%; width: 20%; aspect-ratio: 1; border: 1px solid rgba(245, 171, 139, .36); border-radius: 50%; transform: translate(-50%, -50%); animation: loopPulse 4.6s ease-out infinite; }

.case-vision-overlay { opacity: .72; }
.vision-scan,
.reconstruction-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(144, 230, 240, .2) 50%, transparent 58%);
  transform: translateY(-110%);
  animation: visualScan 5.3s linear infinite;
}
.vision-point {
  position: absolute;
  width: 11px;
  aspect-ratio: 1;
  border: 1px solid rgba(219, 253, 255, .82);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(114, 226, 239, .38);
  animation: caseNodeSignal 3.4s ease-in-out infinite;
}
.point-one { left: 18%; top: 23%; }
.point-two { left: 42%; top: 38%; animation-delay: -.9s; }
.point-three { right: 23%; top: 32%; animation-delay: -1.8s; }
.point-four { right: 15%; bottom: 24%; animation-delay: -2.7s; }
.queue-flow-overlay { background: radial-gradient(circle at 58% 44%, rgba(110, 221, 234, .1), transparent 26%); }
.insight-flow-overlay { background: radial-gradient(circle at 64% 40%, rgba(123, 131, 246, .09), transparent 28%); }

.case-reconstruction-overlay { opacity: .72; background: radial-gradient(circle at 50% 50%, rgba(110, 225, 237, .1), transparent 36%); }
.reconstruction-cluster {
  position: absolute;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(218, 253, 255, .96);
  box-shadow: 0 0 12px rgba(113, 230, 241, .7);
  animation: reconstructionParticle 4.8s ease-in-out infinite;
}
.cluster-one { left: 18%; top: 24%; }
.cluster-two { left: 36%; top: 38%; animation-delay: -.7s; }
.cluster-three { left: 56%; top: 28%; animation-delay: -1.4s; }
.cluster-four { right: 22%; top: 46%; animation-delay: -2.1s; }
.cluster-five { left: 28%; bottom: 22%; animation-delay: -2.8s; }
.cluster-six { right: 30%; bottom: 18%; animation-delay: -3.5s; }

.case-agent-overlay { opacity: .74; }
.agent-stream {
  position: absolute;
  left: -8%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, transparent 12%, rgba(148, 233, 244, .1) 30%, rgba(218, 254, 255, .72) 50%, rgba(148, 233, 244, .1) 70%, transparent 88%);
  animation: dataRoute 6.4s ease-in-out infinite;
}
.stream-one { --flow-angle: 12deg; top: 34%; }
.stream-two { --flow-angle: -8deg; top: 62%; animation-delay: -3.2s; }
.agent-packet { position: absolute; width: 7px; aspect-ratio: 1; border-radius: 50%; background: #edfeff; box-shadow: 0 0 13px rgba(123, 229, 240, .68); animation: dataPacket 4.2s linear infinite; }
.agent-one { top: 34%; left: 18%; }
.agent-two { top: 62%; left: 42%; animation-delay: -2.1s; }

.case-motion-enabled[data-active-slide="1"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="2"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="3"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="4"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="5"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="6"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="7"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="8"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }
.case-motion-enabled[data-active-slide="9"] .story-slide[data-case-scene]::after { animation: spaceArrival .9s var(--ease) both; }

@keyframes caseCoreBreathe { 0%, 100% { transform: translate(-50%, -50%) scale(.94); filter: brightness(.92); } 50% { transform: translate(-50%, -50%) scale(1.07); filter: brightness(1.14); } }
@keyframes caseNodeSignal { 0%, 100% { opacity: .35; transform: scale(.72); } 50% { opacity: 1; transform: scale(1.18); } }
@keyframes dataRoute { 0%, 28% { opacity: .1; transform: translateX(-8%) rotate(var(--flow-angle, 0deg)); } 50% { opacity: .92; } 100% { opacity: .1; transform: translateX(8%) rotate(var(--flow-angle, 0deg)); } }
@keyframes dataPacket { from { transform: translateX(-6vw); opacity: 0; } 15%, 82% { opacity: 1; } to { transform: translateX(54vw); opacity: 0; } }
@keyframes retentionSignal { from { transform: rotate(0deg) translateX(128px) rotate(0deg); } to { transform: rotate(360deg) translateX(128px) rotate(-360deg); } }
@keyframes loopPulse { 0% { transform: translate(-50%, -50%) scale(.55); opacity: 0; } 35% { opacity: .8; } 100% { transform: translate(-50%, -50%) scale(2.1); opacity: 0; } }
@keyframes reconstructionParticle { 0%, 100% { transform: translate3d(0, 0, 0) scale(.6); opacity: .22; } 50% { transform: translate3d(20px, -14px, 0) scale(1.35); opacity: 1; } }
@keyframes spaceArrival { from { opacity: 0; transform: translate3d(12%, 0, 0) rotate(-14deg) scale(.92); } to { opacity: .7; transform: translate3d(calc(var(--pointer-x, 0) * .45px), calc(var(--pointer-y, 0) * .45px), 0) rotate(-8deg) scale(1); } }

@media (max-width: 820px) {
  .case-motion-enabled .story-slide::after { width: 74vw; height: 72vw; right: -20vw; top: 21%; opacity: .46; }
  .case-motion-enabled .slide-visual { transform: none; }
  .case-core-overlay { inset: 10% 8%; opacity: .46; }
  .case-core-heart { width: 62px; }
  .case-core-node { width: 7px; }
  .case-flow-overlay,
  .case-vision-overlay,
  .case-reconstruction-overlay,
  .case-agent-overlay { opacity: .46; }
}

@media (prefers-reduced-motion: reduce) {
  .case-motion-enabled .product-header::after,
  .case-motion-enabled .story-slide::after,
  .case-core-heart,
  .case-core-node,
  .flow-line,
  .flow-packet,
  .loop-signal,
  .loop-pulse,
  .vision-scan,
  .vision-point,
  .reconstruction-scan,
  .reconstruction-cluster,
  .agent-stream,
  .agent-packet { animation: none !important; }
  .case-motion-enabled .slide-visual { transform: none !important; }
}
