:root {
  color-scheme: light dark;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  --ease: 220ms cubic-bezier(0.22, 1, 0.36, 1);
  --theme-ease: 640ms cubic-bezier(0.2, 0.9, 0.2, 1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --border: rgba(32, 34, 39, 0.08);
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: rgba(255, 255, 255, 0.86);
  --surface-muted: rgba(248, 249, 252, 0.8);
  --text: #111827;
  --muted: #6b7280;
  --accent: #1f2937;
  --shadow: 0 20px 60px rgba(22, 24, 29, 0.08);
  --page-top: #f6f7fb;
  --page-bottom: #eef1f7;
  --page-glow: rgba(205, 207, 212, 0.32);
  --orb-one-bg: radial-gradient(circle, rgba(206, 208, 213, 0.48), transparent 70%);
  --orb-two-bg: radial-gradient(circle, rgba(255, 255, 255, 0.38), transparent 72%);
}

html[data-theme="dark"] {
  --border: rgba(255, 255, 255, 0.045);
  --surface: rgba(41, 41, 45, 0.84);
  --surface-strong: rgba(50, 50, 55, 0.94);
  --surface-muted: rgba(59, 59, 64, 0.9);
  --text: #f3f3f5;
  --muted: #b7b7bc;
  --accent: #e5e7eb;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  --page-top: #1f1f23;
  --page-bottom: #17171b;
  --page-glow: rgba(190, 190, 196, 0.08);
  --orb-one-bg: radial-gradient(circle, rgba(172, 172, 178, 0.11), transparent 70%);
  --orb-two-bg: radial-gradient(circle, rgba(146, 146, 152, 0.09), transparent 72%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--page-top);
  transition: background-color var(--theme-ease);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top center, var(--page-glow), transparent 28%),
    linear-gradient(180deg, var(--page-top), var(--page-bottom));
  transition: background var(--theme-ease), color 320ms var(--ease);
}

::view-transition-group(root) {
  animation-duration: 620ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 620ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  animation-name: theme-fade-out;
}

::view-transition-new(root) {
  animation-name: theme-fade-in;
}

@keyframes theme-fade-out {
  from {
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
  }

  to {
    opacity: 0;
    filter: blur(14px) saturate(0.94) brightness(0.97);
  }
}

@keyframes theme-fade-in {
  from {
    opacity: 0;
    filter: blur(16px) saturate(1.04) brightness(1.03);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
  }
}

body.is-lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.background-orb {
  position: fixed;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.24;
  transition: opacity var(--theme-ease), transform var(--theme-ease), background var(--theme-ease);
}

.background-orb--one {
  top: -7rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: var(--orb-one-bg);
}

.background-orb--two {
  left: -7rem;
  bottom: 8rem;
  width: 16rem;
  height: 16rem;
  background: var(--orb-two-bg);
}

html[data-theme="dark"] .background-orb--one {
  opacity: 0.22;
  transform: translate3d(-8px, 8px, 0) scale(1.04);
}

html[data-theme="dark"] .background-orb--two {
  opacity: 0.16;
  transform: translate3d(10px, -10px, 0) scale(1.06);
}

.site-shell,
.site-shell--document {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 24px));
  margin: 18px auto 36px;
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  transition:
    background var(--theme-ease),
    border-color 320ms var(--ease),
    box-shadow var(--theme-ease),
    color 320ms var(--ease);
}

.site-header,
.document,
.store-summary,
.store-gallery,
.store-description {
  padding: 18px;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__glass {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(22, 24, 29, 0.08);
  overflow: hidden;
}

html[data-theme="dark"] .brand__glass {
  background: #2a2a2e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.brand__glass::after {
  display: none;
}

.brand__logo {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.theme-logo {
  display: none;
}

html[data-theme="light"] .theme-logo--light,
html:not([data-theme]) .theme-logo--light,
html[data-theme="dark"] .theme-logo--dark {
  display: block;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.button--secondary {
  white-space: nowrap;
  color: var(--muted);
  transition: color var(--ease), opacity var(--ease);
}

.site-nav a:hover,
.button--secondary:hover {
  color: var(--text);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.locale-picker {
  position: relative;
}

.locale-trigger,
.theme-toggle,
.platform-switcher button,
.button {
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  transition:
    transform var(--ease),
    border-color 320ms var(--ease),
    background var(--theme-ease),
    color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.locale-trigger {
  min-width: 76px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.locale-trigger:hover,
.theme-toggle:hover,
.platform-switcher button:hover,
.button:hover,
.screenshot-card:hover {
  transform: translateY(-1px);
}

.locale-trigger__flag {
  font-size: 1rem;
  line-height: 1;
}

.locale-trigger__code,
.locale-option__code {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locale-trigger__chevron {
  color: var(--muted);
}

.locale-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(240px, calc(100vw - 32px));
  max-height: min(420px, calc(100vh - 110px));
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  overscroll-behavior: contain;
  scrollbar-width: thin;
  z-index: 100;
}

.locale-menu::-webkit-scrollbar {
  width: 8px;
}

.locale-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(107, 114, 128, 0.42);
}

.locale-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.locale-option:hover,
.locale-option.is-selected {
  background: var(--surface-muted);
}

.locale-option__name {
  min-width: 0;
}

.locale-option__check {
  color: var(--accent);
  font-weight: 700;
}

.theme-toggle {
  position: relative;
  width: 68px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
}

.theme-toggle[disabled] {
  pointer-events: none;
}

.theme-toggle__track {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
}

.theme-toggle__track::before,
.theme-toggle__track::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity var(--theme-ease), transform var(--theme-ease), filter 420ms var(--ease);
}

.theme-toggle__track::before {
  background: linear-gradient(180deg, rgba(255, 214, 120, 0.3), rgba(255, 255, 255, 0));
  opacity: 1;
}

.theme-toggle__track::after {
  background: linear-gradient(180deg, rgba(182, 182, 187, 0.22), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: scale(1.08);
}

html[data-theme="dark"] .theme-toggle__track::before {
  opacity: 0;
  transform: scale(1.08);
}

html[data-theme="dark"] .theme-toggle__track::after {
  opacity: 1;
  transform: scale(1);
}

.theme-toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58));
  box-shadow: 0 8px 18px rgba(22, 24, 29, 0.14);
  transform: translateX(0) rotate(0deg) scale(1);
  will-change: transform;
  transition:
    transform var(--theme-ease),
    background 420ms var(--ease),
    box-shadow 420ms var(--ease),
    filter 420ms var(--ease);
}

html[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(26px) rotate(-10deg) scale(0.98);
  background: linear-gradient(180deg, rgba(66, 66, 70, 0.95), rgba(34, 34, 37, 0.88));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.theme-toggle__icon {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  transform: translateY(-50%);
  color: var(--muted);
  will-change: transform, opacity;
  transition: opacity 420ms var(--ease), transform var(--theme-ease), color 320ms var(--ease);
}

.theme-toggle__icon--sun {
  left: 12px;
}

.theme-toggle__icon--moon {
  right: 12px;
}

html:not([data-theme="dark"]) .theme-toggle__icon--sun {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(0deg);
}

html:not([data-theme="dark"]) .theme-toggle__icon--moon {
  opacity: 0.38;
  transform: translateY(-50%) scale(0.82) rotate(18deg);
}

html[data-theme="dark"] .theme-toggle__icon--sun {
  opacity: 0.34;
  transform: translateY(-50%) scale(0.82) rotate(-18deg);
}

html[data-theme="dark"] .theme-toggle__icon--moon {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(0deg);
}

html.is-theme-switching .panel,
html.is-theme-switching .background-orb,
html.is-theme-switching .theme-toggle__thumb,
html.is-theme-switching .theme-toggle__icon,
html.is-theme-switching .theme-toggle__track::before,
html.is-theme-switching .theme-toggle__track::after {
  will-change: opacity, transform, background, box-shadow, filter;
}

.store-main {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.store-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.store-summary__icon-wrap {
  position: relative;
  width: 152px;
  height: 152px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(22, 24, 29, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

html[data-theme="dark"] .store-summary__icon-wrap {
  background: #2a2a2e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.store-summary__icon-wrap::after {
  display: none;
}

.store-summary__icon {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.store-summary__body {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-summary h1,
.document h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.store-summary h1 {
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 0.94;
}

.store-summary__subtitle,
.store-summary__meta,
.store-summary__note,
.store-description__copy p,
.document__lede,
.document__body p,
.document__body li,
.section-heading__intro {
  color: var(--muted);
  line-height: 1.62;
}

.store-summary__subtitle {
  margin: 14px 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}

.store-summary__meta,
.store-summary__note {
  margin: 0;
}

.feature-tags,
.platform-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.feature-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}

.store-summary__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.store-gallery {
  overflow: hidden;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease), opacity var(--ease);
}

.button--primary {
  border-color: transparent;
  background: var(--accent);
  color: white;
}

.button--secondary {
  color: var(--text);
}

.button--glass-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.3)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(229, 231, 235, 0.08));
  color: #111318;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 34px rgba(24, 24, 28, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  animation: appstore-pulse 2.8s ease-in-out infinite;
}

.button--glass-cta::before,
.button--glass-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.button--glass-cta::before {
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0));
  opacity: 0.72;
  z-index: -1;
}

.button--glass-cta::after {
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.1) 26%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.12) 68%, transparent 84%);
  transform: translateX(-145%) skewX(-18deg);
  animation: appstore-shimmer 4.8s linear infinite;
}

html[data-theme="dark"] .button--glass-cta {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(250, 250, 250, 0.22), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(212, 212, 216, 0.04));
  color: #f5f5f7;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 20px 44px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(255, 255, 255, 0.06);
}

.button--glass-cta:hover {
  transform: translateY(-1px) scale(1.01);
}

#app-store-button.is-disabled,
#app-store-button[aria-disabled="true"] {
  opacity: 1;
}

@keyframes appstore-shimmer {
  0% {
    transform: translateX(-145%) skewX(-18deg);
  }

  56%,
  100% {
    transform: translateX(155%) skewX(-18deg);
  }
}

@keyframes appstore-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 16px 34px rgba(24, 24, 28, 0.14),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 20px 42px rgba(24, 24, 28, 0.18),
      0 0 24px rgba(255, 255, 255, 0.24);
  }
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}

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

.section-heading--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.98;
}

.platform-switcher button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}

.platform-switcher {
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.platform-switcher::-webkit-scrollbar {
  display: none;
}

.platform-switcher button.is-active {
  border-color: transparent;
  background: var(--text);
  color: var(--surface-strong);
}

.screenshot-rail {
  --screenshot-width: clamp(248px, 25vw, 292px);
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  padding: 2px 2px 10px;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.screenshot-rail[data-platform="ipad"] {
  --screenshot-width: clamp(380px, 42vw, 520px);
}

.screenshot-rail[data-platform="mac"],
.screenshot-rail[data-platform="appleTv"],
.screenshot-rail[data-platform="appleVision"] {
  --screenshot-width: clamp(560px, 58vw, 760px);
}

.screenshot-card {
  flex: 0 0 var(--screenshot-width);
  width: var(--screenshot-width);
  min-width: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface-muted);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 18px 40px rgba(22, 24, 29, 0.08);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}

.screenshot-card--ipad img,
.screenshot-rail[data-platform="ipad"] .screenshot-card img {
  aspect-ratio: 4 / 3;
}

.screenshot-card--mac img,
.screenshot-rail[data-platform="mac"] .screenshot-card img,
.screenshot-card--appleTv img,
.screenshot-rail[data-platform="appleTv"] .screenshot-card img,
.screenshot-card--appleVision img,
.screenshot-rail[data-platform="appleVision"] .screenshot-card img {
  aspect-ratio: 16 / 10;
}

.store-description__copy {
  display: grid;
  gap: 14px;
}

.store-description__copy p {
  margin: 0;
}

.feature-tags {
  margin-top: 18px;
}

.document {
  margin-top: 16px;
}

.document__body {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.document__body section {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.document__body h2 {
  margin: 0 0 10px;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.document__body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.document__body a:hover,
.document__body a:focus-visible {
  opacity: 0.72;
}

.document__body ul {
  margin: 0;
  padding-left: 18px;
}

.document__body li + li {
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1320px, 100%);
  max-height: calc(100vh - 72px);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .button--glass-cta {
    animation: none;
  }

  .button--glass-cta::after {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-tools {
    justify-content: space-between;
  }

  .store-summary {
    grid-template-columns: 1fr;
  }

  .store-summary__actions {
    justify-items: start;
  }
}

@media (max-width: 780px) {
  .site-shell,
  .site-shell--document {
    width: min(1120px, calc(100vw - 18px));
    margin-top: 10px;
    margin-bottom: 22px;
  }

  .site-header,
  .document,
  .store-summary,
  .store-gallery,
  .store-description {
    padding: 16px;
    border-radius: 24px;
  }

  .store-summary__icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 26px;
  }

  .screenshot-rail {
    --screenshot-width: 72vw;
  }

  .screenshot-rail[data-platform="ipad"] {
    --screenshot-width: 86vw;
  }

  .screenshot-rail[data-platform="mac"],
  .screenshot-rail[data-platform="appleTv"],
  .screenshot-rail[data-platform="appleVision"] {
    --screenshot-width: min(92vw, 640px);
  }

}
