@font-face {
  font-family: Noto;
  src: url("./assets/NotoSansJP-VF.ttf");
  font-display: swap;
}
@font-face {
  font-family: Mono;
  src: url("./assets/DMMono-Regular.ttf");
  font-display: swap;
}

:root {
  --bg: #080b0c;
  --panel: #101516;
  --panel-deep: #050708;
  --text: #f4f6f5;
  --muted: #a8b3b0;
  --rule: #34413f;
  --accent: #64cad6;
  --amber: #f5b83f;
  --shadow: #000a;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Noto, system-ui, sans-serif;
}
html[lang="ko"] body {
  font-family: "Apple SD Gothic Neo", "Malgun Gothic", Noto, system-ui, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff06 1px, transparent 1px);
  background-size: 72px 72px;
}
body:has(.language-welcome[open]) {
  overflow: hidden;
}
html.language-welcome-open body {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
figure {
  margin: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
h1,
h2,
h3,
p,
li,
dt,
dd {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p,
li {
  text-wrap: pretty;
}
html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3,
html[lang="ja"] p,
html[lang="ja"] li,
html[lang="zh-Hans"] p,
html[lang="zh-Hans"] li,
html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] p,
html[lang="ko"] li {
  word-break: auto-phrase;
  line-break: strict;
}
h1 span,
h1 em,
h2 span {
  display: block;
}
html[lang="ja"] .hero h1 span,
html[lang="ja"] .hero h1 em,
html[lang="zh-Hans"] .hero h1 span,
html[lang="zh-Hans"] .hero h1 em,
html[lang="ja"] .section-copy h2 span,
html[lang="zh-Hans"] .section-copy h2 span,
html[lang="ko"] .hero h1 span,
html[lang="ko"] .hero h1 em,
html[lang="ko"] .section-copy h2 span {
  white-space: nowrap;
}
html[lang="zh-Hans"] h1 span,
html[lang="zh-Hans"] h1 em,
html[lang="zh-Hans"] h2 span,
html[lang="ko"] h1 span,
html[lang="ko"] h1 em,
html[lang="ko"] h2 span {
  word-break: keep-all;
  overflow-wrap: normal;
}
html[lang="zh-Hans"] .hero h1 {
  font-size: clamp(56px, 6.3vw, 96px);
}
html[lang="zh-Hans"] .section-copy h2 {
  font-size: clamp(40px, 4.5vw, 64px);
}
html[lang="ko"] .hero h1 {
  font-size: clamp(52px, 6vw, 90px);
}
html[lang="ko"] .section-copy h2 {
  font-size: clamp(38px, 4.2vw, 60px);
}
@media (min-width: 681px) {
  html[lang="en"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1 {
    font-size: clamp(58px, 5.7vw, 82px);
  }
}

.skip-link {
  position: fixed;
  z-index: 99;
  transform: translateY(-150%);
  background: var(--text);
  color: var(--bg);
  padding: 12px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px 32px;
  border-bottom: 1px solid var(--rule);
  background: rgb(8 11 12 / 94%);
  backdrop-filter: blur(16px);
}
.wordmark,
.eyebrow,
.capability-rail b,
.device-grid > article > span {
  font-family: Mono, monospace;
  letter-spacing: 0.15em;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.wordmark-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 7px;
}
.site-header nav {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.site-header nav a:hover {
  color: var(--text);
}
.language-control {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--muted);
  font:
    10px Mono,
    monospace;
  letter-spacing: 0.12em;
}
.language-control select {
  min-height: 40px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: #0d1112;
  color: var(--text);
  padding: 0 30px 0 10px;
  font:
    700 12px Noto,
    sans-serif;
}

.language-welcome {
  width: min(1080px, calc(100vw - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #56625f;
  border-radius: 18px;
  background: #080b0c;
  color: var(--text);
  box-shadow: 0 40px 120px #000d;
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.language-welcome[open] {
  opacity: 1;
  transform: none;
}
.language-welcome.is-closing {
  opacity: 0;
  transform: translateY(8px) scale(0.99);
}
.language-welcome::backdrop {
  background: rgb(3 5 6 / 94%);
  backdrop-filter: blur(12px);
}
.language-welcome__frame {
  position: relative;
  min-height: min(660px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(#ffffff07 1px, transparent 1px),
    linear-gradient(90deg, #ffffff06 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, #172120, #080b0c 58%);
  background-size:
    64px 64px,
    64px 64px,
    auto;
}
.language-welcome__header {
  grid-column: 1 / -1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--rule);
}
.language-welcome__header > span:last-child {
  color: var(--muted);
  font:
    700 10px Mono,
    monospace;
  letter-spacing: 0.12em;
}
.language-welcome__stage,
.language-welcome__picker {
  align-self: stretch;
}
.language-welcome__stage {
  grid-area: 2 / 1;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-right: 1px solid var(--rule);
}
.language-welcome__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 58px clamp(26px, 4vw, 52px) 100px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.language-welcome__slide.is-before {
  transform: translateY(-24px);
}
.language-welcome__slide.is-active {
  opacity: 1;
  transform: none;
}
.language-welcome__slide small,
.language-welcome__picker > p {
  color: var(--accent);
  font:
    700 11px Mono,
    monospace;
  letter-spacing: 0.18em;
}
.language-welcome__slide strong {
  max-width: 520px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.language-welcome__progress {
  position: absolute;
  right: clamp(26px, 4vw, 52px);
  bottom: 54px;
  left: clamp(26px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.language-welcome__progress i {
  height: 2px;
  background: #52605d;
  transition: background-color 180ms ease;
}
.language-welcome__progress i.is-active {
  background: var(--accent);
}
.language-welcome__picker {
  grid-area: 2 / 2;
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 50px clamp(28px, 5vw, 66px) 72px;
}
.language-welcome__picker h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
  word-break: normal;
}
.language-welcome__picker > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.language-welcome__choices {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.language-welcome__choices button {
  min-width: 0;
  min-height: 62px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: #0d1112;
  color: var(--text);
  font:
    750 13px Noto,
    sans-serif;
  cursor: pointer;
  transition:
    border-color 140ms cubic-bezier(0.22, 1, 0.36, 1),
    color 140ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 140ms cubic-bezier(0.22, 1, 0.36, 1);
}
.language-welcome__choices button:first-child {
  grid-column: 1 / -1;
}
.language-welcome__choices button:hover,
.language-welcome__choices button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}
.language-welcome__choices button:active {
  transform: scale(0.98);
}
@starting-style {
  .language-welcome[open] {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
}

.hero {
  position: relative;
  max-width: 1440px;
  min-height: 760px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border-inline: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-copy {
  align-self: center;
  padding: 80px 4vw 100px 6vw;
}
.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}
.hero h1 {
  margin: 28px 0 34px;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}
.hero h1 em {
  color: var(--amber);
  font-style: normal;
}
.lead {
  max-width: 600px;
  color: #c9d0ce;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.85;
}
.actions {
  margin-top: 38px;
}
.button {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}
.button.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  border-block: 1px solid var(--rule);
  color: var(--muted);
  font:
    10px Mono,
    monospace;
}
.hero-facts span {
  padding: 13px 16px;
  border-right: 1px solid var(--rule);
}
.hero-devices {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: radial-gradient(circle at 55% 44%, #1a2424 0, #0b1011 45%, #060809 74%);
}
.hero-devices .tablet {
  position: absolute;
  top: 18%;
  right: 3%;
  width: 94%;
  max-width: 598px;
  filter: drop-shadow(0 35px 60px #000b);
}
.hero-devices .tablet img {
  border: 8px solid #151918;
  border-radius: 28px;
}
.hero-devices .phone {
  position: absolute;
  bottom: 4%;
  left: 4%;
  width: 29%;
  filter: drop-shadow(0 30px 50px #000d);
}
.hero-devices .phone img {
  border: 7px solid #151918;
  border-radius: 36px;
}
.hero-device-stack {
  isolation: isolate;
  /* Match the full iPad Pro landscape capture. */
  aspect-ratio: 1366 / 1024;
}
.hero-device-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Never crop or zoom an actual app capture when its dimensions change. */
  object-fit: contain;
  object-position: center;
  opacity: 0;
  filter: brightness(0.88);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.phone.hero-device-stack {
  /* Match the full smartphone viewport capture. */
  aspect-ratio: 390 / 844;
}
.hero-device-stack img.is-active {
  z-index: 1;
  opacity: 1;
  filter: none;
}
.hero-device-stack img:not(.is-active) {
  pointer-events: none;
}
.proof-label {
  position: absolute;
  right: 30px;
  bottom: 23px;
  color: var(--accent);
  font:
    9px Mono,
    monospace;
  letter-spacing: 0.14em;
}

.capability-rail {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-inline: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.capability-rail div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  padding: 30px;
  border-right: 1px solid var(--rule);
}
.capability-rail div:last-child {
  border: 0;
}
.capability-rail b {
  grid-row: span 2;
  color: var(--accent);
  font-size: 11px;
}
.capability-rail strong {
  font-size: 15px;
}
.capability-rail span {
  color: var(--muted);
  font-size: 11px;
}

.product,
.modes,
.lav-section,
.devices,
.pricing,
.availability {
  max-width: 1440px;
  margin: auto;
  border-inline: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-copy {
  max-width: 900px;
  padding: 118px 7vw 64px;
}
.section-copy h2,
.availability h2 {
  margin: 20px 0 24px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.14;
  letter-spacing: -0.055em;
}
.section-copy > p:last-child,
.availability p {
  color: var(--muted);
  line-height: 1.9;
}
.wide-screen {
  width: fit-content;
  max-width: calc(100% - 10vw);
  margin: 0 auto 100px;
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 10px;
  background: #060808;
  box-shadow: 0 35px 90px var(--shadow);
  overflow: hidden;
}
.wide-screen img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(760px, 78vh);
  object-fit: contain;
  border-radius: 16px;
}

.lav-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
}
.lav-visual {
  min-height: 680px;
  overflow: hidden;
  background: #f5f4ef;
  border-right: 1px solid var(--rule);
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 44px);
}
.lav-reel {
  width: min(720px, 100%);
  height: 610px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid #aeb4b2;
  border-radius: 22px;
  background: #f7f6f1;
  color: #151819;
  box-shadow: 0 32px 80px #0005;
}
.lav-reel__header,
.lav-reel__footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border-bottom: 1px solid #b7bcba;
  color: #59605f;
  font:
    700 10px Mono,
    monospace;
  letter-spacing: 0.13em;
}
.lav-reel__footer {
  border-top: 1px solid #b7bcba;
  border-bottom: 0;
  color: #7c4a00;
}
.lav-reel__viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
}
.lav-reel__track {
  will-change: transform;
  animation: lav-reel-down 28s linear infinite;
  animation-play-state: paused;
}
.lav-reel.is-active .lav-reel__track {
  animation-play-state: running;
}
.lav-reel:hover .lav-reel__track {
  animation-play-state: paused;
}
.lav-reel__set {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lav-reel__row {
  --lav-color: #7d8381;
  min-height: 68px;
  display: grid;
  grid-template-columns: 12px 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin: 0 20px;
  border-bottom: 1px solid #d3d6d4;
}
.lav-reel__color-bar {
  align-self: stretch;
  margin-block: 10px;
  border: 1px solid #0003;
  border-radius: 6px;
  background: var(--lav-color);
  box-shadow:
    0 0 0 3px #00000012,
    0 0 18px color-mix(in srgb, var(--lav-color) 45%, transparent);
}
.lav-reel__number {
  color: #151819;
  font:
    700 23px Mono,
    monospace;
  font-variant-numeric: tabular-nums;
}
.lav-reel__identity {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.lav-reel__identity strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lav-reel__identity small {
  color: #69706e;
  font-size: 10px;
  font-weight: 800;
}
.lav-reel__color-name {
  min-width: 76px;
  padding: 7px 9px;
  border: 2px solid var(--lav-color);
  border-radius: 7px;
  color: #252a29;
  font:
    700 10px Mono,
    monospace;
  text-align: center;
}
@keyframes lav-reel-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.lav-section .section-copy {
  align-self: center;
  padding: 72px 5vw;
}
.lav-section .section-copy h2 {
  font-size: clamp(34px, 3.25vw, 46px);
}
html[lang="zh-Hans"] .lav-section .section-copy h2 {
  font-size: clamp(34px, 3.25vw, 46px);
}
.lav-section dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-block: 1px solid var(--rule);
}
.lav-section dl div {
  padding: 18px;
  border-right: 1px solid var(--rule);
}
.lav-section dl div:last-child {
  border: 0;
}
.lav-section dt {
  color: var(--muted);
  font-size: 10px;
}
.lav-section dd {
  margin: 8px 0 0;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 850;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.modes {
  padding-bottom: 100px;
}
.mode-demo {
  position: relative;
  margin: 0 5vw;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #070a0b;
  color: #f3f5f4;
}
.mode-demo__header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid currentColor;
}
.mode-demo__header > div:first-child {
  display: grid;
  gap: 4px;
}
.mode-demo__header span {
  font:
    10px Mono,
    monospace;
  letter-spacing: 0.14em;
}
.mode-demo__header strong {
  font-size: 18px;
}
.mode-demo__controls {
  display: flex;
  gap: 8px;
}
.mode-demo__controls button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font:
    800 12px Noto,
    sans-serif;
  cursor: pointer;
}
.mode-demo__controls button[aria-pressed="true"] {
  border-color: #edf3f1;
  background: #edf3f1;
  color: #070a0b;
}
.mode-demo[data-mode="night"] .mode-demo__controls button[aria-pressed="true"] {
  border-color: var(--amber);
  background: var(--amber);
  color: #070a0b;
}
.mode-demo__screen {
  position: relative;
  height: min(620px, 70vw);
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 28px;
}
.mode-demo__screen img {
  position: absolute;
  height: calc(100% - 56px);
  width: auto;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  border-radius: 28px;
  border: 6px solid #101313;
  box-shadow: 0 34px 80px #0008;
  transition:
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.mode-demo__screen img.is-active {
  opacity: 1;
  transform: none;
}

.devices {
  padding: 0 4vw 100px;
}
.devices > .section-copy {
  padding-inline: 2vw;
}
.device-grid {
  display: grid;
  border: 1px solid var(--rule);
}
.device-grid article {
  min-width: 0;
  padding: 32px;
  overflow: hidden;
}
.device-grid > article > span {
  color: var(--accent);
  font-size: 9px;
}
.device-grid h3 {
  margin: 22px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
}
.device-grid article > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.device-shot,
.watch {
  height: 430px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.phone-shot img {
  height: 100%;
  width: auto;
  border: 6px solid #171b1a;
  border-radius: 32px;
}
.tablet-shot img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border: 6px solid #171b1a;
  border-radius: 18px;
}
.watch-screen {
  width: 290px;
  aspect-ratio: 0.95;
  border: 10px solid #222;
  border-radius: 64px;
  background: #f5f4ef;
  color: #17191a;
  padding: 18px 22px;
  box-shadow: 0 25px 60px var(--shadow);
}
.watch-screen small {
  color: #8a4f00;
  font:
    9px Mono,
    monospace;
}
.watch-screen b {
  display: block;
  margin-top: 8px;
  color: #8a4f00;
}
.watch-screen time {
  display: block;
  margin: 3px 0;
  font:
    38px Mono,
    monospace;
}
.watch-screen p,
.watch-screen i {
  display: block;
  font-size: 11px;
  font-style: normal;
  line-height: 1.8;
}
.watch-impact {
  margin: 6px 0;
  padding: 6px 9px;
  border-radius: 10px;
  background: #17191a0d;
}
.watch-impact p {
  margin: 0;
  color: #555a5c;
  font-size: 9px;
  font-weight: 700;
}
.watch-roster {
  display: grid;
  gap: 3px;
}
.watch-roster header {
  display: flex;
  justify-content: space-between;
  color: #555a5c;
  font-size: 8px;
  font-weight: 800;
}
.watch-roster header strong {
  color: #8a4f00;
}
.watch-roster > div {
  display: grid;
  grid-template-columns: 6px 27px 1fr;
  align-items: center;
  gap: 6px;
  padding: 3px 5px;
  border-radius: 9px;
  background: #17191a0d;
}
.watch-roster u {
  align-self: stretch;
  border-radius: 3px;
  background: var(--watch-lav);
}
.watch-roster em {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: #8a4f00;
  color: #fff;
  font:
    800 9px Mono,
    monospace;
  font-style: normal;
}
.watch-roster i {
  font-weight: 800;
  line-height: 1.15;
}
.watch-roster i small {
  display: block;
  margin-top: 2px;
  color: #555a5c;
  font-size: 7px;
  font-family: inherit;
}

.pricing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  background:
    linear-gradient(90deg, transparent 49.92%, var(--rule) 50%, transparent 50.08%), var(--panel);
}
.pricing-copy {
  min-width: 0;
  align-self: center;
  padding: 110px 5vw 110px 7vw;
}
.pricing-copy h2 {
  margin: 20px 0 28px;
  max-width: 10em;
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  color: var(--amber);
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}
html[lang="ja"] .pricing-copy h2,
html[lang="zh-Hans"] .pricing-copy h2,
html[lang="ko"] .pricing-copy h2 {
  max-width: none;
  white-space: nowrap;
}
html[lang="ja"] .pricing-copy h2 {
  font-size: clamp(32px, 2.45vw, 36px);
}
html[lang="ja"] .product .section-copy h2 {
  font-size: clamp(36px, 4.2vw, 60px);
}
.pricing-copy > p:last-child {
  max-width: 510px;
  color: var(--muted);
  line-height: 1.9;
  text-wrap: balance;
}
.pricing-ledger {
  align-self: center;
  margin: 72px 5vw 72px 3vw;
  border: 1px solid var(--rule);
  background:
    linear-gradient(#ffffff06 1px, transparent 1px),
    linear-gradient(90deg, #ffffff06 1px, transparent 1px), #090d0e;
  background-size: 52px 52px;
  box-shadow: 0 34px 80px var(--shadow);
}
.pricing-ledger > header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  border-bottom: 1px solid var(--rule);
  color: var(--accent);
  font:
    700 10px Mono,
    monospace;
  letter-spacing: 0.14em;
}
.pricing-ledger > header strong {
  color: var(--amber);
  font: inherit;
}
.pricing-ledger__tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--rule);
}
.pricing-tier {
  min-width: 0;
}
.pricing-tier + .pricing-tier {
  border-left: 1px solid var(--rule);
}
.pricing-tier > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--rule);
}
.pricing-tier > header strong {
  font-size: 15px;
}
.pricing-tier > header span {
  color: var(--muted);
  font:
    700 8px Mono,
    monospace;
  letter-spacing: 0.08em;
  text-align: right;
}
.pricing-tier--team > header strong,
.pricing-tier--team .pricing-ledger__price > span {
  color: var(--amber);
}
.pricing-ledger__price {
  min-height: 168px;
  display: grid;
  grid-template-columns: auto auto minmax(70px, 1fr);
  align-items: end;
  column-gap: 5px;
  padding: 28px 20px 24px;
  font-variant-numeric: tabular-nums;
}
.pricing-ledger__price > span {
  align-self: start;
  padding-top: 18px;
  color: var(--amber);
  font:
    700 clamp(22px, 2vw, 34px) Mono,
    monospace;
}
.pricing-ledger__price > strong {
  color: var(--text);
  font:
    760 clamp(48px, 5.2vw, 78px) / 0.82 Mono,
    monospace;
  letter-spacing: -0.09em;
}
.pricing-ledger__price > div {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 0 0 5px 7px;
}
.pricing-ledger__price b {
  font-size: 13px;
  white-space: nowrap;
}
.pricing-ledger__price small {
  color: var(--muted);
  font-size: 9px;
  text-wrap: balance;
}
html[lang="fr"] .pricing-ledger__price > strong,
html[lang="de"] .pricing-ledger__price > strong {
  order: 1;
}
html[lang="fr"] .pricing-ledger__price > span,
html[lang="de"] .pricing-ledger__price > span {
  order: 2;
  align-self: end;
  padding-block: 0 5px;
}
html[lang="fr"] .pricing-ledger__price > div,
html[lang="de"] .pricing-ledger__price > div {
  order: 3;
}
.pricing-ledger__trial {
  display: grid;
  grid-template-columns: minmax(110px, 0.36fr) 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--rule);
  background: var(--amber);
  color: #111415;
}
.pricing-ledger__trial span {
  font:
    800 9px Mono,
    monospace;
  letter-spacing: 0.13em;
}
.pricing-ledger__trial strong {
  font-size: clamp(18px, 2.1vw, 30px);
  letter-spacing: -0.035em;
  text-wrap: pretty;
}
.pricing-ledger ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-ledger li {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 24px 12px 54px;
  border-bottom: 1px solid var(--rule);
  color: #d8dddb;
  font-size: 12px;
  line-height: 1.55;
}
.pricing-ledger li::before {
  position: absolute;
  left: 24px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  content: "";
}
.pricing-ledger > footer {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px;
  color: var(--muted);
}
.pricing-ledger > footer p {
  max-width: 630px;
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
}
.pricing-ledger > footer .button {
  white-space: nowrap;
}

.availability {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  padding: 110px 7vw;
  background: var(--panel);
}
.release-panel {
  align-self: center;
  border-top: 1px solid var(--rule);
}
.release-panel > div:not(.download-actions) {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
}
.release-panel strong {
  color: var(--amber);
}
.release-panel p {
  font-size: 10px;
}
.release-panel .watch-download-note {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 140px;
  padding: 30px 34px;
  color: var(--muted);
}
footer p {
  margin: 0;
  font-size: 12px;
}
footer small {
  text-align: right;
  font-size: 9px;
}
.footer-legal {
  grid-column: 1 / -1;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 10px;
}
.footer-legal a {
  color: inherit;
  text-underline-offset: 3px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-devices {
    min-height: 610px;
  }
  .hero-devices .tablet {
    right: 3%;
    width: 94%;
  }
  .lav-section {
    grid-template-columns: 1fr;
  }
  .lav-visual {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .availability {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: minmax(0, 1fr);
    background: var(--panel);
  }
  .pricing-copy {
    padding-bottom: 30px;
  }
  .pricing-ledger {
    min-width: 0;
    margin: 22px 5vw 80px;
  }
  .capability-rail {
    grid-template-columns: 1fr;
  }
  .capability-rail div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
}

@media (min-width: 681px) and (max-width: 1040px) {
  .hero {
    min-height: 0;
  }
  .hero-copy {
    padding: 72px 6vw 56px;
  }
  .hero-devices {
    min-height: 560px;
  }
  .hero-devices .tablet {
    top: 42px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
    padding: 8px 16px;
  }
  .language-control > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .language-control select {
    max-width: 120px;
  }
  .language-welcome {
    width: calc(100vw - 20px);
    border-radius: 14px;
  }
  .language-welcome__frame {
    min-height: calc(100vh - 20px);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(190px, 1fr);
  }
  .language-welcome__header {
    min-height: 62px;
    padding-inline: 16px;
  }
  .language-welcome__header > span:last-child {
    max-width: 170px;
    text-align: right;
    line-height: 1.5;
  }
  .language-welcome__picker {
    grid-area: 2 / 1;
    align-content: start;
    padding: 28px 22px 30px;
    border-bottom: 1px solid var(--rule);
  }
  .language-welcome__stage {
    grid-area: 3 / 1;
    min-height: 190px;
    border-right: 0;
  }
  .language-welcome__slide {
    padding: 28px 22px 50px;
  }
  .language-welcome__slide strong {
    font-size: clamp(30px, 9vw, 42px);
  }
  .language-welcome__picker h2 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .language-welcome__progress {
    bottom: 24px;
    right: 22px;
    left: 22px;
  }
  .language-welcome__choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .language-welcome__choices button:first-child {
    grid-column: 1 / -1;
  }
  .hero {
    min-height: 0;
  }
  .hero-copy {
    padding: 36px 20px 22px;
  }
  .hero h1 {
    margin: 18px 0 20px;
    font-size: clamp(43px, 13vw, 54px);
  }
  .lead {
    margin-block: 0;
    font-size: 14px;
    line-height: 1.7;
  }
  .actions {
    margin-top: 22px;
  }
  .hero-devices {
    min-height: 390px;
    border-top: 1px solid var(--rule);
  }
  .hero-devices .tablet {
    top: 34px;
    right: 4%;
    width: 92%;
  }
  .hero-devices .phone {
    bottom: 12px;
    left: 5%;
    width: 32%;
  }
  .hero-facts {
    display: none;
  }
  .section-copy {
    padding: 86px 20px 48px;
  }
  .section-copy h2,
  .availability h2 {
    font-size: 11.5vw;
  }
  html[lang="ja"] .product .section-copy h2,
  html[lang="ja"] .modes .section-copy h2 {
    font-size: clamp(25px, 6.8vw, 34px);
  }
  html[lang="zh-Hans"] .section-copy h2 {
    font-size: clamp(34px, 10vw, 40px);
  }
  html[lang="ko"] .section-copy h2 {
    font-size: clamp(30px, 8.6vw, 38px);
  }
  html[lang="en"] .hero h1,
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }
  html[lang="en"] .section-copy h2,
  html[lang="fr"] .section-copy h2,
  html[lang="de"] .section-copy h2 {
    font-size: clamp(30px, 8.2vw, 40px);
    line-height: 1.16;
  }
  .wide-screen {
    margin: 0 12px 76px;
    padding: 5px;
    border-radius: 14px;
  }
  .lav-visual {
    min-height: 520px;
    padding: 14px;
  }
  .lav-reel {
    height: 490px;
    border-radius: 16px;
  }
  .lav-reel__header,
  .lav-reel__footer {
    padding-inline: 14px;
  }
  .lav-reel__row {
    min-height: 62px;
    grid-template-columns: 7px 44px minmax(0, 1fr) auto;
    gap: 10px;
    margin-inline: 13px;
  }
  .lav-reel__number {
    font-size: 19px;
  }
  .lav-reel__color-name {
    min-width: 58px;
    padding-inline: 6px;
    font-size: 9px;
  }
  .lav-section .section-copy {
    padding: 68px 20px;
  }
  .lav-section dl {
    grid-template-columns: 1fr;
  }
  .lav-section dl div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .mode-demo {
    margin: 0 12px;
  }
  .mode-demo__header {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }
  .mode-demo__controls button {
    flex: 1;
  }
  .mode-demo__screen {
    height: 490px;
    min-height: 0;
    padding: 18px;
  }
  .mode-demo__screen img {
    height: calc(100% - 36px);
  }
  .devices {
    padding: 0 12px 76px;
  }
  .device-grid article {
    padding: 26px;
  }
  .device-shot,
  .watch {
    height: 390px;
  }
  .availability {
    padding: 78px 20px;
  }
  .pricing-copy {
    padding: 82px 20px 24px;
  }
  .pricing-copy h2 {
    font-size: clamp(30px, 10.5vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.045em;
  }
  html[lang="ja"] .pricing-copy h2 {
    font-size: clamp(24px, 7.4vw, 34px);
  }
  html[lang="zh-Hans"] .pricing-copy h2 {
    font-size: clamp(30px, 10vw, 44px);
  }
  html[lang="ko"] .pricing-copy h2 {
    font-size: clamp(27px, 8.4vw, 38px);
  }
  .pricing-ledger {
    margin: 22px 12px 72px;
  }
  .pricing-ledger > header {
    padding-inline: 16px;
  }
  .pricing-ledger__tiers {
    grid-template-columns: 1fr;
  }
  .pricing-tier + .pricing-tier {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }
  .pricing-ledger__price {
    min-height: 170px;
    grid-template-columns: auto auto minmax(0, 1fr);
    padding: 28px 16px 24px;
  }
  .pricing-ledger__price > strong {
    font-size: clamp(70px, 24vw, 104px);
  }
  .pricing-ledger__price > div {
    padding-left: 6px;
  }
  .pricing-ledger__trial {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-inline: 16px;
  }
  .pricing-ledger li {
    padding-inline: 46px 16px;
  }
  .pricing-ledger li::before {
    left: 18px;
  }
  .pricing-ledger > footer {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 20px 16px;
  }
  .pricing-ledger > footer p {
    font-size: 12px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  footer small {
    text-align: left;
  }
  .footer-legal {
    justify-self: start;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  .hero-copy {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .hero-copy .lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .hero-copy .actions {
    margin-top: 12px;
  }
  .hero-copy .button {
    min-height: 40px;
    padding-inline: 16px;
  }
  .hero-devices .tablet {
    top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .lav-reel__track {
    animation: none !important;
    transform: translateY(0) !important;
  }
  .lav-reel__set[aria-hidden="true"] {
    display: none;
  }
  .language-welcome,
  .language-welcome__stage,
  .language-welcome__slide,
  .language-welcome__picker,
  .language-welcome__choices button {
    transition: none !important;
  }
  .language-welcome__picker {
    opacity: 1;
    transform: none;
  }
}

/* SOUND COMPASS / SIGNAL DECK — project design contract: ../../DESIGN.md */
:root {
  --bg: #070a0b;
  --panel: #0d1213;
  --panel-deep: #050708;
  --text: #f4f3ef;
  --muted: #aab3b1;
  --rule: #2c3635;
  --rule-strong: #43514f;
  --accent: #62c8d4;
  --amber: #ffb21a;
  --green: #67d49d;
  --shadow: #000b;
}

body::before {
  background:
    linear-gradient(#ffffff07 1px, transparent 1px),
    linear-gradient(90deg, #ffffff06 1px, transparent 1px);
  background-size: 96px 96px;
}

.site-header {
  min-height: 68px;
  padding-inline: clamp(20px, 3vw, 48px);
  border-color: var(--rule);
  background: rgb(7 10 11 / 96%);
  backdrop-filter: blur(12px);
}
.wordmark-icon {
  border-radius: 5px;
}
.site-header nav a {
  position: relative;
  padding-block: 9px;
  transition: color 140ms ease;
}
.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}
.language-control select {
  border-radius: 4px;
  background: var(--panel);
}

.language-welcome {
  border-color: var(--rule-strong);
  border-radius: 10px;
  background: var(--bg);
}
.language-welcome__frame {
  background:
    linear-gradient(#ffffff07 1px, transparent 1px),
    linear-gradient(90deg, #ffffff06 1px, transparent 1px), var(--bg);
  background-size: 96px 96px;
}
.language-welcome__stage {
  background: linear-gradient(135deg, rgb(98 200 212 / 7%), transparent 58%);
}
.language-welcome__choices button {
  border-radius: 4px;
  background: var(--panel);
}
.language-welcome__progress i {
  background: var(--rule-strong);
}
.language-welcome__picker > span {
  font-size: 12px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero,
.capability-rail,
.product,
.modes,
.lav-section,
.devices,
.pricing,
.availability {
  max-width: 1600px;
}
.hero {
  min-height: 780px;
  grid-template-columns: minmax(470px, 0.82fr) minmax(620px, 1.18fr);
}
.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 3px;
  background: linear-gradient(var(--accent) 0 18%, var(--amber) 18% 66%, transparent 66%);
  content: "";
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 86px clamp(42px, 4.8vw, 76px) 94px;
}
.hero h1 {
  margin-block: 30px 32px;
  max-width: 8.6em;
  font-size: clamp(64px, 6.4vw, 102px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.lead {
  max-width: 590px;
  color: #c8d0ce;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.9;
}
.button {
  min-height: 48px;
  border-radius: 4px;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  border-color: var(--amber);
  background: var(--amber);
  color: #111415;
}
.hero-facts {
  margin-top: 46px;
  border-color: var(--rule-strong);
}
.hero-facts span {
  flex: 1;
  padding-inline: 12px;
  text-align: center;
}
.hero-devices {
  min-height: 780px;
  border-left: 1px solid var(--rule);
  background: linear-gradient(145deg, rgb(98 200 212 / 7%), transparent 42%), var(--panel-deep);
}
.hero-devices::before {
  position: absolute;
  inset: 8% 7%;
  border: 1px solid var(--rule);
  content: "";
}
.hero-devices .tablet {
  top: 16%;
  right: 3%;
  width: 92%;
  max-width: 690px;
}
.hero-devices .tablet img,
.hero-devices .phone img {
  border-color: #151b1b;
}
.hero-devices .tablet img {
  border-width: 7px;
  border-radius: 16px;
}
.hero-devices .phone {
  bottom: 5%;
  left: 5%;
  width: 27%;
}
.hero-devices .phone img {
  border-width: 6px;
  border-radius: 26px;
}
.proof-label {
  right: 26px;
  bottom: 20px;
}

.capability-rail {
  border-color: var(--rule-strong);
}
.capability-rail div {
  position: relative;
  min-height: 112px;
  align-content: center;
  padding: 26px 28px;
}
.capability-rail div::before {
  position: absolute;
  top: -1px;
  left: 28px;
  width: 32px;
  height: 2px;
  background: var(--accent);
  content: "";
}
.capability-rail b {
  color: var(--muted);
}
.capability-rail strong {
  font-size: 16px;
}

.section-copy {
  padding-block: 126px 66px;
}
.section-copy h2,
.availability h2 {
  max-width: 13em;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.08;
}
.section-copy > p:last-child,
.availability p {
  max-width: 670px;
  font-size: 16px;
  line-height: 1.95;
}
.wide-screen {
  max-width: calc(100% - 8vw);
  margin-bottom: 110px;
  border-color: var(--rule-strong);
  border-radius: 12px;
  padding: 8px;
  background: #040607;
}
.wide-screen img {
  border-radius: 6px;
}

.lav-visual {
  background: #ece9e0;
}
.lav-reel {
  border-radius: 10px;
  box-shadow: 0 28px 72px #0004;
}
.lav-reel__color-bar,
.lav-reel__color-name {
  border-radius: 3px;
}
.lav-reel__color-bar {
  box-shadow: none;
}
.lav-section dl div {
  padding: 18px 14px;
}

.mode-demo {
  border-color: var(--rule-strong);
}
.mode-demo__header {
  border-color: var(--rule-strong);
}
.mode-demo__controls button {
  border-radius: 4px;
}
.mode-demo__screen img {
  border-radius: 22px;
  border-width: 5px;
}

.device-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: var(--rule-strong);
}
.device-grid article + article {
  border-left: 1px solid var(--rule);
}
.device-grid article {
  padding: 28px;
}
.phone-shot img {
  border-radius: 24px;
}
.tablet-shot img {
  border-radius: 10px;
}
.watch-screen {
  width: 278px;
  border-radius: 58px;
}

.pricing {
  background: var(--panel);
}
.pricing-ledger {
  border-color: var(--rule-strong);
  background: #090d0e;
  background-image: none;
  box-shadow: 0 28px 72px var(--shadow);
}
.pricing-ledger__trial {
  background: var(--amber);
}
.pricing-ledger li::before {
  width: 7px;
  height: 7px;
  border: 0;
  background: var(--accent);
}
.release-panel {
  border-color: var(--rule-strong);
}

.reveal {
  transform: translateY(14px);
  transition: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
:focus-visible {
  outline-width: 2px;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-devices {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }
  .device-grid {
    grid-template-columns: 1fr;
  }
  .device-grid article + article {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  body::before {
    background-size: 72px 72px;
  }
  .site-header {
    min-height: 60px;
    padding-inline: 14px;
  }
  .wordmark {
    font-size: 11px;
  }
  .wordmark-icon {
    width: 28px;
    height: 28px;
  }
  .language-welcome {
    border-radius: 8px;
  }
  .language-welcome__frame {
    background-size: 72px 72px;
  }
  .language-welcome__picker > span {
    white-space: normal;
  }
  .hero-copy {
    padding: 32px 20px 22px;
  }
  .hero h1 {
    margin-block: 16px 18px;
    max-width: 100%;
    font-size: clamp(42px, 13.2vw, 56px);
  }
  .lead {
    font-size: 14px;
    line-height: 1.72;
  }
  .actions {
    margin-top: 18px;
  }
  .hero-devices {
    min-height: 372px;
  }
  .hero-devices::before {
    inset: 7% 5%;
  }
  .hero-devices .tablet {
    top: 26px;
    width: 94%;
  }
  .hero-devices .phone {
    bottom: 9px;
    left: 4%;
    width: 31%;
  }
  .hero-devices .tablet img {
    border-width: 4px;
    border-radius: 9px;
  }
  .hero-devices .phone img {
    border-width: 4px;
    border-radius: 18px;
  }
  .capability-rail div {
    min-height: 88px;
    padding: 22px 20px;
  }
  .capability-rail div::before {
    left: 20px;
  }
  .section-copy {
    padding: 82px 20px 44px;
  }
  .section-copy > p:last-child,
  .availability p {
    font-size: 14px;
  }
  .wide-screen {
    max-width: none;
    border-radius: 8px;
  }
  .wide-screen img {
    border-radius: 3px;
  }
  .lav-reel {
    border-radius: 8px;
  }
  .mode-demo__screen img {
    border-radius: 19px;
  }
  .device-grid article {
    padding: 22px;
  }
}
