@font-face {
  font-family: "MRY Display";
  src: url("./assets/fonts/mry-display-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #030302;
  --panel: #0c0b09;
  --ink: #f2eadb;
  --muted: rgba(242, 234, 219, 0.72);
  --dim: rgba(242, 234, 219, 0.46);
  --gold: #c79a55;
  --gold-soft: #e4c58f;
  --line: rgba(205, 162, 92, 0.25);
  --nav-h: 68px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 28px 88px rgba(0, 0, 0, 0.48);
  --font-display: "MRY Display", "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-sans: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.site-nav {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  width: min(1060px, calc(100% - 40px));
  min-height: var(--nav-h);
  padding: 7px 12px 7px 16px;
  border: 1px solid rgba(213, 174, 103, 0.25);
  border-radius: 999px;
  background: rgba(5, 5, 4, 0.76);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: min-height 260ms var(--ease-out), background-color 260ms ease, border-color 260ms ease;
}

.site-nav.is-compact {
  min-height: 58px;
  background: rgba(5, 5, 4, 0.92);
  border-color: rgba(222, 181, 104, 0.38);
}

.nav-brand { display: flex; flex: 0 0 auto; align-items: center; width: 76px; }
.nav-brand img { display: block; width: 70px; height: auto; object-fit: contain; }
.nav-current { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  color: rgba(242, 234, 219, 0.7);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  transition: color 220ms ease, background-color 220ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="location"] { color: var(--ink); background: rgba(230, 202, 150, 0.12); }

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
body.menu-open .menu-toggle span:first-child { transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: rotate(-45deg); }

.nav-progress {
  position: absolute;
  bottom: -1px;
  left: 8%;
  width: 84%;
  height: 1px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 193, 133, 0.08);
}

.nav-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); transition: width 180ms linear; }

.mobile-menu {
  position: fixed;
  z-index: 24;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  padding: 100px 12px 12px;
  pointer-events: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0);
  transition: opacity 220ms ease, background-color 220ms ease;
}

.mobile-menu-panel {
  display: grid;
  align-content: start;
  gap: 2px;
  width: min(360px, 100%);
  max-height: calc(100svh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 18px 18px;
  border: 1px solid rgba(213, 174, 103, 0.27);
  border-radius: 16px;
  background: rgba(13, 12, 10, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  transform: translateY(-12px);
  scrollbar-gutter: stable;
  transition: transform 260ms var(--ease-out);
}

.menu-label { margin: 0 0 8px; color: var(--gold-soft); font-size: 12px; letter-spacing: 0.12em; }
.mobile-menu-panel a { display: flex; align-items: center; min-height: 44px; padding: 0 10px; color: rgba(242, 234, 219, 0.8); border-bottom: 1px solid rgba(213, 174, 103, 0.09); font-size: 15px; }
.mobile-menu-panel a.is-active,
.mobile-menu-panel a[aria-current="location"] { color: var(--gold-soft); }
.mobile-menu-panel a.mobile-call { justify-content: center; margin-top: 12px; color: #1b1308; border: 0; border-radius: 8px; background: linear-gradient(135deg, #e2c188, #ae8148); font-weight: 700; }
body.menu-open .mobile-menu { pointer-events: auto; opacity: 1; background: rgba(0, 0, 0, 0.6); }
body.menu-open .mobile-menu-panel { transform: translateY(0); }

.page { position: relative; width: min(1540px, 100%); margin: 0 auto; padding: 18px; }
.grain { position: fixed; z-index: 20; inset: 0; pointer-events: none; opacity: 0.14; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E"); }

.section,
.footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(213, 174, 103, 0.14);
}

.section {
  min-height: max(720px, calc(100svh - 36px));
  margin-bottom: 16px;
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
  scroll-margin-top: 0;
}

.section-media,
.section-media img,
.section-mask { position: absolute; inset: 0; width: 100%; height: 100%; }
.section-media { z-index: -3; overflow: hidden; }
.section-media img { display: block; object-fit: cover; transform: scale(1.012); transition: transform 1400ms var(--ease-out); }
.section.is-active .section-media img { transform: scale(1.034); }
.hero .section-media img,
.hero.is-active .section-media img { transform: scale(1.034); transition: none; }
.section-mask { z-index: -2; pointer-events: none; }

.hero-mask { background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, transparent 42%, rgba(0, 0, 0, 0.76) 100%); }
.left-mask { background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.08) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68)); }
.right-mask { background: linear-gradient(270deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.08) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7)); }
.boundary-mask { background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.78)), linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)); }

.hero-title-image { display: none; }
.mobile-hero-title-art { display: none; }

@media (min-width: 761px) {
  .hero-title-image {
    position: absolute;
    z-index: 1;
    top: max(95px, 9vh);
    left: 3.8vw;
    display: block;
    width: clamp(255px, 26vw, 470px);
    aspect-ratio: 980 / 940;
    opacity: 0.84;
    background: url("./assets/site/hero-title-art-correct-v3.png") center / contain no-repeat;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.14)) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.56));
  }
}

.hero-orbit { position: absolute; z-index: 0; top: 20%; left: 21%; width: min(42vw, 620px); aspect-ratio: 1; border: 1px solid rgba(218, 181, 109, 0.1); border-radius: 50%; opacity: 0; transform: scale(0.92); transition: opacity 1000ms ease, transform 1600ms var(--ease-out); }
.scene.is-played .hero-orbit { opacity: 1; transform: scale(1); }

.hero-copy,
.chapter-copy,
.boundary-copy,
.info-layout,
.mission-layout,
.values-panel { position: absolute; z-index: 3; }

.hero-copy { right: 6vw; bottom: 8.6vh; width: min(620px, 42vw); }
.eyebrow,
.chapter-kicker { margin: 0 0 13px; color: var(--gold-soft); font-size: 13px; letter-spacing: 0.12em; }
.hero-copy h1,
.chapter-copy h2,
.boundary-copy h2,
.values-panel h2 { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: clamp(42px, 4.8vw, 76px); font-weight: 600; line-height: 1.08; letter-spacing: 0; }
.nowrap { white-space: nowrap; }
.hero-copy h1 { font-size: clamp(44px, 4vw, 64px); white-space: nowrap; }
.hero-copy p:not(.eyebrow),
.chapter-copy p:not(.chapter-kicker),
.boundary-copy p { max-width: 480px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.9; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border: 1px solid rgba(219, 188, 132, 0.3); border-radius: 999px; color: var(--ink); background: rgba(4, 4, 3, 0.3); font-size: 14px; transition: transform 220ms var(--ease-out), background-color 220ms ease, border-color 220ms ease; }
.hero-actions a:first-child { color: #1d1409; border-color: transparent; background: linear-gradient(135deg, #e2c188, #ae8148); font-weight: 700; }
.hero-actions a:hover { transform: translateY(-2px); border-color: rgba(233, 202, 146, 0.68); }
.registration { display: block; margin-top: 16px; color: rgba(242, 234, 219, 0.58); font-size: 13px; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 6vw; color: rgba(242, 234, 219, 0.42); font-size: 12px; letter-spacing: 0.12em; }
.scroll-cue::after { display: inline-block; width: 34px; height: 1px; margin-left: 10px; vertical-align: middle; background: var(--gold); content: ""; }

.align-left { bottom: 11vh; left: 6vw; width: min(540px, 40vw); }
.align-right { right: 6vw; bottom: 11vh; width: min(540px, 40vw); }
.compact-copy { bottom: 9vh; }
.micro-list,
.standard-points,
.boundary-copy ul { display: flex; flex-wrap: wrap; gap: 8px; max-width: 520px; margin: 22px 0 0; padding: 0; list-style: none; }
.micro-list li,
.standard-points li,
.boundary-copy li { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; color: rgba(242, 234, 219, 0.76); border: 1px solid rgba(218, 181, 109, 0.2); background: rgba(0, 0, 0, 0.16); font-size: 13px; }

.scene-datum { position: absolute; z-index: 2; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform-origin: left; }
.origin-datum { right: 8%; bottom: 25%; width: 42%; transform: scaleX(0); }
.values-datum { right: 6%; bottom: 23%; width: 48%; transform: scaleX(0); }
.scene.is-played .scene-datum { transform: scaleX(1); transition: transform 1200ms var(--ease-out) 180ms; }

.meaning-grid { position: absolute; z-index: 3; top: 16vh; left: 6vw; display: grid; grid-template-columns: repeat(3, minmax(132px, 1fr)); width: min(560px, 45vw); border-top: 1px solid rgba(218, 181, 109, 0.18); border-bottom: 1px solid rgba(218, 181, 109, 0.18); }
.meaning-word { min-height: 226px; padding: 20px; border-right: 1px solid rgba(218, 181, 109, 0.18); }
.meaning-word:last-child { border-right: 0; }
.meaning-word span { display: block; color: rgba(244, 237, 224, 0.92); font-family: var(--font-display); font-size: clamp(72px, 8vw, 132px); line-height: 1; }
.meaning-word p { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.mission-layout { inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 12vh 6vw 9vh; }
.mission-layout .static-copy { position: static; width: min(610px, 48vw); }
.mission-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; width: min(980px, 74vw); margin-top: 34px; }
.mission-cards article { min-height: 154px; padding: 20px; border: 1px solid rgba(218, 181, 109, 0.2); background: rgba(8, 8, 7, 0.46); backdrop-filter: blur(8px); }
.mission-cards p { margin: 0 0 10px; color: var(--gold-soft); font-size: 12px; }
.mission-cards h3 { margin: 0; color: var(--ink); font-family: var(--font-display); font-size: clamp(19px, 1.7vw, 27px); font-weight: 500; line-height: 1.45; }

.values-panel { right: 6vw; bottom: 9vh; width: min(650px, 50vw); }
.values-panel h2 { font-size: clamp(38px, 4vw, 64px); }
.values-lead { max-width: 520px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; margin-top: 24px; }
.value-item { min-height: 126px; padding: 13px 10px; color: var(--ink); border: 1px solid rgba(218, 181, 109, 0.2); border-radius: 0; background: rgba(6, 6, 5, 0.34); text-align: left; cursor: pointer; transition: transform 240ms var(--ease-out), border-color 240ms ease, background-color 240ms ease; }
.value-item:hover,
.value-item.is-selected { border-color: rgba(231, 194, 124, 0.76); background: rgba(197, 153, 84, 0.12); transform: translateY(-4px); }
.value-item strong { display: block; color: var(--gold-soft); font-family: var(--font-display); font-size: 40px; font-weight: 500; line-height: 1; }
.value-item span { display: block; margin-top: 12px; color: rgba(242, 234, 219, 0.76); font-size: 13px; line-height: 1.55; }

.standard-sheen { position: absolute; z-index: 2; top: 10%; bottom: 10%; left: -28%; width: 18%; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent, rgba(231, 194, 124, 0.18), transparent); transform: skewX(-14deg); }
.scene.is-active .standard-sheen { opacity: 1; transform: translateX(720%) skewX(-14deg); transition: transform 2000ms var(--ease-out) 260ms, opacity 180ms ease; }

.info-layout { inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; padding: 12vh 6vw 9vh; }
.info-layout .static-copy { position: static; align-self: flex-start; width: min(500px, 40vw); }
.product-plate { width: min(720px, 55vw); margin: 30px 0 0; border: 1px solid rgba(218, 181, 109, 0.22); background: rgba(10, 10, 9, 0.66); backdrop-filter: blur(12px); }
.product-plate div { display: grid; grid-template-columns: 142px 1fr; gap: 24px; padding: 18px 20px; border-bottom: 1px solid rgba(218, 181, 109, 0.14); }
.product-plate div:last-child { border-bottom: 0; }
.product-plate dt { color: var(--gold-soft); font-size: 14px; }
.product-plate dd { margin: 0; color: rgba(242, 234, 219, 0.86); font-size: 15px; line-height: 1.75; }
.device-notice { width: min(720px, 55vw); margin-top: 12px; padding: 11px 14px; color: rgba(242, 234, 219, 0.8); border: 1px solid rgba(228, 197, 143, 0.32); background: rgba(8, 8, 7, 0.62); font-size: 13px; line-height: 1.7; }
.device-notice p { margin: 0; }

.service-trace { position: absolute; z-index: 2; right: 10%; bottom: 22%; width: 32%; height: 24%; border-right: 1px solid rgba(226, 187, 110, 0.56); border-bottom: 1px solid rgba(226, 187, 110, 0.56); opacity: 0; transform: translate(24px, -24px); }
.scene.is-played .service-trace { opacity: 1; transform: translate(0, 0); transition: opacity 500ms ease 240ms, transform 1100ms var(--ease-out) 240ms; }
.service .chapter-copy h2 { max-width: 490px; }
.boundary-copy h2 { font-size: clamp(38px, 3.6vw, 52px); }
.service-line { display: inline-flex; align-items: center; min-height: 38px; margin-top: 22px; padding: 0 13px; color: var(--gold-soft); border-left: 1px solid var(--gold); font-size: 14px; }

.boundary-copy { bottom: 11vh; left: 50%; width: min(700px, 58vw); text-align: center; transform: translateX(-50%); }
.boundary-copy p { margin-right: auto; margin-left: auto; }
.boundary-copy ul { justify-content: center; margin-right: auto; margin-left: auto; }
.boundary-frame { position: absolute; z-index: 2; inset: 17% 20%; border: 1px solid rgba(225, 188, 116, 0.26); pointer-events: none; opacity: 0; transform: scale(1.04); }
.scene.is-played .boundary-frame { opacity: 1; transform: scale(1); transition: opacity 600ms ease 180ms, transform 1200ms var(--ease-out) 180ms; }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 0 4px; padding: 30px 22px 28px; color: rgba(242, 234, 219, 0.68); border-width: 1px 0 0; background: transparent; scroll-margin-top: 0; }
.footer-branding { display: flex; align-items: center; gap: 14px; }
.footer-branding img { width: 84px; height: auto; }
.footer-name,
.footer-note,
.footer-info p { margin: 0; }
.footer-name { color: var(--ink); font-size: 18px; }
.footer-note,
.footer-info { margin-top: 4px; font-size: 14px; line-height: 1.85; }
.footer-info { max-width: 740px; text-align: right; }
.footer-info a { color: rgba(242, 234, 219, 0.9); }
.footer-info a:hover { color: var(--gold-soft); }
.footer-records { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 5px 14px; color: rgba(242, 234, 219, 0.58); }
.police-record { display: inline-flex; align-items: center; gap: 5px; }
.police-record img { width: 18px; height: 18px; object-fit: contain; }

.motion-enabled .scene .scene-copy,
.motion-enabled .scene .meaning-word,
.motion-enabled .scene .mission-cards article,
.motion-enabled .scene .value-item,
.motion-enabled .scene .product-plate,
.motion-enabled .scroll-cue { opacity: 0; transform: translateY(22px); }
.motion-enabled .scene.is-played .scene-copy,
.motion-enabled .scene.is-played .meaning-word,
.motion-enabled .scene.is-played .mission-cards article,
.motion-enabled .scene.is-played .value-item,
.motion-enabled .scene.is-played .product-plate,
.motion-enabled .scene.is-played .scroll-cue { opacity: 1; transform: translateY(0); transition: opacity 680ms ease, transform 900ms var(--ease-out); }
.motion-enabled .scene.is-played .meaning-word:nth-child(2),
.motion-enabled .scene.is-played .mission-cards article:nth-child(2),
.motion-enabled .scene.is-played .value-item:nth-child(2) { transition-delay: 120ms; }
.motion-enabled .scene.is-played .meaning-word:nth-child(3),
.motion-enabled .scene.is-played .mission-cards article:nth-child(3),
.motion-enabled .scene.is-played .value-item:nth-child(3) { transition-delay: 240ms; }
.motion-enabled .scene.is-played .value-item:nth-child(4) { transition-delay: 360ms; }
.motion-enabled .scene.is-played .value-item:nth-child(5) { transition-delay: 480ms; }
.motion-enabled .scene.is-played .stagger-list li { animation: list-reveal 560ms var(--ease-out) both; }
.motion-enabled .scene.is-played .stagger-list li:nth-child(2) { animation-delay: 130ms; }
.motion-enabled .scene.is-played .stagger-list li:nth-child(3) { animation-delay: 260ms; }

@keyframes list-reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .nav-links a { padding: 0 7px; font-size: 12px; }
  .hero-copy { right: 5vw; }
  .meaning-grid { width: min(500px, 48vw); }
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-item { min-height: 104px; }
}

@media (max-width: 760px) {
  html { scroll-behavior: auto; scroll-padding-top: calc(var(--nav-h) + 16px); }
  .page { padding: 12px; }
  .site-nav { top: 12px; width: calc(100% - 24px); min-height: var(--nav-h); padding: 5px 6px 5px 12px; }
  .nav-brand { width: 58px; }
  .nav-brand img { width: 56px; }
  .nav-current { display: inline-flex; align-items: center; justify-content: center; flex: 1; min-height: 44px; max-width: 150px; overflow: hidden; color: rgba(242, 234, 219, 0.84); font-size: 14px; white-space: nowrap; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; flex: 0 0 auto; }
  .mobile-menu { padding-top: 94px; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
  .mobile-menu-panel { max-height: calc(100svh - 106px - env(safe-area-inset-bottom)); padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .section { min-height: calc(100svh - 24px); margin-bottom: 14px; border-radius: 18px; scroll-margin-top: 0; }
  .mission { min-height: 930px; }
  .values { min-height: 1000px; }
  .info { min-height: 970px; }
  .section-media img { transform: scale(1.008); }
  .section.is-active .section-media img { transform: scale(1.025); }
  .hero .section-media img,
  .hero.is-active .section-media img { transform: scale(1.025); transition: none; }
  .hero-mask,
  .left-mask,
  .right-mask,
  .boundary-mask { background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.04) 37%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.02)); }
  .hero-title-image { display: none; }
  .mobile-hero-title-art { position: absolute; z-index: 3; top: calc(var(--nav-h) + 68px); left: 7vw; display: flex; gap: 0.08em; color: rgba(236, 244, 246, 0.6); font-family: var(--font-display); font-size: clamp(42px, 11.2vw, 50px); font-weight: 700; line-height: 1; white-space: nowrap; filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.7)); }
  .hero-orbit { top: 18%; left: 0; width: 78vw; }
  .hero-copy { right: 7vw; bottom: 5.1svh; left: 7vw; width: auto; }
  .eyebrow,
  .chapter-kicker { margin-bottom: 11px; font-size: 12px; }
  .hero-copy h1 { max-width: 310px; font-size: clamp(30px, 8.2vw, 36px); line-height: 1.12; }
  .hero-copy p:not(.eyebrow) { max-width: 310px; margin-top: 14px; font-size: 14px; line-height: 1.72; }
  .hero-actions { gap: 8px; margin-top: 18px; }
  .hero-actions a { min-height: 44px; padding: 0 14px; font-size: 13px; }
  .registration { margin-top: 12px; font-size: 12px; }
  .scroll-cue { display: none; }
  .align-left,
  .align-right,
  .compact-copy { right: 7vw; bottom: 6.8svh; left: 7vw; width: auto; }
  .chapter-copy h2,
  .boundary-copy h2 { font-size: clamp(33px, 9.5vw, 42px); }
  .chapter-copy p:not(.chapter-kicker),
  .boundary-copy p { max-width: 324px; margin-top: 14px; font-size: 14px; line-height: 1.75; }
  .micro-list,
  .standard-points,
  .boundary-copy ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; max-width: 330px; margin-top: 16px; }
  .micro-list li,
  .standard-points li,
  .boundary-copy li { justify-content: center; min-height: 35px; padding: 0 8px; font-size: 12px; text-align: center; }
  .origin-datum { right: 7vw; bottom: 26%; width: 45%; }
  .meaning-grid { top: 18svh; right: 7vw; left: 7vw; grid-template-columns: 1fr; gap: 0; width: auto; border-top: 0; border-bottom: 0; }
  .meaning-word { display: grid; grid-template-columns: 72px 1fr; align-items: center; min-height: 76px; padding: 0 14px; border-right: 0; border-bottom: 1px solid rgba(218, 181, 109, 0.15); }
  .meaning-word span { font-size: 58px; }
  .meaning-word p { margin: 0; font-size: 13px; line-height: 1.45; }
  .meaning .chapter-copy { bottom: 6svh; }
  .meaning .chapter-copy p:not(.chapter-kicker) { display: none; }
  .mission-layout { justify-content: flex-end; min-height: calc(100svh - 24px); padding: calc(var(--nav-h) + 30px) 7vw 5.1svh; }
  .mission-layout .static-copy { width: auto; }
  .mission-layout .static-copy p:not(.chapter-kicker) { display: block; max-width: 324px; }
  .mission-cards { grid-template-columns: 1fr; gap: 8px; width: 100%; margin-top: 15px; }
  .mission-cards article { display: grid; grid-template-columns: 72px 1fr; align-items: center; min-height: 61px; padding: 11px 13px; }
  .mission-cards p { margin: 0; font-size: 12px; }
  .mission-cards h3 { font-size: 16px; line-height: 1.38; }
  .values-panel { right: 7vw; bottom: 5.2svh; left: 7vw; width: auto; }
  .values-panel h2 { max-width: 330px; font-size: clamp(32px, 9vw, 40px); }
  .values-lead { max-width: 316px; margin-top: 14px; font-size: 14px; line-height: 1.7; }
  .values-grid { grid-template-columns: 1fr; gap: 7px; margin-top: 16px; }
  .value-item { display: grid; grid-template-columns: 48px 1fr; align-items: center; min-height: 55px; padding: 8px 13px; }
  .value-item strong { font-size: 34px; }
  .value-item span { margin: 0; font-size: 13px; }
  .value-item:hover,
  .value-item.is-selected { transform: translateX(4px); }
  .values-datum { right: 7vw; bottom: 21%; width: 50%; }
  .standard-sheen { display: none; }
  .info-layout { justify-content: flex-end; align-items: stretch; min-height: calc(100svh - 24px); padding: calc(var(--nav-h) + 30px) 7vw 4.3svh; }
  .info-layout .static-copy { width: auto; }
  .static-copy h2 { font-size: clamp(33px, 9.5vw, 42px); }
  .static-copy p:not(.chapter-kicker) { display: none; }
  .product-plate { width: 100%; margin-top: 14px; }
  .product-plate div { grid-template-columns: 80px 1fr; gap: 10px; padding: 10px 12px; }
  .product-plate dt,
  .product-plate dd { font-size: 12px; line-height: 1.56; }
  .device-notice { width: 100%; margin-top: 10px; padding: 9px 11px; font-size: 12px; line-height: 1.55; }
  .service .chapter-copy h2 { max-width: 330px; font-size: clamp(32px, 9vw, 40px); }
  .service .chapter-copy p:not(.chapter-kicker) { max-width: 312px; }
  .service-line { min-height: 38px; margin-top: 15px; font-size: 13px; }
  .service-trace { right: 7vw; bottom: 27%; width: 36%; height: 20%; }
  .boundary-copy { right: 7vw; bottom: 6.8svh; left: 7vw; width: auto; text-align: left; transform: none; }
  .boundary-copy p { margin-right: 0; margin-left: 0; }
  .boundary-copy ul { justify-content: start; margin-right: 0; margin-left: 0; }
  .boundary-frame { inset: 14% 7%; }
  .footer { flex-direction: column; align-items: flex-start; gap: 12px; margin: 0 4px; padding: 23px 4px 8px; }
  .footer-branding img { width: 76px; }
  .footer-info { max-width: 100%; font-size: 12px; line-height: 1.85; text-align: left; }
  .footer-records { justify-content: flex-start; gap: 5px 10px; }
}

@media (max-width: 1024px) and (max-height: 520px) and (orientation: landscape) {
  html { scroll-behavior: auto; scroll-padding-top: 76px; }
  .page { padding: 8px; }
  .site-nav { top: 8px; width: calc(100% - 16px); min-height: 56px; padding: 4px 6px 4px 12px; }
  .nav-brand { width: 54px; }
  .nav-brand img { width: 52px; }
  .nav-current { display: inline-flex; align-items: center; justify-content: center; flex: 1; min-height: 44px; max-width: 180px; overflow: hidden; color: rgba(242, 234, 219, 0.84); font-size: 13px; white-space: nowrap; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; flex: 0 0 auto; }
  .mobile-menu { padding: 72px 8px max(8px, env(safe-area-inset-bottom)); }
  .mobile-menu-panel { width: min(420px, 58vw); max-height: calc(100svh - 80px - env(safe-area-inset-bottom)); padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); }
  .mobile-menu-panel a { min-height: 44px; font-size: 13px; }
  .hero { min-height: max(366px, calc(100svh - 16px)); margin-bottom: 12px; border-radius: 16px; }
  .hero-title-image { display: none; }
  .mobile-hero-title-art { position: absolute; z-index: 3; top: 90px; left: 4vw; display: flex; gap: 0.08em; color: rgba(236, 244, 246, 0.6); font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1; white-space: nowrap; filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.72)); }
  .hero-copy { right: auto; bottom: 12px; left: 4vw; width: min(390px, 46vw); }
  .hero-copy .eyebrow { margin-bottom: 5px; font-size: 10px; }
  .hero-copy h1 { max-width: none; font-size: 26px; line-height: 1.08; }
  .hero-copy p:not(.eyebrow) { max-width: 360px; margin-top: 7px; font-size: 12px; line-height: 1.45; }
  .hero-actions { gap: 6px; margin-top: 9px; }
  .hero-actions a { min-height: 38px; padding: 0 11px; font-size: 12px; }
  .registration { margin-top: 7px; font-size: 10px; }
  .hero-orbit,
  .scroll-cue { display: none; }
}

@media (max-width: 360px) {
  .nav-current { max-width: 116px; }
  .mobile-hero-title-art { font-size: 40px; }
  .hero-actions a { padding: 0 11px; }
  .meaning-grid { top: 17svh; }
  .product-plate div { grid-template-columns: 72px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *,
  *::before,
  *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .section-media img,
  .section.is-active .section-media img { transform: none !important; }
  .hero-orbit,
  .scene-datum,
  .service-trace,
  .boundary-frame { display: none; }
}

.motion-reduced .section-media img,
.motion-reduced .section.is-active .section-media img { transform: none; }
.motion-reduced .hero-orbit,
.motion-reduced .scene-datum,
.motion-reduced .service-trace,
.motion-reduced .boundary-frame,
.motion-reduced .standard-sheen { display: none; }
