:root {
  color-scheme: light;
  --accent: #ad4128;
  --accent-text: #ad4128;
  --accent-strong: #c2492a;
  --accent-ink: #ffffff;
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #f1ece2;
  --surface-warm: #fbf7ef;
  --ink: #1a1816;
  --muted: #6a655d;
  --rule: #e2ddd2;
  --dark: #1a1816;
  --dark-2: #2a2622;
  --cream: #f9f4ea;
  --max: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --accent-text: #e07a55;
    --bg: #121416;
    --surface: #1b1d20;
    --surface-soft: #23211f;
    --surface-warm: #24211d;
    --ink: #f6f2ea;
    --muted: #c9c1b5;
    --rule: #34302b;
    --dark: #111315;
    --dark-2: #1b1d20;
    --cream: #f9f4ea;
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 40px);
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 86%, transparent);
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease,
    box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  box-shadow: 0 8px 18px rgba(173, 65, 40, 0.18);
  transform: translateY(-1px);
}

.button.secondary {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink);
  border-color: color-mix(in srgb, var(--rule) 84%, var(--ink));
}

.hero .button.secondary {
  background: transparent;
  color: var(--cream);
  border-color: color-mix(in srgb, var(--cream) 42%, transparent);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  background: color-mix(in srgb, var(--cream) 10%, transparent);
  border-color: color-mix(in srgb, var(--cream) 62%, transparent);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: clamp(480px, 56vh, 620px);
  display: flex;
  align-items: center;
  padding: 84px clamp(20px, 5vw, 40px) 64px;
  background:
    linear-gradient(135deg, #161513 0%, #1f1b18 55%, #2a2622 100%);
  color: var(--cream);
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--dark) 62%, transparent) 0%, color-mix(in srgb, var(--dark) 34%, transparent) 100%),
    linear-gradient(0deg, color-mix(in srgb, var(--accent) 11%, transparent) 0%, transparent 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
}

.hero-content {
  width: 100%;
  max-width: 660px;
  min-width: 0;
}

.hero-mark {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: color-mix(in srgb, var(--cream) 88%, var(--accent));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--accent-text);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: clamp(54px, 4.5vw + 28px, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 14ch;
  font-family: Teko, "Arial Narrow", Impact, ui-sans-serif, system-ui,
    sans-serif;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--cream) 92%, transparent);
  font-size: 22px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-footnote {
  max-width: 620px;
  margin: 18px 0 0;
  color: color-mix(in srgb, var(--cream) 78%, transparent);
  overflow-wrap: break-word;
}

.product-peek {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: calc(100vw - 40px);
  max-width: var(--max);
  margin: -42px auto 0;
}

.product-peek article {
  min-width: 0;
}

.product-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  min-height: 154px;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(15, 17, 19, 0.12);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease,
    transform 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 44%, var(--rule));
  box-shadow: 0 22px 52px rgba(15, 17, 19, 0.16);
  transform: translateY(-2px);
}

.product-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 42%, transparent);
  outline-offset: 4px;
}

.product-card-body {
  display: block;
  min-width: 0;
}

.product-peek img {
  width: 96px;
  height: 126px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--rule);
  border-radius: 8px;
}

.product-peek img.thumb-focus-stats {
  object-fit: cover;
  object-position: center 58%;
}

.product-card-title {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.product-card-copy {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.preview-modal[hidden] {
  display: none;
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 18, 16, 0.68);
  cursor: pointer;
}

.preview-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 36px));
  max-height: min(860px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid color-mix(in srgb, var(--cream) 22%, transparent);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

.preview-modal.is-open .preview-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.preview-close {
  position: sticky;
  top: 14px;
  z-index: 3;
  float: right;
  min-height: 44px;
  margin: 14px 14px 0 0;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.preview-close:focus-visible,
.preview-close:hover {
  border-color: color-mix(in srgb, var(--accent) 46%, var(--rule));
  outline: 3px solid color-mix(in srgb, var(--accent) 34%, transparent);
  outline-offset: 3px;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding: 62px clamp(22px, 4vw, 46px) clamp(24px, 4vw, 46px);
}

.preview-stage {
  position: relative;
  width: min(360px, 100%);
  justify-self: center;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--surface-warm);
  box-shadow: 0 20px 56px rgba(15, 17, 19, 0.16);
}

.preview-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 13px;
}

.preview-callouts {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  --frame: var(--accent);
  --halo: rgba(255, 255, 255, 0.96);
  --lift: rgba(15, 17, 19, 0.28);
  --show-leaders: 1;
}

/* Encapsulating frame: hollow ring with built-in clearance, never covers the element */
.preview-frame {
  position: absolute;
  left: var(--bx);
  top: var(--by);
  width: var(--bw);
  height: var(--bh);
  border-radius: 9px;
  background: transparent;
  outline: 2.5px solid var(--frame);
  outline-offset: 6px;
  box-shadow: 0 0 0 1px var(--halo), 0 2px 9px var(--lift);
  animation: preview-frame-in 240ms ease-out both;
}

.preview-frame::after {
  content: "";
  position: absolute;
  inset: -8.5px;
  border-radius: 13px;
  outline: 1.5px solid var(--halo);
  pointer-events: none;
}

/* Number tag: pinned to a frame corner, hung fully outside into empty pixels */
.preview-tag {
  position: absolute;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--frame);
  color: var(--accent-ink);
  font: 800 13px/1 Manrope, system-ui, sans-serif;
  box-shadow: 0 0 0 2px #ffffff,
    0 0 0 3px color-mix(in srgb, var(--frame) 30%, transparent),
    0 2px 6px var(--lift);
}

.preview-frame[data-corner="tr"] .preview-tag { top: 0; right: 0; transform: translate(40%, -145%); }
.preview-frame[data-corner="tl"] .preview-tag { top: 0; left: 0; transform: translate(-40%, -145%); }
.preview-frame[data-corner="br"] .preview-tag { bottom: 0; right: 0; transform: translate(40%, 145%); }
.preview-frame[data-corner="bl"] .preview-tag { bottom: 0; left: 0; transform: translate(-40%, 145%); }
.preview-frame[data-corner="r"] .preview-tag { top: 50%; right: 0; transform: translate(145%, -50%); }
.preview-frame[data-corner="l"] .preview-tag { top: 50%; left: 0; transform: translate(-145%, -50%); }

@keyframes preview-frame-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

@media (forced-colors: active) {
  .preview-frame { outline-color: Highlight; }
  .preview-frame::after { outline-color: Canvas; }
  .preview-tag { background: Highlight; color: HighlightText; forced-color-adjust: none; }
}

@media (max-width: 360px) {
  .preview-tag { width: 22px; height: 22px; font-size: 12px; }
}

.preview-legend {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.preview-legend[hidden] {
  display: none;
}

.preview-legend li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.preview-legend-num {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 800;
}

.preview-panel {
  min-width: 0;
}

.preview-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

#preview-title:focus {
  outline: none;
}

.preview-copy {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 17px;
}

.preview-copy p {
  margin: 0;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 40px);
  scroll-margin-top: 80px;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 2.2vw + 18px, 44px);
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  padding: 26px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
}

.pro-card {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--rule));
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-warm) 78%, var(--surface)) 0%, var(--surface) 46%);
}

.plan-label {
  margin: 0 0 10px;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
}

.plan-price {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.plan-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.plan-card li + li {
  margin-top: 8px;
}

.subscription-note {
  max-width: 768px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface-soft);
}

.subscription-note h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.subscription-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.showcase {
  background: var(--dark);
  color: var(--cream);
  scroll-margin-top: 80px;
}

.showcase .section {
  max-width: 1480px;
}

.showcase .section-heading p {
  color: color-mix(in srgb, var(--cream) 78%, transparent);
}

.screenshot-carousel {
  position: relative;
  margin: 0 clamp(-26px, -3vw, -14px);
}

.screenshot-carousel::before,
.screenshot-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 28px;
  z-index: 2;
  width: clamp(28px, 7vw, 90px);
  pointer-events: none;
  opacity: 1;
  transition: opacity 160ms ease;
}

.screenshot-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
}

.screenshot-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--dark) 0%, transparent 100%);
}

.screenshot-carousel.at-start::before,
.screenshot-carousel.at-end::after {
  opacity: 0;
}

.screenshot-strip {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  align-items: flex-start;
  margin: 0;
  padding: 4px clamp(26px, 5vw, 58px) 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: clamp(26px, 5vw, 58px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}

.screenshot-strip::-webkit-scrollbar {
  display: none;
}

.screenshot-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.screenshot-strip:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.phone-shot {
  flex: 0 0 min(78vw, 300px);
  overflow: hidden;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--cream) 14%, transparent);
  border-radius: 8px;
  background: var(--dark-2);
  scroll-snap-align: start;
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}

.phone-shot figcaption {
  padding: 12px 14px 14px;
  color: color-mix(in srgb, var(--cream) 78%, transparent);
  font-size: 14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}

.carousel-dots button {
  position: relative;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cream) 48%, transparent);
  cursor: pointer;
  opacity: 0.9;
}

.carousel-dots button::before {
  content: "";
  position: absolute;
  inset: -9px;
}

.carousel-dots button.active {
  width: 22px;
  background: var(--accent);
}

.carousel-dots button:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.safety {
  border-top: 1px solid var(--rule);
}

.download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--rule);
}

.download .hero-footnote {
  color: var(--muted);
}

.qr-panel {
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
}

.qr-panel img {
  width: 210px;
  height: 210px;
}

.launch-panel {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.launch-panel .app-icon-large {
  width: 96px;
  height: 96px;
  border-radius: 18px;
}

.qr-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-shell {
  max-width: 690px;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 32px) 88px;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 42px;
}

.legal-tabs a {
  padding: 9px 12px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-tabs a.active {
  border-color: var(--accent);
  color: var(--accent);
}

.doc h1 {
  max-width: none;
  margin-bottom: 6px;
  font-size: 52px;
}

.effective {
  color: var(--muted);
  font-size: 14px;
}

.legal-shell h2 {
  margin: 30px 0 8px;
  font-size: 20px;
}

.body {
  color: var(--ink);
}

.body + .body {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  text-decoration: none;
  color: var(--ink);
}

@media (max-width: 980px) {
  .product-peek,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-peek article:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 560px;
    padding: 72px 20px 58px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--dark) 72%, transparent) 0%, color-mix(in srgb, var(--dark) 34%, transparent) 100%),
      linear-gradient(0deg, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 54%);
  }

  .hero-content,
  .hero-copy,
  .hero-footnote,
  .hero-actions {
    max-width: calc(100vw - 40px);
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-copy,
  .hero-footnote {
    max-width: 34ch;
    overflow-wrap: anywhere;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .doc h1 {
    font-size: 36px;
  }

  .product-peek,
  .feature-grid,
  .plan-grid,
  .download {
    grid-template-columns: 1fr;
  }

  .product-peek {
    margin-top: -28px;
  }

  .product-peek article:first-child {
    grid-column: auto;
  }

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-stage {
    width: min(320px, 100%);
  }

  .qr-panel {
    width: min(100%, 280px);
  }
}

@media (max-width: 520px) {
  .hero-copy {
    font-size: 18px;
  }

  .product-peek {
    width: calc(100vw - 40px);
    max-width: 460px;
  }

  .product-card {
    display: block;
  }

  .product-peek img {
    width: 100%;
    height: 154px;
    margin-bottom: 12px;
  }

  .doc h1 {
    font-size: 32px;
  }

  .preview-modal {
    padding: 12px;
  }

  .preview-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    border-radius: 8px;
  }

  .preview-layout {
    padding: 56px 16px 20px;
  }

  .preview-close {
    margin-right: 10px;
  }
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 60;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid color-mix(in srgb, var(--accent) 40%, #ffffff);
  outline-offset: 2px;
}

.tm {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .product-card,
  .preview-dialog,
  .screenshot-carousel::before,
  .screenshot-carousel::after {
    transition: opacity 1ms linear, background-color 1ms linear,
      border-color 1ms linear, box-shadow 1ms linear;
  }

  .button:hover,
  .button:focus-visible,
  .product-card:hover,
  .product-card:focus-visible,
  .preview-dialog {
    transform: none;
  }

  .preview-frame {
    animation: none;
  }
}
