:root {
  color-scheme: light dark;
  --bg: #f5f5f3;
  --bg-soft: #ececea;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-solid: #ffffff;
  --surface-muted: #e7e7e4;
  --text: #131316;
  --text-soft: #5e5e66;
  --text-faint: #6e6e76;
  --line: rgba(17, 17, 23, 0.1);
  --line-strong: rgba(17, 17, 23, 0.17);
  --accent: #635bff;
  --accent-strong: #4f47e8;
  --accent-soft: #ebeaff;
  --success: #19965d;
  --shadow-sm: 0 12px 40px rgba(25, 23, 44, 0.08);
  --shadow-lg: 0 36px 100px rgba(25, 23, 44, 0.14);
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0d;
    --bg-soft: #111114;
    --surface: rgba(24, 24, 29, 0.78);
    --surface-solid: #17171b;
    --surface-muted: #202026;
    --text: #f5f5f7;
    --text-soft: #aaaab3;
    --text-faint: #91919b;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);
    --accent: #827cff;
    --accent-strong: #938eff;
    --accent-soft: rgba(99, 91, 255, 0.16);
    --success: #53ce91;
    --shadow-sm: 0 12px 40px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 36px 100px rgba(0, 0, 0, 0.44);
  }
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg {
  display: block;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 62%, transparent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  gap: 10px;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-mark,
.mini-mark {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: var(--text);
  color: var(--bg);
}

.brand-mark::before,
.mini-mark::before,
.alx-icon::before,
.brand-flow-icon::before {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  content: "";
  transform: translateX(1px);
}

.brand-mark span,
.mini-mark i,
.alx-icon i,
.brand-flow-icon i {
  position: absolute;
  inset: 4px;
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  border-radius: 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-soft);
}

.desktop-nav a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 14px;
  border-radius: 12px;
  transition: color 150ms ease, background-color 150ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  background: var(--surface);
  color: var(--text);
}

.header-inner > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 680;
  letter-spacing: -0.015em;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 13px;
  font-size: 14px;
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
}

.button-primary {
  background: var(--text);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--text) 18%, transparent);
  color: var(--bg);
}

.button-primary:hover {
  background: color-mix(in srgb, var(--text) 88%, var(--accent));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--text) 24%, transparent);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line-strong));
  background: var(--surface-solid);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
  box-shadow: none;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0 clamp(88px, 10vw, 148px);
}

.hero::before {
  position: absolute;
  top: -220px;
  left: 52%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  font-weight: 740;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 0.99;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.03;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.compatibility {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 21px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.compatibility svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.install-status {
  min-height: 22px;
  margin: 9px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.phone-frame {
  position: absolute;
  top: 0;
  left: 20px;
  width: min(78%, 350px);
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 49px;
  background: #08080a;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2.2deg);
}

.phone-frame::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 44px;
  content: "";
  pointer-events: none;
}

.phone-island {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 50%;
  width: 92px;
  height: 27px;
  border-radius: 20px;
  background: #050507;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 572px;
  overflow: hidden;
  border-radius: 40px;
  background: #dddde2;
}

.mock-video {
  position: relative;
  height: 332px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 48%), linear-gradient(155deg, #30303a 0%, #16161b 48%, #272330 100%);
}

.mock-video::before,
.mock-video::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.mock-video::before {
  top: 68px;
  right: -28px;
  width: 220px;
  height: 220px;
  background: rgba(99, 91, 255, 0.24);
}

.mock-video::after {
  bottom: -70px;
  left: -50px;
  width: 220px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-video-label {
  position: absolute;
  z-index: 1;
  top: 61px;
  left: 25px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid white;
  transform: translateX(2px);
}

.mock-video-meta {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 25px;
  display: grid;
  width: 65%;
  gap: 8px;
}

.mock-video-meta span {
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}

.mock-video-meta span:last-child {
  width: 68%;
  opacity: 0.55;
}

.share-panel {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  min-height: 285px;
  padding: 11px 17px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px 30px 35px 35px;
  background: rgba(246, 246, 249, 0.94);
  color: #17171b;
  box-shadow: 0 -12px 44px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
}

.panel-handle {
  width: 38px;
  height: 5px;
  margin: 0 auto 22px;
  border-radius: 5px;
  background: #c6c6cc;
}

.share-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
}

.close-dot {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #dedee3;
  color: #6e6e77;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.share-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
  text-align: center;
}

.share-apps > div {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.share-apps small {
  font-size: 10px;
}

.app-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 15px;
}

.muted-icon {
  position: relative;
  background: #e4e4e9;
}

.muted-icon::before,
.muted-icon::after {
  position: absolute;
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background: #a4a4ad;
  content: "";
}

.muted-icon::after {
  transform: rotate(90deg);
}

.alx-icon,
.brand-flow-icon {
  position: relative;
  background: #17171b;
  color: white;
}

.active-app small {
  font-weight: 700;
}

.quality-card {
  position: absolute;
  z-index: 5;
  top: 114px;
  right: -2px;
  width: 270px;
  padding: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  transform: rotate(2deg);
}

.quality-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.mini-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: var(--text);
  color: var(--bg);
}

.mini-mark::before {
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
}

.quality-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  border-bottom: 1px solid var(--line);
}

.quality-option:last-child {
  border-bottom: 0;
}

.quality-option > span {
  display: grid;
}

.quality-option b {
  font-size: 14px;
}

.quality-option small {
  color: var(--text-soft);
  font-size: 11px;
}

.quality-option > i {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
}

.saved-pill {
  position: absolute;
  z-index: 6;
  right: 24px;
  bottom: 66px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid color-mix(in srgb, var(--success) 25%, var(--line));
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-solid) 94%, transparent);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  transform: rotate(-1deg);
}

.saved-pill svg {
  width: 21px;
  height: 21px;
  padding: 3px;
  border-radius: 50%;
  background: var(--success);
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.section {
  padding: clamp(84px, 10vw, 148px) 0;
}

.flow-section {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-card {
  position: relative;
  min-height: 285px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.flow-card:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -13px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-faint);
  content: "›";
  font-size: 18px;
  transform: translateY(-50%);
}

.flow-number {
  display: block;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.flow-icon,
.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 48px 0 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-solid);
}

.flow-icon svg,
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.brand-flow-icon {
  color: var(--bg);
}

.flow-card p,
.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.flow-promise {
  margin: 38px 0 0;
  color: var(--text-soft);
  text-align: center;
  font-size: 15px;
  font-weight: 650;
}

.flow-promise span {
  padding-inline: 8px;
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feature-card .feature-icon {
  margin: 0 0 64px;
}

.feature-card-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: auto minmax(240px, 0.75fr) minmax(280px, 1fr);
  align-items: center;
  min-height: 250px;
  gap: 28px;
}

.feature-card-wide .feature-icon {
  margin: 0;
}

.feature-card-wide p {
  max-width: 450px;
}

.quality-bars {
  display: grid;
  gap: 17px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface-solid);
}

.quality-bars span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.quality-bars i {
  position: relative;
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--surface-muted);
}

.quality-bars i::before {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  content: "";
}

.quality-bars .bar-medium::before {
  width: 72%;
}

.quality-bars .bar-small::before {
  width: 48%;
}

.quality-bars b {
  color: var(--text-soft);
  font-size: 11px;
}

.feature-card-accent {
  background: var(--accent-soft);
}

.platforms-section {
  padding-top: 0;
}

.platform-panel {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.compact-heading {
  margin-bottom: 36px;
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-list li {
  display: flex;
  align-items: center;
  min-height: 84px;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-solid);
  font-weight: 680;
}

.platform-symbol {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--bg-soft);
  font-size: 15px;
  font-weight: 780;
}

.play-symbol i {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.x-symbol {
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.platform-note {
  margin: 22px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}

.install-section {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.install-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.install-grid .section-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.install-grid .button {
  margin-top: 30px;
}

.desktop-note {
  max-width: 410px;
  margin-top: 15px !important;
  color: var(--text-faint) !important;
  font-size: 13px !important;
}

.install-qr {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 14px;
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.install-qr img {
  width: 92px;
  height: 92px;
  border-radius: 10px;
}

.install-qr p {
  max-width: 150px !important;
  margin: 0 !important;
  color: var(--text-soft) !important;
  font-size: 13px !important;
}

.install-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 150px;
  align-items: start;
  gap: 22px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.install-steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 760;
}

.install-steps p {
  margin: 0;
  color: var(--text-soft);
}

.trust-section {
  padding-bottom: 0;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.trust-panel h2 {
  max-width: 620px;
}

.trust-panel p:not(.eyebrow) {
  max-width: 660px;
  color: var(--text-soft);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  margin-top: 8px;
  color: var(--accent-strong);
  font-weight: 680;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.trust-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-solid);
  font-size: 14px;
  font-weight: 650;
}

.trust-list svg {
  width: 25px;
  height: 25px;
  padding: 4px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--success) 15%, transparent);
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.faq-section {
  padding-bottom: clamp(100px, 12vw, 170px);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(480px, 1.35fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 116px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-muted);
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text-soft);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-list summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -2px 48px 24px 4px;
  color: var(--text-soft);
}

.final-cta {
  padding: 0 0 28px;
}

.final-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 330px;
  gap: 40px;
  padding: clamp(38px, 7vw, 82px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #111116;
  color: white;
}

.final-panel h2,
.final-panel .eyebrow {
  position: relative;
  z-index: 2;
  color: white;
}

.final-panel h2 {
  max-width: 700px;
  margin-bottom: 13px;
}

.final-panel p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
}

.final-panel .button {
  position: relative;
  z-index: 2;
  background: white;
  color: #111116;
}

.final-orbit {
  position: absolute;
  top: -180px;
  right: 20%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.final-orbit::before,
.final-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
  content: "";
}

.final-orbit::before {
  inset: 70px;
}

.final-orbit::after {
  inset: 150px;
}

.final-orbit i {
  position: absolute;
  right: 72px;
  bottom: 95px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 8px rgba(130, 124, 255, 0.12);
}

.site-footer {
  padding: 44px 0 max(32px, env(safe-area-inset-bottom));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.footer-brand {
  font-size: 16px;
}

.footer-brand + p {
  margin: 8px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 13px;
  color: var(--text-soft);
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--text-faint);
  font-size: 12px;
}

.trademark-note {
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 11px;
}

/* Legal, install and error pages */
.simple-page .site-header {
  position: relative;
}

.simple-main {
  min-height: calc(100vh - 260px);
  padding: clamp(64px, 9vw, 118px) 0;
}

.legal-shell {
  width: min(calc(100% - 40px), 790px);
  margin-inline: auto;
}

.legal-header {
  margin-bottom: 54px;
}

.legal-header h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 66px);
}

.legal-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.legal-content {
  display: grid;
  gap: 38px;
}

.legal-content section {
  padding-top: 32px;
  border-top: 1px solid var(--line-strong);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 27px;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 23px;
}

.legal-meta {
  margin-top: 26px;
  color: var(--text-faint) !important;
  font-size: 13px !important;
}

.status-card {
  max-width: 720px;
  padding: clamp(30px, 6vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.status-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-solid);
  color: var(--accent-strong);
}

.status-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.status-card h1 {
  max-width: 650px;
  font-size: clamp(39px, 7vw, 62px);
}

.status-card > p {
  max-width: 610px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.status-card .button-row {
  margin-top: 30px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 46px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .phone-frame {
    left: 0;
    width: 320px;
  }

  .phone-screen {
    min-height: 540px;
  }

  .quality-card {
    right: -28px;
    width: 238px;
  }

  .saved-pill {
    right: -10px;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-card:not(:last-child)::after {
    display: none;
  }

  .platform-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > .eyebrow,
  .compatibility {
    justify-content: center;
  }

  .button-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 530px);
    min-height: 610px;
    margin: 16px auto 0;
  }

  .phone-frame {
    left: 38px;
    width: 338px;
  }

  .phone-screen {
    min-height: 570px;
  }

  .quality-card {
    right: 0;
  }

  .saved-pill {
    right: 15px;
  }

  .feature-card-wide {
    grid-template-columns: auto 1fr;
  }

  .quality-bars {
    grid-column: 1 / -1;
  }

  .install-grid,
  .trust-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .install-grid .section-heading,
  .faq-heading {
    position: static;
  }

  .trust-panel {
    gap: 38px;
  }

  .final-panel {
    grid-template-columns: 1fr;
  }

  .final-panel .button {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .shell,
  .legal-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .header-inner > .button {
    min-height: 40px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(41px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .legal-header h1 {
    overflow-wrap: anywhere;
    font-size: clamp(32px, 8.8vw, 35px);
    hyphens: auto;
  }

  .hero-lead {
    font-size: 18px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 570px;
    margin-top: 0;
  }

  .phone-frame {
    left: 2px;
    width: 292px;
    border-radius: 43px;
  }

  .phone-screen {
    min-height: 526px;
    border-radius: 35px;
  }

  .mock-video {
    height: 300px;
  }

  .share-panel {
    min-height: 260px;
  }

  .app-icon {
    width: 49px;
    height: 49px;
  }

  .quality-card {
    top: 130px;
    right: -5px;
    width: 205px;
    padding: 14px;
  }

  .quality-head {
    font-size: 12px;
  }

  .quality-option {
    min-height: 54px;
  }

  .saved-pill {
    right: 0;
    bottom: 35px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .flow-grid,
  .feature-grid,
  .platform-list {
    grid-template-columns: 1fr;
  }

  .flow-card {
    min-height: 245px;
  }

  .flow-icon {
    margin-top: 34px;
  }

  .flow-promise {
    display: none;
  }

  .feature-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-card-wide .feature-icon {
    margin-bottom: 32px;
  }

  .quality-bars {
    grid-column: auto;
    margin-top: 16px;
  }

  .feature-card {
    min-height: 270px;
    padding: 24px;
  }

  .platform-panel,
  .trust-panel,
  .final-panel {
    border-radius: 28px;
  }

  .install-steps li {
    min-height: 0;
    padding: 22px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 28px;
  }

  .final-panel {
    min-height: 390px;
  }

  .final-panel .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    justify-content: start;
  }

  .footer-links a {
    padding-inline: 0;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 374px) {
  .header-inner > .button {
    padding-inline: 13px;
  }

  .quality-card {
    right: -22px;
  }
}

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

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