@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400..700&display=swap");

@font-face {
  font-family: "Manrope Fallback";
  src: local("Arial"), local("Helvetica Neue");
  size-adjust: 104%;
  ascent-override: 98%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  color-scheme: light dark;
  --canvas: oklch(.975 .006 260);
  --surface: oklch(1 0 0);
  --surface-alt: oklch(.947 .018 250);
  --ink: oklch(.174 .043 265);
  --muted: oklch(.42 .038 260);
  --line: oklch(.86 .018 255);
  --blue: oklch(.49 .19 263);
  --blue-bright: oklch(.62 .17 258);
  --blue-wash: oklch(.94 .03 258);
  --on-primary: var(--canvas);
  --focus: var(--blue);
  --mint: oklch(.79 .105 162);
  --mint-deep: oklch(.47 .12 163);
  --shadow: 0 10px 28px oklch(.25 .05 265 / .08);
  --max: 1180px;
  --space-xs: .5rem;
  --space-sm: .75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);
  --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --z-skip: 20;
  --font: "Manrope", "Manrope Fallback", ui-sans-serif, sans-serif;
  --text-caption: .875rem;
  --text-ui: .875rem;
  --text-body: 1rem;
  --text-lede: 1.25rem;
  --text-subhead: 1.25rem;
  --text-title: clamp(1.563rem, 2.4vw, 1.953rem);
  --text-display: clamp(2.25rem, 4vw, 3rem);
  --leading-display: 1.16;
  --leading-body: 1.6;
  --tracking-display: -.03em;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

:root[data-theme="dark"] {
  --canvas: oklch(.145 .026 264);
  --surface: oklch(.19 .03 264);
  --surface-alt: oklch(.23 .037 264);
  --ink: oklch(.955 .012 260);
  --muted: oklch(.78 .028 260);
  --line: oklch(.34 .03 265);
  --blue: oklch(.72 .15 257);
  --blue-bright: oklch(.72 .15 257);
  --blue-wash: oklch(.2 .04 260);
  --mint: oklch(.69 .125 162);
  --mint-deep: oklch(.78 .13 162);
  --shadow: 0 12px 32px oklch(0 0 0 / .28);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
select:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible,
button:focus-visible,
select:focus-visible:not(#language-select),
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: var(--leading-body);
  transition: background .28s var(--ease), color .28s var(--ease);
}
:root[data-theme="dark"] body {
  line-height: 1.68;
  letter-spacing: .01em;
}
a { color: inherit; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: var(--z-skip);
  transform: translateY(-160%);
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--canvas);
  font-weight: var(--weight-bold);
  text-decoration: none;
  transition: transform 220ms var(--ease-out-quint);
}
.skip-link:focus,
.skip-link:focus-visible { transform: none; }

.site-header { position: relative; z-index: 5; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: var(--weight-bold) var(--text-body)/1 var(--font);
  letter-spacing: var(--tracking-display);
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: var(--text-ui);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color 180ms var(--ease-out-quart);
}
.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--blue); }
.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: var(--weight-semibold);
}

.controls {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.language { display: flex; align-items: center; position: relative; }
.language select,
.theme-toggle {
  min-height: 44px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  font: var(--weight-medium) var(--text-ui)/1 var(--font);
}
.language select,
#language-select {
  width: auto;
  max-width: 12.5rem;
  padding: 0 28px 0 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  outline-offset: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.language::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
}
.language select:focus,
.language select:focus-visible,
#language-select:focus,
#language-select:focus-visible {
  outline: none;
  outline-offset: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.theme-toggle {
  width: 44px;
  padding: 0;
  border-left: 1px solid var(--line);
  border-radius: 0 11px 11px 0;
  cursor: pointer;
  font-size: 1rem;
  transition: background 180ms var(--ease-out-quart), color 180ms var(--ease-out-quart), transform 120ms var(--ease-out-quart);
}
.theme-toggle:hover {
  background: var(--blue-wash);
  color: var(--blue);
}
.theme-toggle:active { transform: scale(.96); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
  text-wrap: balance;
}
:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3 { letter-spacing: -.02em; }

.hero {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: clamp(30px, 7vw, 94px);
  padding: clamp(50px, 9vw, 116px) 0 clamp(64px, 9vw, 116px);
}
.overline {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--text-ui);
  font-weight: var(--weight-medium);
  letter-spacing: 0;
  text-transform: none;
}
.hero h1 {
  max-width: 11em;
  font-size: var(--text-display);
  text-wrap: pretty;
}
.hero-lede {
  max-width: 34ch;
  margin: 24px 0;
  color: var(--muted);
  font-size: var(--text-lede);
  line-height: 1.5;
  text-wrap: pretty;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
}
.button-primary[role="status"] { cursor: default; }
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: var(--text-ui);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color 180ms var(--ease-out-quart);
}
.text-link:hover,
.text-link:focus-visible { color: var(--blue); }
.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: var(--weight-semibold) var(--text-body)/1 var(--font);
  text-decoration: none;
  transition: background 180ms var(--ease-out-quart), border-color 180ms var(--ease-out-quart), color 180ms var(--ease-out-quart), transform 120ms var(--ease-out-quart);
}
.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--on-primary);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: color-mix(in oklab, var(--blue) 88%, var(--ink));
  border-color: color-mix(in oklab, var(--blue) 88%, var(--ink));
}
.button:not([role="status"]):active { transform: scale(.98); }
.button-quiet { background: var(--surface); }
.button-quiet:hover,
.button-quiet:focus-visible { background: var(--blue-wash); }
.availability {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--text-caption);
  font-weight: var(--weight-medium);
}

.hero-art {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-height: 570px;
  overflow: visible;
  container-type: inline-size;
}
.video-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 338px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--surface);
  box-shadow: var(--shadow);
  contain: paint;
}
.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  background: var(--surface-alt);
}
.video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
  border-radius: 50%;
  background: var(--ink);
  color: var(--canvas);
  font-size: .88rem;
  cursor: pointer;
  transition: background 180ms var(--ease-out-quart), transform 120ms var(--ease-out-quart);
}
.video-toggle:active { transform: scale(.94); }
.video-toggle:hover {
  background: color-mix(in oklab, var(--ink) 86%, var(--canvas));
}
.video-toggle:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.screen-carousel {
  --card-w: min(248px, 38cqi);
  --shift: 76%;
  --side-scale: .85;
  --side-opacity: .48;
  --off-shift: 132%;
  --off-scale: .82;
  --z-carousel-off: 1;
  --z-carousel-side: 2;
  --z-carousel-center: 4;
  --carousel-move: 860ms var(--ease-out-quint);
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--card-w) * 2.62));
  height: calc(var(--card-w) * 19.5 / 9 + 28px);
  overflow: visible;
  background: transparent;
}
.screen-carousel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7%;
  z-index: 0;
  width: 36%;
  height: 9%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 18px 36px 2px oklch(.25 .04 265 / .06);
}
:root[data-theme="dark"] .screen-carousel::after {
  box-shadow: 0 18px 36px 2px oklch(0 0 0 / .16);
}
.screen-carousel.is-animating .carousel-screen {
  will-change: transform, opacity;
}
.carousel-screen {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: var(--card-w);
  height: calc(var(--card-w) * 19.5 / 9);
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-alt);
  box-shadow: none;
  pointer-events: none;
  transform-origin: center center;
  transition: transform var(--carousel-move), opacity var(--carousel-move);
}
.carousel-screen.is-center {
  z-index: var(--z-carousel-center);
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}
.carousel-screen.is-left {
  z-index: var(--z-carousel-side);
  opacity: var(--side-opacity);
  transform: translate3d(calc(-50% - var(--shift)), -50%, 0) scale(var(--side-scale));
}
.carousel-screen.is-right {
  z-index: var(--z-carousel-side);
  opacity: var(--side-opacity);
  transform: translate3d(calc(-50% + var(--shift)), -50%, 0) scale(var(--side-scale));
}
.carousel-screen.is-exit {
  z-index: var(--z-carousel-off);
  opacity: 0;
  transform: translate3d(calc(-50% + var(--off-shift)), -50%, 0) scale(var(--off-scale));
}
.carousel-screen.is-wait {
  z-index: var(--z-carousel-off);
  opacity: 0;
  transform: translate3d(calc(-50% - var(--off-shift)), -50%, 0) scale(var(--off-scale));
}
.carousel-screen.is-settle {
  visibility: hidden;
  pointer-events: none;
  transition: none !important;
}
.carousel-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
}
.carousel-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--ink) 28%, transparent);
  transition: background 260ms var(--ease-out-quart), transform 260ms var(--ease-out-quart);
}
.carousel-dots span.is-active { background: var(--blue); transform: scale(1.25); }

.quiet-band { background: var(--ink); color: var(--canvas); }
.quiet-band-inner { padding: clamp(52px, 7vw, 88px) 0; }
.story-copy {
  max-width: 32rem;
  margin: 0;
  font: var(--weight-medium) var(--text-title) / 1.42 var(--font);
  letter-spacing: -.02em;
  text-wrap: pretty;
}
:root[data-theme="dark"] .story-copy,
.quiet-band .story-copy {
  letter-spacing: .01em;
  line-height: 1.48;
}

.features { padding: clamp(82px, 12vw, 140px) 0 clamp(70px, 10vw, 120px); }
.section-intro {
  display: grid;
  grid-template-columns: minmax(12rem, 22rem) minmax(0, 1fr);
  column-gap: clamp(var(--space-lg), 5vw, var(--space-3xl));
  align-items: baseline;
}
.section-intro h2 {
  grid-column: 1;
  margin-bottom: 0;
  font-size: var(--text-title);
}
.section-intro > p {
  grid-column: 2;
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lede);
  text-wrap: pretty;
}
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 7vw, 110px);
  align-items: center;
  margin-top: clamp(var(--space-2xl), 6vw, 5rem);
}
.feature-copy article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.feature-copy article:nth-child(1) { --i: 0; }
.feature-copy article:nth-child(2) { --i: 1; }
.feature-copy article:nth-child(3) { --i: 2; }
.feature-copy article:nth-child(4) { --i: 3; }
.feature-copy article:last-child { border-bottom: 1px solid var(--line); }
.feature-copy h3 {
  margin-bottom: 0;
  font-size: var(--text-subhead);
  font-weight: var(--weight-semibold);
}
.feature-copy p {
  max-width: 42ch;
  margin: 8px 0 0;
  color: var(--muted);
}
.product-shot { margin: 0; }
.product-shot img {
  display: block;
  width: min(100%, 350px);
  margin-inline: auto;
  border-radius: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.product-shot figcaption {
  max-width: 32ch;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: var(--text-caption);
  text-align: center;
}

.more { border-top: 1px solid var(--line); }
.more-inner { padding: clamp(66px, 8vw, 105px) 0; }
.more-heading {
  margin: 0;
  font-size: var(--text-title);
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
  row-gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding: var(--space-2xl) 0 0;
  border-top: 1px solid var(--line);
}
.more-item {
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.more-item h3 {
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  letter-spacing: -.02em;
}
.more-item p {
  margin: var(--space-xs) 0 0;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.unlock { background: color-mix(in oklab, var(--surface-alt) 72%, var(--canvas)); }
.unlock-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(var(--space-2xl), 7vw, 5.5rem);
  padding: clamp(5.5rem, 11vw, 8.5rem) 0;
}
.unlock h2 {
  max-width: 14em;
  margin-bottom: 0;
  font-size: var(--text-title);
}
.unlock-lede {
  max-width: 42ch;
  margin: var(--space-sm) 0 0;
  color: var(--muted);
  font-size: var(--text-lede);
  text-wrap: pretty;
}
.medical-note {
  max-width: 48ch;
  margin: var(--space-2xl) 0 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.55;
}
.unlock-panel {
  align-self: center;
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.unlock-panel > img { width: 54px; border-radius: 15px; }
.unlock-panel h3 {
  margin: 18px 0 9px;
  font-size: var(--text-lede);
  font-weight: var(--weight-semibold);
}
.unlock-panel p { color: var(--muted); }
.unlock-panel ul {
  display: grid;
  gap: 9px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}
.unlock-panel li {
  position: relative;
  padding-left: 18px;
  font-weight: var(--weight-medium);
}
.unlock-panel li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-deep);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 30px;
  padding: 42px 0;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 8px; }
.footer-inner p { margin: 12px 0 0; color: var(--muted); font-size: var(--text-caption); }
.footer-links { display: grid; align-content: start; gap: 8px; }
.copyright { align-self: end; text-align: right; }

.page-hero { padding: clamp(65px, 10vw, 120px) 0 clamp(36px, 5vw, 60px); }
.page-hero h1 {
  max-width: 16em;
  font-size: var(--text-display);
}
.page-hero > p:last-child {
  max-width: 42ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: var(--text-lede);
  text-wrap: pretty;
}
.support-content,
.legal-content { max-width: 890px; padding: 20px 0 105px; }
.support-contact {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 21px;
  align-items: center;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}
.support-contact img { width: 74px; border-radius: 21px; }
.support-contact h2 { font-size: var(--text-lede); font-weight: var(--weight-semibold); }
.support-contact p { margin: 8px 0; color: var(--muted); }
.support-contact a { color: var(--blue); font-weight: var(--weight-semibold); }
.faq,
.legal-content { margin-top: 58px; }
.faq details { padding: 19px 0; border-top: 1px solid var(--line); interpolate-size: allow-keywords; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  cursor: pointer;
  font-family: var(--font);
  font-size: var(--text-lede);
  font-weight: var(--weight-semibold);
  transition: color 180ms var(--ease-out-quart);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out-quint);
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq summary:hover { color: var(--blue); }
@supports selector(::details-content) {
  .faq details::details-content {
    display: block;
    overflow: clip;
    block-size: 0;
    opacity: .4;
    content-visibility: hidden;
    transition: block-size 320ms var(--ease-out-quint), opacity 240ms var(--ease-out-quart), content-visibility 320ms allow-discrete;
  }
  .faq details[open]::details-content {
    block-size: auto;
    opacity: 1;
    content-visibility: visible;
  }
}
.faq p {
  max-width: 65ch;
  margin: 13px 30px 0 0;
  color: var(--muted);
}
.legal-content h2 {
  margin: 38px 0 12px;
  font-size: var(--text-lede);
  font-weight: var(--weight-semibold);
}
.legal-content p { max-width: 65ch; color: var(--muted); }
.legal-content a { color: var(--blue); font-weight: var(--weight-semibold); }
.legal-updated { font-size: var(--text-caption); font-weight: var(--weight-semibold); }

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand controls"
      "links links";
    align-items: center;
    min-height: 0;
    gap: 4px var(--space-sm);
    padding: 10px 0 6px;
  }
  .brand { grid-area: brand; min-width: 0; }
  .controls { grid-area: controls; margin-left: 0; flex-shrink: 0; }
  .theme-toggle { flex-shrink: 0; }
  .nav-links {
    grid-area: links;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 var(--space-lg);
    overflow: visible;
    padding-bottom: 0;
  }
  .nav-links a { font-size: var(--text-caption); }
  .language select { max-width: 11rem; }
  .hero,
  .feature-layout,
  .unlock-layout { grid-template-columns: 1fr; }
  .hero {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-2xl);
    gap: var(--space-xl);
    align-items: start;
  }
  .hero-art { min-height: 0; }
  .video-shell { width: min(46vw, 196px); border-radius: 28px; }
  .screen-carousel {
    --card-w: clamp(128px, 34vw, 176px);
    --shift: 72%;
    --side-scale: .84;
  }
  .carousel-screen { border-radius: 22px; }
  .section-intro { display: block; }
  .section-intro > p { margin-top: var(--space-sm); }
  .feature-layout { margin-top: var(--space-2xl); }
  .product-shot { margin-top: 10px; }
  .product-shot img { width: 260px; }
  .more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: var(--space-xl);
    padding-top: var(--space-xl);
  }
  .unlock-layout { padding: var(--space-3xl) 0; gap: var(--space-2xl); }
  .footer-inner { grid-template-columns: 1fr; gap: 23px; }
  .copyright { text-align: left; }
  .page-hero { padding-top: 65px; }
  .support-contact { grid-template-columns: 58px 1fr; padding: 21px; }
  .support-contact img { width: 58px; border-radius: 17px; }
}

@media (max-width: 460px) {
  .brand { font-size: 1rem; }
  .brand img { width: 31px; height: 31px; }
  .language select { width: auto; max-width: 9.75rem; }
  .hero h1 {
    max-width: 6.15em;
    font-size: clamp(2.1rem, 10vw, 2.55rem);
    overflow-wrap: anywhere;
  }
  .hero-art { min-height: 0; }
  .video-shell { width: 168px; border-radius: 24px; }
  .screen-carousel {
    --card-w: clamp(118px, 36vw, 148px);
    --shift: 70%;
  }
  .carousel-screen { border-radius: 20px; }
  .more-grid { grid-template-columns: 1fr; row-gap: var(--space-lg); }
  .unlock-panel { padding: var(--space-lg); }
  .page-hero h1 { font-size: clamp(2.15rem, 11vw, 2.8rem); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *:nth-child(1) { --i: 0; }
  .hero-copy > *:nth-child(2) { --i: 1; }
  .hero-copy > *:nth-child(3) { --i: 2; }
  .hero-copy > *:nth-child(4) { --i: 3; }
  .hero-copy > *:nth-child(5) { --i: 4; }
  .hero-copy > * {
    transition:
      opacity 680ms var(--ease-out-expo) calc(var(--i, 0) * 70ms),
      transform 680ms var(--ease-out-expo) calc(var(--i, 0) * 70ms);
  }
  .video-shell,
  .screen-carousel {
    clip-path: inset(0);
    transition: clip-path 820ms var(--ease-out-expo), transform 820ms var(--ease-out-expo) 90ms;
  }
  .feature-copy article {
    transition: opacity 420ms var(--ease-out-quint) calc(var(--i, 0) * 70ms);
  }
  @starting-style {
    .hero-copy > * {
      opacity: 0;
      transform: translateY(10px);
    }
    .video-shell,
    .screen-carousel {
      clip-path: inset(12% 22% 14% 22%);
      transform: translateY(14px);
    }
    .feature-copy article {
      opacity: .45;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-copy > *,
  .video-shell,
  .screen-carousel,
  .feature-copy article {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }
  .carousel-screen {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  .carousel-screen.is-center {
    opacity: 1;
  }
  [data-carousel-clone] { display: none; }
}
