:root {
  --paper: #ffffff;
  --paper-soft: #f5f5ef;
  --ink: #1a1a00;
  --ink-2: #62624a;
  --ink-3: #8a8a73;
  --line: rgba(26, 26, 0, 0.1);
  --accent: #ffffcc;
  --accent-soft: #ffffe7;
  --polar: #87aeb8;
  --polar-deep: #356d7a;
  --stage: #f2f2ec;
  --stage-2: #ffffff;
  --stage-text: #1a1a00;
  --stage-muted: #62624a;
  --stage-line: rgba(26, 26, 0, 0.1);
  --cta-apple-bg: #000000;
  --cta-apple-bg-hover: #181818;
  --cta-apple-fg: #ffffff;
  --header-control-height: 56px;
  --ease-ui: cubic-bezier(0.22, 0.72, 0, 1);
  --ease-carousel: cubic-bezier(0.32, 0.72, 0, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  --font-display: "New York", "Iowan Old Style", Baskerville, Georgia, serif;
  --font-label: "SFMono-Regular", "SF Mono", Menlo, Monaco, monospace;
}

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

html {
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-x: none;
  background: var(--paper);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-x: none;
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
a { color: inherit; }

a { text-decoration: none; }
button { font: inherit; }

.landing {
  min-height: 100vh;
  min-height: 100svh;
}

.site-frame {
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 42px;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 0;
  margin: 10px 10px 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(26, 26, 0, 0.08);
  border-radius: clamp(24px, 2.3vw, 38px);
  background: var(--stage);
}

.hero__ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: var(--stage);
}

.hero__ambient::after {
  content: none;
}

.glass-chip {
  min-height: 38px;
  border: 1px solid var(--stage-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 34px rgba(26, 26, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
}

.glass-panel {
  border: 1px solid var(--stage-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(26, 26, 0, 0.12);
  -webkit-backdrop-filter: blur(24px) saturate(110%);
  backdrop-filter: blur(24px) saturate(110%);
}

.topbar {
  position: absolute;
  z-index: 20;
  top: clamp(18px, 2vw, 28px);
  left: clamp(18px, 2.5vw, 38px);
  right: clamp(18px, 2.5vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-grid;
  width: var(--header-control-height);
  height: var(--header-control-height);
  min-height: var(--header-control-height);
  flex: 0 0 var(--header-control-height);
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand__mark {
  display: block;
  width: 66px;
  height: 66px;
  object-fit: contain;
}

/* Half-turn spin on hover, so the mark reads as an interactive element.
   Driven by an animation rather than a transition on purpose: a transition
   would unwind the rotation backwards on mouse-out (a yo-yo, not a spin).
   The animation is dropped on mouse-out, which snaps the mark back to 0deg.

   That snap is invisible ONLY because the curved-S mark has near 2-fold
   rotational symmetry — measured at 14.7% mismatched ink between 0deg and
   180deg, confined to thin edges and imperceptible at the 66px header size.
   If the mark is ever redrawn, re-check that symmetry: a mark without it
   would visibly jump back on mouse-out, and this would have to return to a
   full 360deg turn (where the end state is identical by construction). */
@keyframes brand-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(180deg); }
}

/* Deliberately NOT --ease-ui here: that curve is a hard ease-out, which spends
   ~68% of a 360deg rotation in the first 120ms and then crawls the last few
   degrees. It reads as a snap, not a spin. A full rotation has no origin
   impulse to justify, so it wants an in-out curve that accelerates and settles. */
.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  animation: brand-spin 500ms cubic-bezier(0.65, 0, 0.35, 1);
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  height: var(--header-control-height);
  min-height: var(--header-control-height);
  padding: 7px 10px;
  transform: translateX(-50%);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.005em;
  transition: color 180ms var(--ease-ui);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 6px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-ui);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--stage-text); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.brand:focus-visible,
.site-nav a:focus-visible,
.header-cta:focus-visible,
.mobile-nav summary:focus-visible {
  outline: 2px solid var(--polar-deep);
  outline-offset: 3px;
}

.mobile-nav { display: none; }
.mobile-nav summary { list-style: none; cursor: pointer; }
.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav summary {
  width: 46px;
  min-height: 46px;
  place-items: center;
  position: relative;
}

.mobile-nav summary span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--stage-text);
  transition: transform 180ms var(--ease-ui), top 180ms var(--ease-ui);
}

.mobile-nav summary span:first-child { top: 19px; }
.mobile-nav summary span:last-child { top: 26px; }
.mobile-nav[open] summary span:first-child { top: 22px; transform: rotate(45deg); }
.mobile-nav[open] summary span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-nav__panel {
  position: absolute;
  top: 56px;
  right: 0;
  display: grid;
  width: min(250px, calc(100vw - 28px));
  padding: 9px;
  border-radius: 24px;
}

.mobile-nav__panel a {
  padding: 14px 15px;
  border-radius: 16px;
  color: var(--stage-muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.mobile-nav__panel a:hover { background: rgba(26, 26, 0, 0.055); color: var(--stage-text); }
.mobile-nav__panel a[aria-current="page"] {
  background: rgba(26, 26, 0, 0.055);
  color: var(--stage-text);
}

.hero__copy {
  position: absolute;
  z-index: 5;
  top: 52%;
  left: clamp(40px, 5vw, 82px);
  width: min(44vw, 700px);
  transform: translateY(-45%);
}

.callout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(18px, 1.65vw, 25px);
  color: var(--stage-text);
  font-family: var(--font-label);
  font-size: clamp(0.68rem, 0.68vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.callout span {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--polar);
}

h1 {
  max-width: none;
  margin: 0;
  color: var(--stage-text);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 4.45vw, 5.6rem);
  font-feature-settings: "kern" 1, "liga" 1;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-rendering: optimizeLegibility;
}

.headline-line {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.hero__sub {
  max-width: none;
  margin: clamp(23px, 1.8vw, 28px) 0 clamp(25px, 2vw, 31px);
  color: var(--stage-muted);
  font-size: clamp(0.88rem, 0.96vw, 1.06rem);
  font-weight: 460;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.subheadline-line {
  display: block;
  white-space: nowrap;
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 23px 0 19px;
  border: 0;
  border-radius: 999px;
  background: var(--cta-apple-bg);
  color: var(--cta-apple-fg);
  text-align: left;
  box-shadow: 0 18px 36px -22px rgba(0, 0, 0, 0.72);
  transition: transform 220ms var(--ease-ui), box-shadow 220ms var(--ease-ui), background-color 220ms var(--ease-ui);
}

.store-cta--soon {
  border: 1px solid rgba(26, 26, 0, 0.1);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(26, 26, 0, 0.46);
  box-shadow: none;
  cursor: not-allowed;
}

.store-cta--soon svg { fill: currentColor; stroke: none; }

.store-cta--apple,
.store-cta--apple:link,
.store-cta--apple:visited,
.store-cta--apple:hover,
.store-cta--apple:active,
.store-cta--apple:focus-visible {
  border-color: transparent;
  background-color: #000000;
  color: #ffffff;
}

.store-cta--apple:hover { background-color: #181818; }
.store-cta--apple svg,
.store-cta--apple small,
.store-cta--apple strong { color: #ffffff; fill: #ffffff; }

.store-cta:hover {
  transform: translateY(-2px);
  background: var(--cta-apple-bg-hover);
  box-shadow: 0 24px 42px -22px rgba(0, 0, 0, 0.8);
}

.store-cta--soon:hover { transform: none; background: rgba(255, 255, 255, 0.58); box-shadow: none; }
.store-cta:active { transform: scale(0.98); }
.store-cta:focus-visible { outline: 3px solid var(--polar); outline-offset: 4px; }
.store-cta svg { flex: none; }
.store-cta span { display: grid; }
.store-cta small { font-size: 0.6rem; line-height: 1.05; white-space: nowrap; }
.store-cta strong { font-size: 1.1rem; line-height: 1.05; letter-spacing: -0.025em; white-space: nowrap; }

.header-cta.store-cta {
  width: auto;
  height: var(--header-control-height);
  min-height: var(--header-control-height);
  gap: 10.62px;
  padding: 0 22.21px 0 18.34px;
  background: var(--cta-apple-bg);
  color: var(--cta-apple-fg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.header-cta.store-cta:hover { background: var(--cta-apple-bg-hover); }
.header-cta.store-cta svg { width: 21.24px; height: 25.1px; }
.header-cta.store-cta small { font-size: 0.579rem; }
.header-cta.store-cta strong { font-size: 1.062rem; }

.product-showcase {
  position: absolute;
  z-index: 4;
  top: clamp(102px, 8.6vw, 142px);
  right: clamp(12px, 2.1vw, 34px);
  bottom: clamp(18px, 1.8vw, 30px);
  left: 50%;
  min-width: 0;
  touch-action: pan-y;
}

.carousel-stage {
  position: absolute;
  inset: clamp(112px, 12vh, 142px) 0 clamp(92px, 10vh, 118px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.phone-carousel {
  position: absolute;
  inset: 0;
  perspective: 1100px;
}

.iphone-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  height: min(88%, 565px);
  aspect-ratio: 640 / 1408;
  overflow: visible;
  opacity: 0;
  transform: translate3d(-50%, -54%, 0) scale(0.72);
  filter: blur(5px) saturate(0.8);
  pointer-events: none;
  transition:
    transform 520ms var(--ease-carousel),
    opacity 280ms var(--ease-ui),
    filter 420ms var(--ease-ui);
  will-change: transform, opacity, filter;
}

.iphone-shell {
  position: absolute;
  inset: 0;
  overflow: visible;
  filter:
    drop-shadow(0 20px 22px rgba(26, 26, 0, 0.14))
    drop-shadow(0 6px 9px rgba(26, 26, 0, 0.09));
}

.iphone-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.iphone-mockup.is-active {
  z-index: 4;
  opacity: 1;
  transform: translate3d(-50%, -57%, 0) scale(1);
  filter: blur(0) saturate(1);
}

.iphone-mockup.is-prev,
.iphone-mockup.is-next {
  z-index: 2;
  opacity: 0.68;
  filter: blur(0.4px) saturate(0.9);
}

.iphone-mockup.is-prev {
  transform: translate3d(-118%, -54%, -70px) scale(0.78) rotate(-3.5deg);
}

.iphone-mockup.is-next {
  transform: translate3d(18%, -54%, -70px) scale(0.78) rotate(3.5deg);
}

.iphone-mockup.is-hidden {
  z-index: 1;
  opacity: 0;
  transform: translate3d(82%, -50%, -130px) scale(0.68) rotate(6deg);
}

.product-showcase.is-instant .iphone-mockup,
.product-showcase.is-instant .feature-copy {
  transition: none !important;
}

.product-screen {
  position: absolute;
  z-index: 2;
  inset: 4.8% 7.3% 3.2%;
  overflow: hidden;
  border-radius: 13% / 6%;
  background: transparent;
}

.product-screen--empty {
  display: grid;
  place-items: center;
  color: rgba(26, 26, 0, 0.42);
  font-family: var(--font-label);
  font-size: clamp(0.58rem, 0.66vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.feature-copy-stack {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 8%;
  left: 8%;
  height: clamp(96px, 10.5vh, 126px);
  text-align: center;
}

.feature-copy {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: var(--stage-text);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
  transition: transform 380ms var(--ease-carousel), opacity 220ms var(--ease-ui), filter 300ms var(--ease-ui);
}

.feature-copy p {
  margin: 0 0 10px;
  color: var(--polar-deep);
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 690;
  letter-spacing: -0.052em;
  line-height: 1;
}

.feature-copy small {
  display: block;
  color: var(--stage-muted);
  max-width: 42ch;
  font-size: clamp(0.74rem, 0.78vw, 0.88rem);
  line-height: 1.42;
}

.feature-copy.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 80ms;
}

.carousel-controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: clamp(64px, 7vh, 84px);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.carousel-arrows button {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.24)),
    rgba(242, 242, 236, 0.4);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  backdrop-filter: blur(18px) saturate(155%);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(26, 26, 0, 0.05),
    0 1px 2px rgba(26, 26, 0, 0.07),
    0 10px 28px rgba(26, 26, 0, 0.12);
  transition: transform 180ms var(--ease-ui);
}

.carousel-arrows button::before {
  position: absolute;
  z-index: -1;
  inset: 2px 4px auto;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.carousel-arrows button:hover {
  transform: translateY(-1px) scale(1.02);
}

.carousel-arrows button:active { transform: scale(0.96); }
.carousel-arrows svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.carousel-arrows button:focus-visible {
  outline: 2px solid var(--polar-deep);
  outline-offset: 3px;
}

.carousel-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.legal-bar {
  min-width: 0;
  padding: 0 clamp(18px, 3vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-3);
  font-size: 0.65rem;
  line-height: 1;
}

.legal-bar nav { display: flex; align-items: center; gap: clamp(13px, 1.5vw, 24px); }
.legal-bar a { transition: color 180ms var(--ease-ui); }
.legal-bar a:hover { color: var(--ink); }
.legal-bar a:focus-visible { outline: 2px solid var(--polar-deep); outline-offset: 3px; }

@media (max-width: 1180px) {
  .hero__copy { left: 38px; width: 44vw; }
  h1 { font-size: clamp(2.85rem, 4.55vw, 4.45rem); }
  .product-showcase { left: 50%; right: 24px; }
  .feature-copy-stack, .carousel-controls { right: 4%; left: 4%; }
}

@media (max-width: 960px) and (min-width: 781px) {
  .topbar { left: 22px; right: 22px; }
  .site-nav { padding-inline: 7px; }
  .site-nav a { padding-inline: 14px; font-size: 0.78rem; }
  .site-nav a::after { left: 14px; right: 14px; }
  .hero__copy { left: 28px; width: 45vw; }
  h1 { font-size: clamp(2.35rem, 4.35vw, 3.25rem); }
  .hero__sub { font-size: 0.78rem; }
  .product-showcase { left: 51%; }
  .feature-copy h2 { font-size: 1.45rem; }
  .feature-copy small { font-size: 0.68rem; }
  .iphone-mockup.is-prev { transform: translate3d(-108%, -54%, -70px) scale(0.72) rotate(-3deg); }
  .iphone-mockup.is-next { transform: translate3d(8%, -54%, -70px) scale(0.72) rotate(3deg); }
}

@media (max-width: 780px) {
  .site-frame { grid-template-rows: minmax(0, 1fr) 40px; }
  .hero { margin: 7px 7px 0; border-radius: 26px; }
  .hero__ambient {
    background: var(--stage);
  }
  .topbar { top: 14px; left: 14px; right: 14px; }
  .glass-chip { min-height: 42px; }
  .brand { width: 44px; height: 44px; min-height: 44px; flex-basis: 44px; }
  .brand__mark { width: 52px; height: 52px; }
  .site-nav, .header-cta { display: none; }
  .mobile-nav { display: block; margin-left: auto; }
  .mobile-nav summary { display: grid; width: 44px; min-height: 44px; }
  .mobile-nav summary span:first-child { top: 18px; }
  .mobile-nav summary span:last-child { top: 25px; }

  .hero__copy {
    top: 82px;
    left: 21px;
    width: calc(100% - 42px);
    transform: none;
  }

  .callout { gap: 8px; margin-bottom: 14px; font-size: clamp(0.58rem, 2.3vw, 0.68rem); }
  .callout span { width: 18px; height: 2px; }
  h1 { max-width: none; font-size: clamp(1.65rem, 8.1vw, 3.2rem); line-height: 0.93; }
  .hero__sub { max-width: 44ch; margin: 14px 0 17px; font-size: clamp(0.76rem, 3.25vw, 0.88rem); line-height: 1.45; }
  .subheadline-line { display: inline; white-space: normal; }
  .subheadline-line + .subheadline-line::before { content: " "; }
  .store-cta { min-height: 48px; gap: 8px; padding: 0 15px; }
  .store-cta svg { width: 18px; height: 22px; }
  .store-cta small { font-size: 0.5rem; }
  .store-cta strong { font-size: 0.88rem; }

  .product-showcase {
    top: 365px;
    right: 10px;
    bottom: 8px;
    left: 10px;
  }

  .carousel-stage { inset: 82px 0 66px; }
  .iphone-mockup {
    height: min(86%, 385px);
  }

  .iphone-mockup.is-prev { transform: translate3d(-106%, -54%, -70px) scale(0.7) rotate(-3deg); }
  .iphone-mockup.is-next { transform: translate3d(6%, -54%, -70px) scale(0.7) rotate(3deg); }

  .feature-copy-stack {
    top: 0;
    right: 4%;
    left: 2%;
    height: 76px;
  }

  .feature-copy p { margin-bottom: 6px; font-size: 0.52rem; }
  .feature-copy h2 { margin-bottom: 5px; font-size: clamp(1.05rem, 4.4vw, 1.4rem); }
  .feature-copy small { font-size: 0.62rem; line-height: 1.3; }
  .carousel-controls { bottom: 26px; }
  .carousel-arrows button { width: 44px; height: 44px; }
}

@media (max-width: 520px) {
  .hero__copy { top: 76px; left: 17px; width: calc(100% - 34px); }
  h1 { font-size: clamp(1.65rem, 8.1vw, 2.85rem); }
  .hero__sub { max-width: none; margin-block: 13px 15px; }
  .product-showcase { top: 350px; }
  .legal-bar { padding-inline: 14px; font-size: 0.58rem; }
  .legal-bar nav { gap: 10px; }
  .legal-bar nav a:nth-child(3),
  .legal-bar nav a:nth-child(4) { display: none; }
}

@media (max-width: 420px) {
  .store-actions { align-items: stretch; }
  .store-cta { min-width: 0; flex: 1 1 0; padding-inline: 11px; }
  .product-showcase { top: 342px; }
  .feature-copy small { display: none; }
  .feature-copy-stack { height: 54px; }
  .carousel-stage { inset-block-start: 58px; }
}

@media (max-height: 760px) and (max-width: 780px) {
  .hero__copy { top: 70px; }
  .callout { margin-bottom: 10px; }
  h1 { font-size: clamp(1.65rem, 8.1vw, 2.6rem); }
  .hero__sub { margin-block: 10px 12px; font-size: clamp(0.74rem, 3.1vw, 0.84rem); }
  .store-cta { min-height: 44px; }
  .product-showcase { top: 310px; }
  .carousel-stage { inset-block-start: 68px; }
}

@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;
  }
}
