:root {
  --ink: #171410;
  --paper: #f5f1eb;
  --paper-2: #ebe4da;
  --orange: #ff4d1f;
  --orange-dark: #dd3410;
  --muted: #6d665e;
  --line: rgba(23, 20, 16, 0.12);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1440px, calc(100% - 48px));
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
body[data-variant="highend"] { background: #eee9df; color: #211d18; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-150%);
  background: #fff;
  color: #111;
  padding: 12px 18px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 12px 0;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.site-header-scrolled {
  padding: 8px 0;
  background: rgba(245, 241, 235, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
body[data-variant="highend"] .site-header-scrolled { background: rgba(238, 233, 223, .86); }

.nav-shell {
  width: var(--page);
  min-height: 52px;
  margin: 0 auto;
  padding: 1px 8px 1px 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 35px rgba(38,28,18,.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
body[data-variant="highend"] .nav-shell { background: rgba(247,244,237,.74); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.045em;
}
.brand-name strong { color: var(--orange); font-weight: 800; }
.brand > img { width: 38px; height: 38px; border-radius: 10px; }
.brand-mascot {
  width: 70px;
  height: 70px;
  position: relative;
  flex: 0 0 auto;
  display: block;
  transition: transform .55s cubic-bezier(.32, .72, 0, 1);
}
.brand:hover .brand-mascot { transform: translateY(-1px) scale(1.055); }
.brand-mascot-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}
.brand-mascot-closed { animation: mascot-frame-closed 1.65s steps(1, end) infinite; }
.brand-mascot-open { opacity: 0; animation: mascot-frame-open 1.65s steps(1, end) infinite; }
@keyframes mascot-frame-closed {
  0%, 58%, 83%, 100% { opacity: 1; }
  59%, 82% { opacity: 0; }
}
@keyframes mascot-frame-open {
  0%, 58%, 83%, 100% { opacity: 0; }
  59%, 82% { opacity: 1; }
}
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.platform-dock {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
}
.platform-orb, .language-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.platform-orb:hover, .platform-orb:focus-visible, .language-button:hover, .language-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(17,17,17,.13);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.store-link-disabled {
  cursor: default !important;
  pointer-events: none;
  opacity: .48;
  filter: grayscale(.35) saturate(.65);
}
.platform-orb img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.platform-orb svg, .platform-card-web svg, .language-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.language-button { background: rgba(255,255,255,.24); border: 1px solid var(--line); }
.language-button span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
}
.language-picker { position: relative; display: flex; }
.language-menu {
  width: 232px;
  padding: 8px;
  position: absolute;
  z-index: 1100;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(74, 59, 45, .14);
  border-radius: 18px;
  background: rgba(250, 247, 241, .97);
  box-shadow: 0 22px 60px rgba(48, 35, 24, .18);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.language-menu[hidden] { display: none; }
.language-menu a {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #3d352d;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}
.language-menu a:hover,
.language-menu a:focus-visible {
  background: rgba(159, 63, 45, .09);
  outline: none;
}
.language-menu a[aria-checked="true"] { background: #2b2520; color: #f7f2e9; }
.language-menu span { font-size: 13px; font-weight: 700; }
.language-menu small { color: #8a7f73; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.language-menu a[aria-checked="true"] small { color: #d7cec3; }

.web-app-cta {
  min-height: 50px;
  padding: 4px 5px 4px 21px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .94);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.9),
    0 9px 25px rgba(67, 45, 28, .10),
    0 0 0 1px rgba(92, 63, 42, .06);
  transition:
    transform .6s cubic-bezier(.32, .72, 0, 1),
    box-shadow .6s cubic-bezier(.32, .72, 0, 1);
}
.web-app-cta::after {
  content: "";
  width: 42%;
  position: absolute;
  z-index: 0;
  inset: -35% auto -35% -55%;
  background: linear-gradient(90deg, transparent, rgba(255, 94, 51, .20), rgba(255,255,255,.88), transparent);
  transform: translateX(0) skewX(-18deg);
  animation: web-app-cta-shimmer 4s cubic-bezier(.32, .72, 0, 1) infinite;
  pointer-events: none;
}
.web-app-cta-label {
  position: relative;
  z-index: 1;
  color: #29231e;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -.025em;
  text-transform: uppercase;
  white-space: nowrap;
}
.web-app-cta-icon {
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: #f4e8d9;
  box-shadow: inset 0 1px 4px rgba(51,38,27,.10), 0 4px 12px rgba(51,38,27,.12);
  transition: transform .6s cubic-bezier(.32, .72, 0, 1);
}
.web-app-cta-icon img { width: 100%; height: 100%; object-fit: cover; }
.web-app-cta:hover,
.web-app-cta:focus-visible {
  transform: translateY(-2px) scale(1.018);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.95),
    0 14px 32px rgba(67,45,28,.16),
    0 0 0 2px rgba(255,77,31,.16);
  outline: none;
}
.web-app-cta:hover .web-app-cta-icon,
.web-app-cta:focus-visible .web-app-cta-icon { transform: rotate(8deg) scale(1.045); }
.web-app-cta:active { transform: translateY(0) scale(.98); }
@keyframes web-app-cta-shimmer {
  0%, 58% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  62% { opacity: 1; }
  80%, 100% { transform: translateX(520%) skewX(-18deg); opacity: 0; }
}

.variant { min-height: 100vh; }
.eyebrow, .section-kicker, .high-kicker {
  margin-bottom: 18px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button-primary { background: var(--ink); color: #fff; box-shadow: 0 10px 25px rgba(20,18,15,.16); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.35); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section-heading { max-width: 720px; }
.section-heading h2, .high-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}
.section-heading > p:last-child, .high-intro > p:last-child { color: var(--muted); font-size: 18px; max-width: 620px; }

/* High end */
.variant-highend { background: #eee9df; }
.high-hero { width: var(--page); margin: 0 auto; padding: 112px 0 48px; position: relative; }
.high-hero-copy { text-align: center; position: relative; z-index: 2; }
.high-kicker { color: #786e62; }
.high-hero h1 { margin-bottom: 28px; font-family: var(--serif); font-size: clamp(82px, 11vw, 168px); font-weight: 400; line-height: .76; letter-spacing: -.05em; }
.high-hero h1 em { color: #9f3f2d; font-weight: 400; }
.high-lede { max-width: 610px; margin: 0 auto 30px; color: #746b61; font-size: 18px; }
.typewriter-line { position: relative; display: inline-block; white-space: nowrap; }
.typewriter-track { position: relative; }
.js .typewriter-char.is-pending { visibility: hidden; }
.js .typewriter-char.is-current { position: relative; }
.js .typewriter-char.is-current::after,
.js .typewriter-track.is-current-empty::before {
  content: "";
  width: .025em;
  height: .78em;
  position: absolute;
  left: 100%;
  bottom: .08em;
  background: currentColor;
  animation: typewriter-cursor-blink .72s step-end infinite;
}
.js .typewriter-track.is-current-empty::before { left: 0; }
.high-typewriter-lede { min-height: 54px; position: relative; }
.high-typewriter-lede > .typewriter-track { display: block; white-space: normal; }
.js [data-typewriter-body] .typewriter-char.is-current::after,
.js [data-typewriter-body].is-current-empty::before { width: 2px; height: 1.15em; bottom: -.18em; margin-left: 3px; }
@keyframes typewriter-cursor-blink { 0%, 46% { opacity: 1; } 47%, 100% { opacity: 0; } }
.high-actions { justify-content: center; }
.high-actions .button-primary { background: #2b2520; }
.high-overview { width: min(1320px, 96vw); margin: 38px auto 0; position: relative; scroll-margin-top: 82px; }
.high-overview-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 3172 / 1800;
}
.high-overview-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% 5% 2%;
  border-radius: 50%;
  background: rgba(152, 118, 84, .14);
  filter: blur(48px);
}
.high-overview-image {
  width: 100%;
  height: auto;
  transform: translateY(-9.274%);
}
.high-overview-caption {
  width: calc(100% - 3vw);
  margin: 14px auto 0;
  padding-top: 22px;
  display: grid;
  grid-template-columns: minmax(190px, .24fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 64px);
  border-top: 1px solid rgba(43, 37, 32, .22);
  text-align: left;
}
.high-overview-caption strong {
  color: #9f3f2d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.45;
  text-transform: uppercase;
}
.high-overview-caption p { margin: 0; color: #746b61; font-size: clamp(13px, 1.12vw, 17px); line-height: 1.55; }
.high-overview-caption p span { display: block; white-space: nowrap; }
.high-intro { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 42px 0 34px; text-align: center; }
.high-intro h2 { font-family: var(--serif); font-weight: 400; }
.high-intro > p:last-child { margin: 0 auto; }
.high-gallery { width: var(--page); margin: 0 auto; padding-bottom: 72px; display: grid; grid-template-columns: minmax(0, .97fr) minmax(0, 1.03fr); gap: 18px; }
.high-gallery article { min-height: 540px; padding: 32px; position: relative; isolation: isolate; background: #ded6c9; overflow: hidden; }
.high-gallery article:nth-child(2) { background: #2b2520; color: #f2ede4; }
.high-gallery article::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 56%;
  aspect-ratio: 1;
  right: -8%;
  bottom: -18%;
  border-radius: 50%;
  background: rgba(255, 249, 239, .34);
  filter: blur(52px);
  pointer-events: none;
}
.high-gallery article:nth-child(2)::before { background: rgba(162, 117, 82, .13); }
.high-gallery article > .high-card-copy { width: 100%; position: relative; z-index: 4; }
.high-gallery span { color: #9f3f2d; font-size: 11px; font-weight: 800; }
.high-gallery h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(38px, 3vw, 50px); font-weight: 400; line-height: .95; }
.high-card h3 { white-space: nowrap; }
.high-gallery p { max-width: 39ch; margin: 0; color: #746b61; line-height: 1.45; }
.high-gallery article:nth-child(2) p { color: #aaa094; }

@media (min-width: 761px) {
  body[data-language="zh"] .high-intro,
  body[data-language="zh-Hant"] .high-intro,
  body[data-language="ja"] .high-intro,
  body[data-language="ko"] .high-intro { width: min(1120px, calc(100% - 48px)); }
  body[data-language="zh"] .high-intro h2,
  body[data-language="zh-Hant"] .high-intro h2,
  body[data-language="ja"] .high-intro h2,
  body[data-language="ko"] .high-intro h2 {
    font-size: clamp(54px, 4.6vw, 70px);
    white-space: nowrap;
  }
  body[data-language="zh"] .high-gallery p,
  body[data-language="zh-Hant"] .high-gallery p,
  body[data-language="ja"] .high-gallery p,
  body[data-language="ko"] .high-gallery p {
    max-width: none;
    font-size: clamp(13px, .95vw, 15px);
    white-space: nowrap;
  }
  body[data-language="ja"] .high-hero h1,
  body[data-language="ko"] .high-hero h1 { font-size: clamp(68px, 8.7vw, 132px); }
  body[data-language="ja"] .high-hero h1 {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    letter-spacing: -.075em;
  }
  body[data-language="ja"] .high-hero h1 em { font-style: normal; }
  body[data-language="ja"] .high-gallery h3 { font-size: clamp(30px, 2.25vw, 40px); }
  body[data-language="ko"] .high-gallery h3 { font-size: clamp(34px, 2.65vw, 46px); }
  body[data-language="ja"] .high-overview-caption {
    grid-template-columns: minmax(270px, .3fr) minmax(0, 1fr);
  }
  body[data-language="ja"] .high-overview-caption strong,
  body[data-language="ja"] .high-intro > p:last-child {
    max-width: none;
    white-space: nowrap;
  }
  body[data-language="ja"] .high-typewriter-lede {
    max-width: none;
    white-space: nowrap;
  }
  body[data-language="ja"] .high-typewriter-lede > .typewriter-track {
    white-space: nowrap;
  }
  body[data-language="fr"] .high-intro,
  body[data-language="de"] .high-intro,
  body[data-language="es"] .high-intro,
  body[data-language="pt"] .high-intro,
  body[data-language="it"] .high-intro { width: min(1020px, calc(100% - 48px)); }
  body[data-language="fr"] .high-intro h2,
  body[data-language="de"] .high-intro h2,
  body[data-language="es"] .high-intro h2,
  body[data-language="pt"] .high-intro h2,
  body[data-language="it"] .high-intro h2 { font-size: clamp(50px, 4.6vw, 68px); }
  body[data-language="fr"] .high-gallery h3,
  body[data-language="de"] .high-gallery h3,
  body[data-language="es"] .high-gallery h3,
  body[data-language="pt"] .high-gallery h3,
  body[data-language="it"] .high-gallery h3 { font-size: clamp(31px, 2.35vw, 42px); }
  body[data-language="fr"] .high-overview-caption p span,
  body[data-language="de"] .high-overview-caption p span,
  body[data-language="es"] .high-overview-caption p span,
  body[data-language="pt"] .high-overview-caption p span,
  body[data-language="it"] .high-overview-caption p span { white-space: normal; }
  body[data-language="de"] .high-hero h1 { font-size: clamp(36px, 8.8vw, 138px); }
}
.high-device-scene { position: absolute; inset: 0; pointer-events: none; }
.high-scene-art {
  width: auto;
  max-width: none;
  height: 380px;
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 10px;
  filter:
    drop-shadow(0 28px 24px rgba(76, 57, 42, .18))
    drop-shadow(0 4px 3px rgba(76, 57, 42, .10));
}
.high-scene-art-float {
  right: 2%;
  filter:
    drop-shadow(0 30px 25px rgba(0, 0, 0, .32))
    drop-shadow(0 4px 3px rgba(0, 0, 0, .18));
}
.high-store-download {
  width: 100%;
  padding: 76px 24px 84px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 28%, rgba(78, 121, 191, .11), transparent 2px),
    radial-gradient(circle at 76% 62%, rgba(159, 63, 45, .16), transparent 2px),
    #0b1120;
}
.high-store-download-inner {
  width: min(660px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.store-download-link {
  width: min(280px, 44vw);
  display: block;
  border-radius: 12px;
  transition: transform .55s cubic-bezier(.32, .72, 0, 1), filter .55s cubic-bezier(.32, .72, 0, 1);
}
.store-download-link img { width: 100%; height: auto; }
.store-download-link:not(.store-download-link-preview):hover,
.store-download-link:not(.store-download-link-preview):focus-visible {
  transform: translateY(-5px) scale(1.015);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .28));
  outline: none;
}
.store-download-link-preview { cursor: default; }

/* Footer */
.site-footer { padding: 72px 0 96px; background: #171410; color: #f7f2e9; }
body[data-variant="highend"] .site-footer { background: #2b2520; }
.footer-shell {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-identity { display: flex; flex-direction: column; align-items: center; }
.footer-brand { margin-bottom: 12px; justify-content: center; }
.footer-brand > img { width: 44px; height: 44px; border-radius: 12px; }
.footer-brand .brand-name { font-size: 20px; }
.footer-shell p { margin-bottom: 0; color: #928a80; font-size: 12px; }
.footer-shell .footer-product-summary {
  max-width: 720px;
  margin-top: 10px;
  color: #b8afa5;
  line-height: 1.7;
}
.footer-links { margin-top: 30px; display: flex; justify-content: center; gap: 24px; color: #c8c0b6; font-size: 12px; }
.footer-links a:hover, .footer-links a:focus-visible { color: #fff; }
.footer-meta { margin-top: 17px; white-space: nowrap; }
.footer-meta a { color: inherit; text-decoration: none; }
.footer-meta a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-meta a:focus-visible {
  color: #fff;
  border-radius: 2px;
  outline: 2px solid currentColor;
  outline-offset: 3px;
}


@media (max-width: 1050px) {
  :root { --page: min(100% - 32px, 920px); }
  .hero-copy { max-width: 760px; }
  .platform-section { padding: 65px; grid-template-columns: 1fr; gap: 50px; }
  .high-overview { width: min(1120px, 100%); }
  .high-overview-caption { width: calc(100% - 32px); }
  .high-gallery { grid-template-columns: 1fr; }
  .high-gallery article { min-height: 540px; }
  .high-gallery article > .high-card-copy { width: 100%; }
  .high-scene-art { width: auto; height: 380px; right: 2%; bottom: 10px; }
  .high-scene-art-float { right: 1%; }
}

@media (max-width: 760px) {
  :root { --page: calc(100% - 28px); }
  .site-header { padding: 8px 0; }
  .nav-shell { grid-template-columns: 1fr auto; padding: 4px 8px; gap: 8px; }
  .brand-name { max-width: 148px; font-size: 12px; line-height: 1.05; }
  .brand > img, .brand-mascot { width: 42px; height: 42px; }
  .platform-dock { gap: 2px; padding: 3px; }
  .platform-orb, .language-button { width: 40px; height: 40px; }
  .web-app-cta { width: 40px; min-height: 40px; padding: 0; gap: 0; }
  .web-app-cta-label { display: none; }
  .web-app-cta-icon { width: 40px; height: 40px; border-width: 1px; }

  .hero-copy h1 { font-size: clamp(54px, 16vw, 78px); }
  .hero-body { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .visual-note { padding: 7px 9px; font-size: 8px; }
  .workflow-section, .feature-section, .platform-section { padding-top: 85px; padding-bottom: 85px; }
  .section-heading h2, .high-intro h2 { font-size: 48px; }
  .section-heading-wide { margin-bottom: 45px; }
  .workflow-row, .workflow-row-reverse, .workflow-row-wide {
    min-height: auto;
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 35px;
    border-radius: 28px;
  }
  .workflow-row-reverse .workflow-copy, .workflow-row-reverse .workflow-image { order: initial; }
  .workflow-copy > span { margin-bottom: 30px; }
  .workflow-copy h3 { font-size: 42px; }
  .workflow-image-phone { max-height: 500px; }
  .workflow-image-phone img { width: 76%; }
  .feature-strip article { grid-template-columns: 36px 1fr; }
  .feature-strip p { grid-column: 2; }
  .platform-section { margin-bottom: 28px; padding-inline: 24px; border-radius: 30px; }
  .platform-card { grid-template-columns: 60px 1fr; min-height: 94px; }
  .platform-card img, .platform-card-web { width: 60px; height: 60px; border-radius: 15px; }



  .high-hero { padding: 112px 0 32px; }
  .high-hero h1 { font-size: 23vw; }
  body[data-language="de"] .high-hero h1 { font-size: clamp(36px, 9.2vw, 52px); }
  .high-overview { width: 112%; margin: 36px 0 0 -6%; }
  .high-overview-stage::before { inset: 14% 5% 4%; filter: blur(28px); }
  .high-overview-caption {
    width: calc(100% - 32px);
    margin-top: 12px;
    padding-top: 18px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .high-overview-caption p { font-size: 14px; }
  .high-overview-caption p span { white-space: normal; }
  body[data-language="ja"] .high-typewriter-lede {
    max-width: 100%;
    white-space: normal;
  }
  body[data-language="ja"] .high-typewriter-lede > .typewriter-track {
    white-space: normal;
  }
  .high-intro { padding: 28px 0 22px; }
  .high-gallery { gap: 16px; }
  .high-gallery article { min-height: 650px !important; padding: 30px; grid-column: auto; }
  .high-gallery article > .high-card-copy { width: 100%; }
  .high-gallery h3 { font-size: clamp(38px, 11vw, 52px); }
  .high-card h3 { white-space: normal; }
  .high-device-scene { top: 238px; }
  .high-scene-art { width: 108%; height: auto; right: -1%; bottom: 1%; }
  .high-scene-art-float { right: -1%; }
  .high-store-download { padding: 56px 20px 62px; }
  .high-store-download-inner { flex-direction: column; gap: 14px; }
  .store-download-link { width: min(270px, 82vw); }

  .footer-shell { align-items: center; }
  .footer-links { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .js .typewriter-char.is-pending { visibility: visible; }
  .js .typewriter-char.is-current::after,
  .js .typewriter-track.is-current-empty::before { display: none; }
  .brand-mascot-open { display: none; }
  .brand-mascot-closed { opacity: 1; }
}
