:root {
  --color-primary: #18264a;
  --color-primary-dark: #101936;
  --color-primary-soft: #243a70;
  --color-teal: #147c86;
  --color-cta: #d94e67;
  --color-cta-dark: #b83c55;
  --color-gold: #d1ad5d;
  --color-bg: #f5f7fb;
  --color-surface: #ffffff;
  --color-subtle: #eef2f7;
  --color-text: #101828;
  --color-text-secondary: #667085;
  --color-text-muted: #98a2b3;
  --color-border: #e4e7ec;
  --color-success: #16a34a;
  --color-success-bg: #ecfdf5;
  --color-on-dark: #ffffff;
  --shadow-sm: 0 10px 24px rgba(16, 25, 54, 0.08);
  --shadow-md: 0 18px 50px rgba(16, 25, 54, 0.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

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

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

.download-page {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 420px, var(--color-bg) 421px),
    var(--color-bg);
}

.store-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: min(var(--max-width), calc(100% - 40px));
  margin: var(--space-4) auto 0;
  padding: var(--space-2);
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(16, 25, 54, 0.08);
  backdrop-filter: blur(18px);
}

.store-header.is-scrolled,
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
}

.store-brand,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-width: max-content;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 850;
}

.store-brand img,
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(16, 25, 54, 0.14);
}

.store-nav,
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  font-weight: 760;
}

.store-nav a:hover,
.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--color-cta);
}

.header-download,
.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-full);
  padding: 0 var(--space-5);
  font-weight: 850;
  white-space: nowrap;
}

.header-download,
.nav-cta,
.primary-button {
  color: var(--color-on-dark);
  background: var(--color-cta);
  box-shadow: 0 12px 28px rgba(217, 78, 103, 0.24);
}

.secondary-button {
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.mobile-label {
  display: none;
}

.store-banner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: var(--space-5) auto 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.store-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.milestone-announcement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-5);
  padding: var(--space-5);
  border: 1px solid rgba(209, 173, 93, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 253, 245, 0.72)),
    var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.milestone-announcement h1 {
  max-width: 760px;
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.milestone-announcement p:not(.listing-kicker) {
  max-width: 720px;
  margin: var(--space-3) 0 0;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  font-weight: 700;
}

.milestone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 54px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-full);
  color: var(--color-on-dark);
  background: var(--color-primary-dark);
  box-shadow: 0 16px 34px rgba(16, 25, 54, 0.18);
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.milestone-cta svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.app-listing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-6);
  align-items: start;
  padding: var(--space-7) 0 var(--space-4);
}

.app-summary {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
  min-width: 0;
}

.listing-icon {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(16, 25, 54, 0.18);
}

.listing-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-2);
  color: var(--color-cta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.listing-copy h1 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 4.8rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.publisher {
  margin: var(--space-2) 0 var(--space-4);
  color: var(--color-teal);
  font-size: 1.1rem;
  font-weight: 780;
}

.official-copy {
  max-width: 680px;
  margin: var(--space-4) 0 0;
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-weight: 680;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  background: var(--color-surface);
  font-size: 0.9rem;
  font-weight: 780;
}

.download-card,
.play-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.download-card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5);
  position: sticky;
  top: 96px;
}

.download-card-head {
  display: grid;
  gap: var(--space-1);
}

.download-card-head span {
  color: var(--color-cta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card-head strong {
  color: var(--color-primary-dark);
  font-size: 1.34rem;
  line-height: 1.15;
}

.install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 56px;
  border-radius: var(--radius-full);
  color: var(--color-on-dark);
  background: var(--color-cta);
  box-shadow: 0 16px 34px rgba(217, 78, 103, 0.28);
  font-size: 1.05rem;
  font-weight: 900;
}

.install-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.download-card p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.download-note {
  padding: var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-subtle);
}

.access-note {
  padding-left: var(--space-3);
  border-left: 3px solid var(--color-gold);
  font-weight: 760;
}

.play-store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  width: fit-content;
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-primary-dark);
  color: var(--color-on-dark);
  box-shadow: 0 12px 28px rgba(16, 25, 54, 0.14);
}

.play-store-badge svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.play-store-badge span {
  display: grid;
  gap: 1px;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.play-store-badge strong {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.play-blue {
  fill: #3bccff;
}

.play-green {
  fill: #39d98a;
}

.play-yellow {
  fill: #ffd166;
}

.play-red {
  fill: #ff6b6b;
}

.download-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.download-help a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  background: var(--color-surface);
  font-size: 0.9rem;
  font-weight: 850;
}

.download-help a:hover {
  color: var(--color-cta);
  border-color: rgba(217, 78, 103, 0.35);
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  padding-bottom: var(--space-7);
}

.trust-panel article {
  min-width: 0;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-3);
  border-radius: var(--radius-full);
  color: var(--color-cta);
  background: rgba(217, 78, 103, 0.1);
}

.trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-panel strong,
.trust-panel span {
  display: block;
}

.trust-panel strong {
  color: var(--color-primary-dark);
  font-size: 1.06rem;
  line-height: 1.2;
}

.trust-panel article > span:last-child {
  margin-top: var(--space-1);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 680;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  padding-bottom: var(--space-7);
}

.metrics article {
  min-width: 0;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--color-primary);
  font-size: 1.35rem;
  line-height: 1.1;
}

.metrics span {
  margin-top: var(--space-1);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

.screenshots-section,
.content-grid,
.safety-section,
.install-guide,
.tester-access-section,
.faq-section,
.policy-preview {
  padding-bottom: var(--space-7);
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.section-title-row.compact {
  margin-bottom: var(--space-3);
}

.section-title-row h2,
.play-card h2,
.legal-hero h1,
.legal-card h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.screen-controls {
  display: flex;
  gap: var(--space-2);
}

.screen-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  background: var(--color-surface);
  cursor: pointer;
}

.screen-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.screenshot-rail {
  display: grid;
  grid-auto-columns: minmax(240px, 320px);
  grid-auto-flow: column;
  gap: var(--space-4);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: var(--space-1) var(--space-1) var(--space-4);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.screenshot-rail img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-4);
}

.play-card {
  padding: var(--space-5);
}

.play-card p {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.feature-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text);
  font-weight: 720;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "✓";
  border-radius: var(--radius-full);
  color: var(--color-on-dark);
  background: var(--color-success);
  font-size: 0.72rem;
  font-weight: 900;
}

.release-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
}

.release-list div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-border);
}

.release-list dt {
  color: var(--color-text-secondary);
  font-weight: 740;
}

.release-list dd {
  margin: 0;
  color: var(--color-primary);
  font-weight: 850;
  text-align: right;
  overflow-wrap: anywhere;
}

.safety-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-5);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(24, 38, 74, 0.96), rgba(20, 124, 134, 0.9)),
    var(--color-primary);
}

.safety-card h2,
.safety-card .listing-kicker {
  color: var(--color-on-dark);
}

.safety-card p {
  color: rgba(255, 255, 255, 0.78);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.safety-grid article {
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
}

.safety-grid strong,
.safety-grid span {
  display: block;
}

.safety-grid strong {
  color: var(--color-on-dark);
  font-weight: 880;
}

.safety-grid span {
  margin-top: var(--space-1);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.steps-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.steps-inline article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: var(--space-3);
  align-items: start;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
}

.steps-inline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-on-dark);
  background: var(--color-cta);
  font-weight: 900;
}

.steps-inline p {
  margin: 0;
}

.tester-access-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.94)),
    var(--color-surface);
}

.access-flow {
  display: grid;
  gap: var(--space-3);
}

.access-flow article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.access-step {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  color: var(--color-on-dark);
  background: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 900;
}

.access-flow h3 {
  margin: 0 0 var(--space-1);
  color: var(--color-primary-dark);
  font-size: 1.18rem;
  line-height: 1.2;
}

.access-flow p {
  margin: 0 0 var(--space-3);
  color: var(--color-text-secondary);
  font-weight: 700;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 900;
}

.primary-action {
  color: var(--color-on-dark);
  background: var(--color-cta);
  box-shadow: 0 12px 28px rgba(217, 78, 103, 0.22);
}

.secondary-action {
  color: var(--color-primary);
  background: var(--color-subtle);
  border: 1px solid var(--color-border);
}

.faq-grid {
  display: grid;
  gap: var(--space-3);
}

.faq-grid details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 64px;
  padding: 0 var(--space-4);
  color: var(--color-primary-dark);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: var(--radius-full);
  color: var(--color-cta);
  background: rgba(217, 78, 103, 0.1);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid p {
  margin: 0;
  padding: 0 var(--space-4) var(--space-4);
  color: var(--color-text-secondary);
  font-weight: 700;
}

.faq-grid a {
  color: var(--color-cta);
  font-weight: 900;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.policy-grid a {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.policy-grid span {
  color: var(--color-cta);
  font-size: 0.86rem;
}

.site-footer {
  padding: var(--space-5) 0;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-weight: 760;
}

.site-footer p {
  margin: 0;
}

.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.legal-hero {
  padding: var(--space-7);
  color: var(--color-on-dark);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-teal));
  box-shadow: var(--shadow-sm);
}

.legal-hero .section-kicker,
.legal-hero h1 {
  color: var(--color-on-dark);
}

.legal-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.legal-card,
.contact-method {
  margin-top: var(--space-4);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.legal-card h2:not(:first-child) {
  margin-top: var(--space-6);
}

.legal-card a {
  color: var(--color-cta);
  font-weight: 800;
}

.compact-footer {
  text-align: center;
}

.contact-grid-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.contact-method {
  margin-top: var(--space-4);
}

.contact-method span {
  display: block;
  color: var(--color-cta);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method a,
.contact-method strong {
  display: block;
  margin: var(--space-2) 0;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.business-address {
  display: grid;
  gap: var(--space-1);
  margin: var(--space-2) 0 var(--space-3);
  color: var(--color-primary-dark);
  font-style: normal;
}

.business-address strong {
  margin: 0;
}

.business-address span {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

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

  .milestone-announcement {
    grid-template-columns: 1fr;
  }

  .milestone-cta {
    width: 100%;
  }

  .app-listing,
  .content-grid,
  .safety-card {
    grid-template-columns: 1fr;
  }

  .download-card {
    position: static;
  }

  .metrics,
  .trust-panel,
  .policy-grid,
  .contact-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-card {
    order: -1;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  .shell,
  .store-header,
  .site-header,
  .store-banner,
  .legal-page {
    width: min(100% - 24px, var(--max-width));
  }

  .store-header,
  .site-header {
    gap: var(--space-2);
    margin-top: var(--space-2);
    padding: 6px;
  }

  .store-brand span,
  .brand-lockup span {
    font-size: 0.92rem;
  }

  .store-brand img,
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .header-download,
  .nav-cta {
    min-height: 40px;
    padding: 0 var(--space-3);
    font-size: 0.88rem;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .store-banner {
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
  }

  .store-banner img {
    height: auto;
    aspect-ratio: 1024 / 500;
  }

  .milestone-announcement {
    gap: var(--space-4);
    margin-top: var(--space-4);
    padding: 18px;
    border-radius: var(--radius-lg);
  }

  .milestone-announcement h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .milestone-announcement p:not(.listing-kicker) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .milestone-cta {
    min-height: 58px;
    font-size: 1rem;
  }

  .app-listing {
    gap: var(--space-4);
    padding: var(--space-4) 0 var(--space-5);
  }

  .app-summary {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: var(--space-3);
    align-items: start;
  }

  .listing-icon {
    width: 74px;
    height: 74px;
    border-radius: 18px;
  }

  .listing-copy h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

  .section-title-row h2,
  .play-card h2,
  .legal-hero h1,
  .legal-card h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .publisher {
    margin-bottom: var(--space-3);
    font-size: 1rem;
    line-height: 1.42;
  }

  .official-copy,
  .download-card p,
  .play-card p,
  .feature-list li,
  .trust-panel article > span:last-child,
  .safety-grid span,
  .steps-inline p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .trust-row span {
    min-height: 34px;
    padding: 0 var(--space-3);
    font-size: 0.9rem;
  }

  .metrics,
  .trust-panel,
  .policy-grid,
  .contact-grid-page,
  .safety-grid,
  .steps-inline {
    grid-template-columns: 1fr;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .screen-controls {
    display: none;
  }

  .screenshot-rail {
    grid-auto-columns: minmax(236px, 76vw);
  }

  .download-card,
  .play-card,
  .legal-hero,
  .legal-card,
  .contact-method {
    padding: 18px;
    border-radius: var(--radius-lg);
  }

  .download-card {
    gap: var(--space-4);
  }

  .download-card-head strong {
    font-size: 1.42rem;
  }

  .install-button {
    min-height: 58px;
    font-size: 1rem;
  }

  .download-help {
    grid-template-columns: 1fr;
  }

  .download-help a {
    min-height: 46px;
    font-size: 1rem;
  }

  .steps-inline article {
    grid-template-columns: 46px 1fr;
    padding: var(--space-4);
  }

  .access-flow article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-height: 48px;
  }

  .steps-inline span {
    width: 38px;
    height: 38px;
  }

  .policy-grid a {
    min-height: 96px;
    font-size: 1rem;
  }

  .release-list div {
    flex-direction: column;
    gap: var(--space-1);
  }

  .release-list dd {
    text-align: left;
  }
}
