:root {
  --ink: #0a0a0a;
  --ink-soft: #171719;
  --paper: #f7f1e7;
  --paper-deep: #eee4d5;
  --white: #fffdf8;
  --orange: #ff9d2e;
  --coral: #ff6b54;
  --yellow: #ffc15a;
  --blue: #1536b5;
  --cyan: #53dff4;
  --lilac: #c6a7df;
  --muted: #726d66;
  --line: rgba(10, 10, 10, 0.16);
  --line-light: rgba(255, 253, 248, 0.2);
  --page-pad: clamp(22px, 4vw, 72px);
  --section-pad: clamp(88px, 11vw, 164px);
  --radius-lg: clamp(26px, 3vw, 48px);
  --radius-md: 24px;
  --font-sans: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", sans-serif;
  --font-serif: Georgia, "Times New Roman", "Songti SC", serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, height 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(10, 10, 10, 0.09);
  background: rgba(247, 241, 231, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(26, 31, 76, 0.2);
}

.brand-word {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand-by {
  margin-left: 2px;
  padding-left: 13px;
  border-left: 1px solid rgba(10, 10, 10, 0.22);
  color: rgba(10, 10, 10, 0.56);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav a:not(.nav-support)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-support {
  padding: 10px 15px !important;
  border: 1px solid rgba(10, 10, 10, 0.46);
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-support:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  background: var(--paper-deep);
}

.hero-backdrop,
.hero-wash,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-backdrop {
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.96) contrast(1.02);
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.98) 0%, rgba(247, 241, 231, 0.9) 35%, rgba(247, 241, 231, 0.2) 66%, rgba(247, 241, 231, 0) 100%),
    linear-gradient(0deg, rgba(247, 241, 231, 0.46) 0%, transparent 28%);
}

.hero-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.09) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(760px, 55vw);
  min-height: max(780px, 100svh);
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 126px var(--page-pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 157, 46, 0.16);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(58px, 7.25vw, 126px);
  font-weight: 770;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 em,
.display-heading em,
.instrument-copy h2 em,
.company-main h2 em,
.closing h2 em {
  color: var(--coral);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 620px;
  margin: 42px 0 0;
  font-size: clamp(18px, 1.45vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.hero-cn {
  max-width: 590px;
  margin: 15px 0 0;
  color: rgba(10, 10, 10, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.17);
}

.button-dark:hover {
  background: var(--blue);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(10, 10, 10, 0.65);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-orbit {
  width: 21px;
  height: 21px;
  border: 1px solid rgba(10, 10, 10, 0.34);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px var(--orange);
}

.hero-device {
  --move-x: 0px;
  --move-y: 0px;
  position: absolute;
  z-index: 4;
  top: clamp(100px, 11vh, 150px);
  right: clamp(-80px, 1vw, 32px);
  width: clamp(330px, 31vw, 540px);
  transform: translate3d(var(--move-x), var(--move-y), 0) rotate(4deg);
  transform-origin: 50% 50%;
  transition: transform 220ms ease-out;
}

.device-aura {
  position: absolute;
  inset: 8% -12% 4% -8%;
  border-radius: 48%;
  background: radial-gradient(circle at 42% 48%, rgba(255, 193, 90, 0.8), rgba(255, 107, 84, 0.45) 42%, rgba(255, 107, 84, 0) 70%);
  filter: blur(35px);
  transform: scale(1.1);
}

.phone-shell {
  position: relative;
  overflow: hidden;
  border: clamp(8px, 0.7vw, 12px) solid var(--ink);
  border-radius: clamp(42px, 4vw, 70px);
  background: #000;
  box-shadow: 0 44px 90px rgba(30, 20, 12, 0.34), 0 2px 0 rgba(255, 255, 255, 0.32) inset;
}

.phone-shell img {
  width: 100%;
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 174px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(10, 10, 10, 0.2);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 16px 32px rgba(10, 10, 10, 0.14);
  font-family: var(--font-mono);
  transform: rotate(-4deg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-note span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
}

.hero-note b {
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.hero-note-top {
  top: 12%;
  left: -20%;
}

.hero-note-bottom {
  right: 4%;
  bottom: 14%;
  transform: rotate(7deg);
}

.hero-note .note-star {
  font-family: var(--font-sans);
  font-size: 24px;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  bottom: 27px;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--ink);
  animation: scan 1.8s ease-in-out infinite;
}

@keyframes scan {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 58px;
  align-items: center;
  gap: 24px;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: var(--section-pad) var(--page-pad);
}

.section-dark {
  padding: var(--section-pad) var(--page-pad);
  background: var(--ink);
  color: var(--white);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.section-kicker p {
  margin: 0;
}

.manifesto {
  background: var(--paper);
}

.manifesto-layout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.55fr);
  gap: clamp(50px, 8vw, 140px);
}

.display-heading {
  margin: 0;
  font-size: clamp(48px, 6vw, 104px);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.display-heading em {
  display: inline-block;
  margin-top: 10px;
}

.manifesto-copy {
  padding-bottom: 9px;
}

.manifesto-copy p {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.manifesto-copy p + p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.manifesto-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(72px, 9vw, 130px);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.manifesto-rule i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.paths {
  padding-top: 40px;
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(50px, 6.5vw, 104px);
  font-weight: 710;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.index-tag {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.index-tag-light {
  color: var(--orange);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.path-card {
  position: relative;
  min-height: clamp(470px, 46vw, 690px);
  overflow: hidden;
  grid-column: span 5;
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  color: var(--white);
  isolation: isolate;
}

.path-card-wide {
  grid-column: span 7;
}

.path-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0, 1), filter 500ms ease;
}

.path-card:nth-child(1) img {
  object-position: 50% 44%;
}

.path-card:nth-child(2) img {
  object-position: 50% 58%;
}

.path-card:nth-child(3) img {
  object-position: 50% 46%;
}

.path-card:nth-child(4) img {
  object-position: 50% 38%;
}

.path-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.path-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 32%, rgba(0, 0, 0, 0.78) 100%);
}

.path-number,
.path-arrow {
  position: absolute;
  z-index: 2;
  top: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.22);
  font-family: var(--font-mono);
  font-size: 10px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.path-number {
  left: 22px;
}

.path-arrow {
  right: 22px;
  font-size: 17px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.path-card:hover .path-arrow {
  background: var(--orange);
  color: var(--ink);
  transform: rotate(45deg);
}

.path-copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 29px;
  left: 28px;
}

.path-copy p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.path-copy h3 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 78px);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 1;
}

.path-copy span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.instrument {
  position: relative;
  overflow: hidden;
}

.instrument-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(440px, 1fr);
  gap: clamp(60px, 9vw, 150px);
}

.instrument-visual {
  position: relative;
  min-height: 900px;
}

.visual-label {
  position: sticky;
  top: 110px;
  display: block;
  width: max-content;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.phone-stage {
  position: sticky;
  top: 146px;
  width: min(430px, 90%);
  margin: 0 auto;
}

.phone-stage img {
  position: relative;
  z-index: 2;
  max-height: 710px;
  margin: 0 auto;
  border: 8px solid #000;
  border-radius: 50px;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.6);
}

.phone-stage-disc {
  position: absolute;
  z-index: 1;
  top: 15%;
  left: 50%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--orange), var(--coral), #ff3775, var(--lilac), var(--cyan), var(--orange));
  filter: saturate(1.1);
  transform: translateX(-50%);
}

.instrument-copy {
  padding-top: 68px;
}

.instrument-copy h2 {
  margin: 20px 0 0;
  font-size: clamp(58px, 6vw, 102px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.instrument-intro {
  max-width: 580px;
  margin: 37px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 18px;
  line-height: 1.6;
}

.feature-list {
  margin-top: 80px;
  border-top: 1px solid var(--line-light);
}

.feature-item {
  display: grid;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
}

.feature-item > span {
  padding-top: 5px;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.feature-item h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.feature-item p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.65;
}

.instrument-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit-one {
  top: 11%;
  left: -20vw;
  width: 70vw;
  height: 70vw;
}

.orbit-two {
  right: -22vw;
  bottom: -24vw;
  width: 60vw;
  height: 60vw;
}

.workbench {
  background: var(--paper-deep);
}

.workbench-showcase {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(18px, 2vw, 32px);
}

.studio-side {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 32px);
}

.studio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.studio-card-look {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #0c0c0d;
  color: var(--white);
}

.look-stage {
  display: grid;
  min-height: 0;
  padding: clamp(16px, 1.6vw, 26px);
  padding-bottom: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.look-image {
  position: relative;
  height: clamp(480px, 45vw, 650px);
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 13px) calc(var(--radius-lg) - 13px) 18px 18px;
  background: #a97059;
}

.look-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transition: transform 850ms cubic-bezier(0.2, 0.8, 0, 1);
}

.studio-card-look:hover .look-image > img {
  transform: scale(1.025);
}

.look-grade {
  position: absolute;
  inset: 0 0 0 50%;
  background: linear-gradient(145deg, rgba(255, 158, 46, 0.08), rgba(255, 75, 96, 0.34) 60%, rgba(38, 21, 93, 0.18));
  mix-blend-mode: color;
  pointer-events: none;
}

.look-divider {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.82);
}

.look-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 7px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 5px 20px rgba(10, 10, 10, 0.28);
  transform: translate(-50%, -50%);
}

.look-state {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.56);
  color: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.look-rail {
  display: grid;
  gap: 8px;
  padding: 14px 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.look-rail > span {
  display: grid;
  min-width: 0;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  gap: 7px;
}

.look-rail > span.is-active {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(255, 157, 46, 0.24);
}

.look-thumb {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background-image: url("assets/path-reference.jpg");
  background-position: 50% 34%;
  background-size: cover;
}

.look-thumb-original {
  filter: saturate(0.72) contrast(0.9);
}

.look-thumb-daylight {
  filter: brightness(1.1) saturate(0.8);
}

.look-thumb-film {
  filter: sepia(0.18) saturate(1.2) contrast(1.04);
}

.look-thumb-night {
  filter: hue-rotate(326deg) saturate(0.78) brightness(0.72);
}

.studio-copy {
  padding: clamp(27px, 3vw, 42px);
}

.studio-copy > span,
.mode-copy > span {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.studio-copy h3,
.mode-copy h3 {
  margin: 15px 0 0;
  font-size: clamp(30px, 3vw, 49px);
  font-weight: 690;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.studio-copy p,
.mode-copy p {
  max-width: 620px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.65;
}

.studio-card-layers {
  display: grid;
  min-height: 470px;
  background: var(--blue);
  color: var(--white);
  grid-template-rows: auto minmax(250px, 1fr);
}

.studio-card-layers .studio-copy {
  padding-bottom: 6px;
}

.studio-card-layers .studio-copy h3 {
  font-size: clamp(29px, 2.55vw, 43px);
}

.layer-canvas {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.layer-photo {
  position: absolute;
  top: 25px;
  left: 19%;
  width: 52%;
  padding: 9px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 22px 44px rgba(5, 14, 58, 0.28);
  transform: rotate(-4deg);
  transition: transform 550ms cubic-bezier(0.2, 0.8, 0, 1);
}

.studio-card-layers:hover .layer-photo {
  transform: rotate(-2deg) translateY(-5px);
}

.layer-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.layer-type {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 5%;
  padding: 13px 18px 15px;
  border: 1px solid rgba(10, 10, 10, 0.14);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(5, 14, 58, 0.24);
  transform: rotate(5deg);
}

.layer-type small {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.layer-type strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 2.1vw, 34px);
  letter-spacing: -0.06em;
  line-height: 0.78;
}

.layer-spark {
  position: absolute;
  z-index: 3;
  top: 7px;
  right: 14%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 37px;
  transform: rotate(-9deg);
}

.layer-list {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 22px;
  display: grid;
  width: 126px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(8, 17, 70, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  gap: 5px;
}

.layer-list span {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  gap: 8px;
}

.layer-list i {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 2px;
}

.studio-card-modes {
  display: grid;
  min-height: 245px;
  align-items: center;
  padding: clamp(28px, 3vw, 44px);
  background: var(--coral);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
}

.mode-copy > span {
  color: rgba(10, 10, 10, 0.58);
}

.mode-copy h3 {
  max-width: 330px;
  color: var(--ink);
  font-size: clamp(30px, 2.7vw, 45px);
}

.mode-copy p {
  max-width: 320px;
  color: rgba(10, 10, 10, 0.62);
}

.capture-control {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.capture-ring {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.capture-ring i {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(10, 10, 10, 0.35);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 5px var(--coral);
}

.mode-switch {
  display: flex;
  gap: 6px;
}

.mode-switch span {
  padding: 7px 9px;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 999px;
  color: rgba(10, 10, 10, 0.5);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mode-switch span.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.company {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 820px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.45fr);
  gap: clamp(50px, 8vw, 130px);
  background: var(--blue);
  color: var(--white);
}

.company::before {
  position: absolute;
  top: -20%;
  right: 18%;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.company-mark {
  position: absolute;
  right: 5vw;
  bottom: -13vw;
  display: grid;
  width: 35vw;
  min-width: 410px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0.9;
}

.company-mark img {
  width: 58%;
  border-radius: 25%;
  transform: rotate(9deg);
}

.company-mark span {
  position: absolute;
  top: 4%;
  right: 0;
  color: var(--orange);
  font-family: var(--font-serif);
  font-size: 12vw;
  font-style: italic;
  line-height: 1;
}

.company-main,
.company-facts {
  position: relative;
  z-index: 2;
}

.company-main h2 {
  max-width: 900px;
  margin: 25px 0 0;
  font-size: clamp(58px, 7.4vw, 126px);
  font-weight: 710;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.company-main h2 em {
  color: var(--orange);
}

.company-main > p {
  max-width: 680px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.company-main > p[lang] {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
}

.company-facts {
  align-self: end;
  margin-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 10, 10, 0.08);
}

.company-facts div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.company-facts span,
.company-facts small {
  display: block;
  color: rgba(255, 255, 255, 0.53);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-facts strong,
.company-facts a {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.45;
}

.company-facts a {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 5px;
}

.company-facts small {
  margin-top: 7px;
  text-transform: none;
}

.closing {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  align-items: center;
  padding: var(--section-pad) var(--page-pad);
  background: var(--coral);
}

.closing::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(rgba(10, 10, 10, 0.8) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
}

.closing-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.closing h2 {
  margin: 0;
  font-size: clamp(72px, 9vw, 150px);
  font-weight: 740;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.closing h2 em {
  color: var(--paper);
}

.closing-copy > p:not(.eyebrow) {
  margin: 38px 0 0;
  font-size: 18px;
}

.button-light {
  margin-top: 30px;
  border: 1px solid rgba(10, 10, 10, 0.26);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(10, 10, 10, 0.13);
}

.button-light:hover {
  background: var(--ink);
  color: var(--white);
}

.closing-lens {
  position: absolute;
  z-index: 1;
  right: -8vw;
  bottom: -13vw;
  width: min(52vw, 760px);
  transform: rotate(-10deg);
}

.closing-lens img {
  border-radius: 24%;
  box-shadow: 0 50px 110px rgba(10, 10, 10, 0.28);
}

.site-footer {
  display: grid;
  padding: 68px var(--page-pad) 28px;
  grid-template-columns: 1fr 0.85fr;
  gap: 74px;
  background: var(--ink);
  color: var(--white);
}

.brand-footer .brand-word {
  font-size: 25px;
}

.footer-brand > p {
  max-width: 280px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Interior pages */
.interior-page {
  background: var(--paper);
}

.interior-page .site-header {
  position: fixed;
  color: var(--white);
}

.interior-page .site-header.is-scrolled {
  color: var(--ink);
}

.interior-page .brand-by {
  border-color: rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.54);
}

.interior-page .site-header.is-scrolled .brand-by {
  border-color: rgba(10, 10, 10, 0.22);
  color: rgba(10, 10, 10, 0.56);
}

.interior-page .nav-support {
  border-color: rgba(255, 255, 255, 0.48);
}

.interior-page .site-header.is-scrolled .nav-support {
  border-color: rgba(10, 10, 10, 0.46);
}

.interior-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  align-items: end;
  padding: 150px var(--page-pad) 82px;
  background: var(--ink);
  color: var(--white);
}

.interior-hero::before,
.interior-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.interior-hero::before {
  top: -35%;
  right: -5%;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 8vw rgba(255, 157, 46, 0.07);
}

.interior-hero::after {
  right: 9%;
  bottom: -33%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, var(--blue) 0 22%, var(--cyan) 23% 25%, transparent 26%), conic-gradient(var(--orange), var(--coral), var(--lilac), var(--blue), var(--orange));
  opacity: 0.82;
}

.interior-hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.interior-hero h1 {
  margin: 0;
  font-size: clamp(62px, 9vw, 140px);
  font-weight: 720;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.interior-hero h1 em {
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 400;
}

.interior-hero p:last-child {
  max-width: 580px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.65;
}

.legal-layout,
.support-layout {
  display: grid;
  padding: var(--section-pad) var(--page-pad);
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 150px);
}

.legal-aside,
.support-aside {
  align-self: start;
}

.legal-aside-inner,
.support-aside-inner {
  position: sticky;
  top: 110px;
}

.legal-aside span,
.support-aside span {
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-aside p,
.support-aside p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 28px;
}

.legal-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.legal-copy,
.support-copy {
  max-width: 850px;
}

.legal-copy section,
.support-copy section {
  padding: 0 0 58px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 58px;
}

.legal-copy section:last-child,
.support-copy section:last-child {
  padding-bottom: 0;
  border: 0;
  margin-bottom: 0;
}

.legal-copy h2,
.support-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-copy h3,
.support-copy h3 {
  margin: 32px 0 12px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.legal-copy p,
.legal-copy li,
.support-copy p,
.support-copy li {
  color: #4f4b45;
  font-size: 15px;
  line-height: 1.75;
}

.legal-copy ul,
.support-copy ul {
  padding-left: 20px;
}

.legal-copy a,
.support-copy a {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-cn {
  padding-top: 68px;
}

.language-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0 68px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.language-divider::before,
.language-divider::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--line);
}

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.support-card + .support-card {
  margin-top: 18px;
}

.support-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.support-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background: var(--orange);
}

.support-cta h2 {
  margin: 0;
}

.support-cta .button {
  min-width: max-content;
  margin: 0;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 22px 46px 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
}

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

summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  content: "+";
  color: var(--coral);
  font-size: 23px;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 46px 24px 0;
}

.not-found {
  display: flex;
  min-height: 100svh;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: var(--page-pad);
  background: var(--paper);
}

.not-found > img {
  margin-bottom: 38px;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(10, 10, 10, 0.18);
}

.not-found h1 {
  margin: 0;
  font-size: clamp(68px, 12vw, 170px);
  font-weight: 730;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.not-found h1 em {
  color: var(--coral);
  font-family: var(--font-serif);
  font-weight: 400;
}

.not-found > p:not(.eyebrow) {
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.not-found .button {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .hero-copy {
    width: 60vw;
  }

  .hero-device {
    right: -95px;
    width: 430px;
  }

  .hero-note-top {
    left: -10%;
  }

  .instrument-layout {
    grid-template-columns: minmax(320px, 0.72fr) minmax(390px, 1fr);
    gap: 70px;
  }

  .company {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.45fr);
  }
}

@media (max-width: 820px) {
  :root {
    --section-pad: 92px;
  }

  .site-header {
    height: 72px;
  }

  .brand-by {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 100px var(--page-pad) 50px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-16px);
    transition: visibility 220ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .interior-page .site-nav {
    color: var(--ink);
  }

  .site-nav a {
    font-size: clamp(36px, 10vw, 64px);
    font-weight: 680;
    letter-spacing: -0.055em;
  }

  .nav-support {
    padding: 0 !important;
    border: 0;
  }

  .nav-support:hover {
    background: transparent;
    color: var(--coral);
  }

  .hero {
    min-height: 980px;
  }

  .hero-backdrop {
    object-position: 66% 50%;
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(247, 241, 231, 0.98) 0%, rgba(247, 241, 231, 0.9) 45%, rgba(247, 241, 231, 0.1) 77%, rgba(247, 241, 231, 0) 100%);
  }

  .hero-grid {
    mask-image: linear-gradient(#000, transparent 57%);
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    padding: 125px var(--page-pad) 0;
  }

  .hero h1 {
    font-size: clamp(58px, 14vw, 94px);
  }

  .hero-lead {
    max-width: 620px;
    margin-top: 30px;
  }

  .hero-device {
    top: 505px;
    right: -35px;
    width: min(390px, 67vw);
  }

  .hero-note-top {
    left: -20%;
  }

  .hero-note-bottom {
    right: 3%;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto-layout,
  .instrument-layout,
  .company,
  .legal-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-copy {
    max-width: 620px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 26px;
  }

  .path-card,
  .path-card-wide {
    min-height: 580px;
    grid-column: span 12;
  }

  .instrument-visual {
    min-height: 760px;
  }

  .visual-label,
  .phone-stage {
    position: relative;
    top: auto;
  }

  .phone-stage {
    width: min(430px, 80vw);
  }

  .instrument-copy {
    padding-top: 0;
  }

  .workbench-showcase {
    grid-template-columns: 1fr;
  }

  .studio-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .company {
    min-height: 1050px;
    align-items: start;
  }

  .company-facts {
    width: min(100%, 520px);
    align-self: auto;
  }

  .company-mark {
    right: -14vw;
    bottom: -13vw;
    width: 62vw;
  }

  .closing {
    min-height: 850px;
    align-items: start;
  }

  .closing-lens {
    right: -17vw;
    bottom: -9vw;
    width: 69vw;
  }

  .legal-aside-inner,
  .support-aside-inner {
    position: static;
  }

  .legal-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 20px;
    --section-pad: 78px;
    --radius-lg: 27px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .hero {
    min-height: 980px;
  }

  .hero-copy {
    padding-top: 108px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(50px, 15.8vw, 78px);
    line-height: 0.86;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-cn {
    font-size: 12px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 25px;
  }

  .button {
    min-height: 48px;
  }

  .hero-device {
    top: 600px;
    right: -31px;
    width: min(294px, 69vw);
  }

  .hero-note {
    min-width: 142px;
    padding: 10px 12px;
  }

  .hero-note-top {
    top: 19%;
    left: -27%;
  }

  .hero-note-bottom {
    right: 0;
    bottom: 12%;
  }

  .ticker-track {
    height: 50px;
  }

  .manifesto-rule {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .manifesto-rule i:last-of-type {
    display: none;
  }

  .section-heading h2,
  .display-heading,
  .instrument-copy h2,
  .company-main h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .path-card,
  .path-card-wide {
    min-height: 490px;
  }

  .path-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .path-copy h3 {
    font-size: 45px;
  }

  .instrument-visual {
    min-height: 650px;
  }

  .phone-stage {
    width: 86vw;
  }

  .phone-stage img {
    max-height: 600px;
  }

  .feature-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .studio-card-look {
    min-height: 680px;
  }

  .look-stage {
    min-height: 500px;
    padding: 14px 14px 0;
  }

  .look-image {
    height: 380px;
  }

  .look-rail {
    gap: 5px;
  }

  .look-rail > span {
    padding: 5px;
    font-size: 6px;
  }

  .look-thumb {
    height: 40px;
  }

  .studio-side {
    grid-template-columns: 1fr;
  }

  .studio-card-layers {
    min-height: 520px;
  }

  .studio-card-modes {
    grid-template-columns: 1fr;
  }

  .capture-control {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .company {
    min-height: 990px;
  }

  .company-mark {
    right: -25vw;
    bottom: -5vw;
    min-width: 340px;
  }

  .company-main > p {
    font-size: 15px;
  }

  .closing {
    min-height: 730px;
  }

  .closing h2 {
    font-size: clamp(62px, 19vw, 90px);
  }

  .closing-lens {
    right: -25vw;
    width: 86vw;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .interior-hero {
    min-height: 550px;
    padding-bottom: 64px;
  }

  .interior-hero h1 {
    font-size: clamp(58px, 19vw, 90px);
  }

  .interior-hero::after {
    right: -15%;
    width: 58vw;
    height: 58vw;
  }

  .legal-layout,
  .support-layout {
    gap: 60px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
