@font-face {
  font-family: "Fira Sans";
  src: url("/assets/fonts/FiraSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("/assets/fonts/FiraSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("/assets/fonts/FiraSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("/assets/fonts/FiraSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-bg: #f7f8f5;
  --paper: #fffefa;
  --paper-strong: #ffffff;
  --ink: #151b23;
  --ink-soft: #2e3a47;
  --muted: #68727f;
  --muted-strong: #515b67;
  --line: rgba(21, 27, 35, 0.10);
  --line-strong: rgba(21, 27, 35, 0.18);
  --route: #2f6076;
  --route-strong: #173c4d;
  --sage: #5e7a6d;
  --clay: #9a7257;
  --sand: #e6e2d8;
  --night: #151b23;
  --white: #ffffff;
  --shadow-soft: 0 16px 42px rgba(20, 29, 40, 0.07);
  --shadow-medium: 0 24px 62px rgba(20, 29, 40, 0.10);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --max-width: 1180px;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(21, 27, 35, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 27, 35, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf6 0%, #f7f8f5 46%, #f1f4f1 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(49, 94, 125, 0.42);
  outline-offset: 4px;
}

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

.section-shell,
.footer-shell {
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 16px 18px 0;
}

.header-shell {
  width: min(calc(100% - 8px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(23, 33, 46, 0.14);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 10px 28px rgba(20, 29, 40, 0.06);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(20, 29, 40, 0.09);
}

.brand,
.site-nav,
.header-actions,
.footer-links,
.footer-locale-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  flex-shrink: 0;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand-copy {
  font-size: 1.02rem;
}

.header-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-nav-locale,
.header-cta-locale {
  display: flex;
  align-items: center;
}

.site-nav,
.footer-links,
.legal-nav,
.footer-locale-links {
  gap: 18px;
}

.site-nav a,
.footer-links a,
.legal-nav a,
.support-line {
  color: var(--muted-strong);
}

.site-nav a,
.legal-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 560;
}

.site-nav a::after,
.legal-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--clay);
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.legal-nav a:hover,
.support-line a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.legal-nav a:hover::after,
.legal-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(23, 33, 46, 0.1);
  border-radius: 9px;
  background: rgba(229, 212, 189, 0.5);
}

.lang-button {
  border: 0;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 620;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.lang-button.is-active {
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(23, 33, 46, 0.08);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 33, 46, 0.1);
  border-radius: 10px;
  background: var(--paper-strong);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease;
}

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

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

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 620;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.92rem;
}

.primary-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(21, 27, 35, 0.12);
}

.secondary-button {
  border: 1px solid rgba(23, 33, 46, 0.16);
  background: var(--paper-strong);
  color: var(--ink);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover,
.header-cta:hover {
  background: var(--route-strong);
  border-color: var(--route-strong);
}

.secondary-button:hover {
  border-color: rgba(23, 33, 46, 0.32);
  box-shadow: 0 12px 26px rgba(34, 39, 46, 0.08);
}

.eyebrow,
.landing-eyebrow,
.legal-card-label,
.legal-lead {
  display: inline-block;
  margin: 0;
  color: var(--route);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  padding: clamp(44px, 6vw, 72px) 0 clamp(70px, 8vw, 104px);
  overflow: clip;
}

.hero-grid {
  width: min(calc(100% - 44px), 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 600px;
  padding-top: 10px;
}

.hero-title,
.section-title,
.subpage-hero h1,
.legal-article h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero-title {
  max-width: 14.6ch;
  font-size: clamp(2.45rem, 3.75vw, 4rem);
}

.hero-body,
.section-body,
.subpage-hero p,
.legal-card p,
.legal-article p,
.legal-list,
.support-line,
.footer-shell,
.small-note {
  line-height: 1.62;
}

.hero-body {
  max-width: 36rem;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
}

.hero-actions,
.download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.availability-note,
.small-note {
  max-width: 34rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-medium);
  isolation: isolate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 33, 46, 0.24), transparent 42%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.route-snapshot {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  width: min(330px, calc(100% - 52px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.90);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(21, 27, 35, 0.16);
  backdrop-filter: blur(18px);
}

.route-snapshot-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-snapshot strong {
  display: block;
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 650;
}

.route-snapshot p {
  margin: 6px 0 0;
  color: var(--muted-strong);
  line-height: 1.45;
}

.route-snapshot-line {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.55fr;
  gap: 6px;
  margin-top: 14px;
}

.route-snapshot-line span {
  height: 5px;
  border-radius: 99px;
  background: var(--sage);
}

.route-snapshot-line span:nth-child(2) {
  background: var(--route);
}

.route-snapshot-line span:nth-child(3) {
  background: var(--clay);
}

.problem-section,
.product-section,
.host-section,
.download-section,
.legal-section {
  padding: clamp(68px, 9vw, 116px) 0;
}

.problem-grid,
.product-grid,
.host-grid {
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.problem-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
}

.problem-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(20, 29, 40, 0.08);
  background: var(--sand);
}

.problem-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.section-title {
  max-width: 18ch;
  font-size: clamp(1.8rem, 2.55vw, 2.75rem);
}

.section-body {
  max-width: 36rem;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  text-wrap: pretty;
}

.moment-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.moment-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.moment-item span,
.flow-index {
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.moment-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.moment-item p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.flow-section {
  padding: clamp(66px, 8vw, 104px) 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(rgba(21, 27, 35, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 27, 35, 0.022) 1px, transparent 1px),
    #eef3f0;
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--ink);
  overflow: clip;
}

.flow-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.flow-section .eyebrow {
  color: var(--route);
}

.flow-section .section-title {
  color: var(--ink);
}

.flow-section .section-body {
  color: var(--ink-soft);
}

.flow-intro {
  position: sticky;
  top: 112px;
}

.flow-list {
  position: relative;
  display: grid;
  gap: 14px;
}

.flow-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 27px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--sage), var(--route), var(--clay));
  opacity: 0.28;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(21, 27, 35, 0.11);
}

.flow-step::before {
  display: none;
}

.flow-step .flow-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 96, 118, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--route);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 8px #eef3f0;
  transition:
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.flow-step.is-visible .flow-index {
  background: var(--route);
  color: var(--paper-strong);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 8px #eef3f0,
    0 10px 24px rgba(47, 96, 118, 0.16);
}

.flow-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.flow-step p {
  max-width: 42rem;
  margin: 10px 0 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.product-grid {
  grid-template-columns: minmax(300px, 0.88fr) minmax(240px, 0.56fr);
}

.phone-frame {
  justify-self: center;
  width: min(100%, 330px);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(23, 33, 46, 0.12);
  border-radius: 18px;
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.phone-frame img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20, 29, 40, 0.10);
}

.host-section {
  background: rgba(255, 255, 255, 0.42);
}

.host-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.74fr);
}

.host-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 46, 0.12);
  border-radius: 16px;
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.host-frame img {
  width: 100%;
  height: auto;
}

.check-list,
.legal-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(114, 136, 111, 0.16);
}

.download-section {
  text-align: center;
}

.download-panel {
  max-width: 840px;
  padding: clamp(36px, 6vw, 68px);
  border: 1px solid rgba(23, 33, 46, 0.11);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.download-panel .section-title,
.download-panel .section-body,
.download-panel .small-note {
  margin-left: auto;
  margin-right: auto;
}

.download-panel .section-title {
  max-width: 14ch;
}

.download-actions {
  justify-content: center;
  margin-top: 32px;
}

.support-line {
  margin: 22px 0 0;
  text-align: center;
}

.support-line a {
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  padding: 30px 0 40px;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links,
.footer-locale-links {
  flex-wrap: wrap;
}

[data-language-content][hidden] {
  display: none !important;
}

[data-reveal] {
  --parallax-y: 0px;
  --reveal-y: 26px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0);
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y), 0);
}

.hero-section [data-reveal] {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y), 0);
}

[data-parallax] {
  will-change: transform;
}

.subpage-body {
  background:
    linear-gradient(rgba(21, 27, 35, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 27, 35, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf6 0%, #f7f8f5 52%, #f1f4f1 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.subpage-main {
  padding-top: 30px;
}

.subpage-hero {
  padding: 58px 0 34px;
}

.subpage-hero-shell {
  max-width: 880px;
}

.subpage-hero h1 {
  max-width: 20ch;
  font-size: clamp(1.95rem, 3vw, 3.2rem);
}

.subpage-hero p {
  max-width: 44rem;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 18px;
}

.legal-card,
.legal-article {
  border: 1px solid rgba(23, 33, 46, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(20, 29, 40, 0.05);
}

.legal-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.legal-card a,
.legal-article a {
  color: var(--route-strong);
  font-weight: 700;
}

.legal-article {
  padding: 34px clamp(24px, 4vw, 48px);
}

.legal-article section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.legal-list {
  padding-left: 1.15rem;
  list-style: disc;
  color: var(--ink-soft);
}

@media (max-width: 1120px) {
  .header-panel {
    gap: 12px;
  }

  .site-nav {
    gap: 14px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 12px 0;
  }

  .header-shell {
    position: relative;
    width: 100%;
    max-width: calc(100vw - 24px);
    min-height: 58px;
    border-radius: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .header-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(23, 33, 46, 0.12);
    border-radius: 14px;
    background: var(--paper-strong);
    box-shadow: 0 16px 40px rgba(34, 39, 46, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .header-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav a::after,
  .legal-nav a::after {
    display: none;
  }

  .header-actions {
    align-items: stretch;
  }

  .header-cta {
    display: inline-flex;
    width: 100%;
  }

  .subpage-body .header-shell {
    flex-wrap: wrap;
  }

  .subpage-body .menu-toggle,
  .subpage-body .header-panel {
    display: none;
  }

  .subpage-body .site-nav.legal-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .hero-grid,
  .problem-grid,
  .flow-shell,
  .product-grid,
  .host-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 720px;
    min-width: 0;
  }

  .hero-title {
    max-width: 14.4ch;
  }

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

  .hero-visual img {
    min-height: 480px;
  }

  .flow-intro,
  .legal-sidebar {
    position: static;
  }

  .product-grid .product-copy {
    order: 1;
  }

  .product-grid .phone-frame {
    order: 2;
  }

  .host-frame {
    order: 2;
  }

  .host-copy {
    order: 1;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .footer-shell,
  .hero-grid {
    width: min(calc(100% - 28px), var(--max-width));
    max-width: calc(100vw - 28px);
  }

  .hero-section {
    padding: 42px 0 64px;
  }

  .hero-title {
    max-width: 13.6ch;
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.06;
  }

  .eyebrow,
  .landing-eyebrow,
  .legal-card-label,
  .legal-lead {
    max-width: 100%;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
  }

  .hero-body {
    margin-top: 20px;
    font-size: 1.02rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .download-actions,
  .footer-links {
    flex-direction: column;
  }

  .hero-actions > *,
  .download-actions > * {
    width: 100%;
  }

  .availability-note {
    font-size: 0.92rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 16px;
  }

  .hero-visual img {
    min-height: 390px;
    object-position: 55% center;
  }

  .route-snapshot {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 14px;
    border-radius: 10px;
  }

  .problem-section,
  .product-section,
  .host-section,
  .download-section,
  .legal-section,
  .flow-section {
    padding: 58px 0;
  }

  .section-title {
    max-width: 16ch;
    font-size: clamp(1.75rem, 7.8vw, 2.45rem);
    line-height: 1.08;
  }

  .problem-media,
  .download-panel,
  .host-frame {
    border-radius: 16px;
  }

  .problem-media img {
    aspect-ratio: 1 / 1;
  }

  .moment-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .flow-step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding-left: 0;
  }

  .flow-step .flow-index {
    width: 44px;
    height: 44px;
    font-size: 0.78rem;
    box-shadow: none;
  }

  .flow-step.is-visible .flow-index {
    box-shadow: none;
  }

  .flow-list::before {
    display: none;
  }

  .phone-frame {
    width: min(100%, 286px);
    border-radius: 16px;
  }

  .phone-frame img {
    border-radius: 11px;
  }

  .download-panel {
    padding: 34px 22px;
  }

  .footer-shell {
    justify-content: center;
    text-align: center;
  }

  .footer-links,
  .footer-locale-links {
    width: 100%;
    justify-content: center;
    gap: 12px 16px;
  }

  .subpage-hero {
    padding-top: 34px;
  }

  .subpage-hero h1 {
    max-width: 16ch;
    font-size: clamp(1.9rem, 8vw, 2.55rem);
  }

  .legal-card,
  .legal-article {
    border-radius: 14px;
  }

  .legal-article {
    padding: 28px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
