:root {
  --paper: #f1efee;
  --ink: #323232;
  --muted: #9d9d9d;
  --header-height: 54px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", Arial, sans-serif;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 2147483646;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  place-items: center;
  color: #202020;
  font-size: 18px;
  letter-spacing: -0.03em;
  mix-blend-mode: darken;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.fixed-wordmark {
  position: fixed;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: clamp(980px, 88vw, 1491px);
  max-width: none;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: opacity;
}

.fixed-wordmark img {
  width: 100%;
  max-width: none;
  height: auto;
}

main {
  position: relative;
  z-index: 3;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: visible;
}

.hero__visual {
  position: relative;
  z-index: 1;
  width: min(82vw, 820px);
  aspect-ratio: 1;
  opacity: 1;
  transform: translateY(-4vh);
  will-change: opacity;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  inset: -45%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 26%, rgba(6, 230, 255, 0.3), transparent 30%),
    radial-gradient(circle at 28% 48%, rgba(0, 41, 255, 0.27), transparent 33%),
    radial-gradient(circle at 72% 57%, rgba(116, 192, 70, 0.24), transparent 32%);
  filter: blur(52px);
  opacity: 0.75;
}

.hero__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.hero__mandala {
  will-change: transform;
}

.hero__mandala--color {
  z-index: 1;
  animation: rotate-color 110s linear infinite;
}

.hero__mandala--characters {
  z-index: 2;
  animation: rotate-characters 140s linear infinite;
}

.hero__device {
  z-index: 3;
  transform: scale(0.748);
  filter: drop-shadow(0 24px 24px rgba(47, 47, 47, 0.16));
}

.floating-purchase {
  position: fixed;
  z-index: 2147483647;
  bottom: clamp(24px, 6vh, 64px);
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  transform: translateX(-50%);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.floating-purchase.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.floating-purchase p {
  margin: 0;
  color: #b8b8b8;
  font-size: 12px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.buy-button {
  --active: 0;
  --spark-duration: 1.8s;
  --spark-bg:
    radial-gradient(
      40% 50% at center 100%,
      hsl(270 97% 72% / var(--active)),
      transparent
    ),
    radial-gradient(
      80% 100% at center 120%,
      hsl(260 97% 70% / var(--active)),
      transparent
    ),
    hsl(260 calc(var(--active) * 97%) calc((var(--active) * 44%) + 12%));
  position: relative;
  display: inline-flex;
  width: auto;
  min-width: 202px;
  height: 50px;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: visible;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--spark-bg);
  box-shadow:
    0 0 calc(var(--active) * 44px) calc(var(--active) * 8px) hsl(260 97% 61% / 0.5),
    0 1px 0 hsl(260 calc(var(--active) * 97%) calc((var(--active) * 50%) + 30%)) inset,
    0 -1px 0 hsl(260 calc(var(--active) * 97%) calc(var(--active) * 60%)) inset;
  color: #202023;
  cursor: pointer;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Geist", sans-serif;
  font-size: 18px;
  font-variation-settings: "wdth" 100;
  font-weight: 500;
  letter-spacing: 0;
  transform: scale(calc(1 + (var(--active) * 0.06)));
  transition:
    background 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.buy-button::before {
  position: absolute;
  z-index: 1;
  inset: -4px;
  border: 4px solid hsl(260 97% 50% / 0.5);
  border-radius: inherit;
  content: "";
  opacity: var(--active);
  pointer-events: none;
  transition: opacity 250ms ease;
}

.buy-button.floating-buy {
  z-index: 1;
}

.buy-button__spark,
.buy-button__backdrop {
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.buy-button__spark {
  z-index: 2;
  inset: 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(#fff, transparent 50%);
  mask: linear-gradient(#fff, transparent 50%);
  animation: buy-spark-flip calc(var(--spark-duration) * 2) infinite steps(2, end);
}

.buy-button__spark::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 200%;
  aspect-ratio: 1;
  background: conic-gradient(from 0deg, transparent 0 340deg, #fff 360deg);
  content: "";
  opacity: calc(var(--active) + 0.4);
  transform: translate(-50%, -15%) rotate(-90deg);
  transform-origin: center;
  animation: buy-spark-rotate var(--spark-duration) linear infinite both;
  transition: opacity 250ms ease;
}

.buy-button__backdrop {
  z-index: 2;
  inset: 2px;
  background: var(--spark-bg);
  transition: background 250ms ease;
}

.buy-button__sparkle {
  position: relative;
  z-index: 3;
  width: 21px;
  height: 21px;
  flex: none;
  overflow: visible;
  transform: translate(-2px, -1px);
}

.buy-button__sparkle path {
  --base: 38%;
  color: hsl(0 0% calc((var(--active) * 62%) + var(--base)));
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  transition: color 250ms ease;
}

.buy-button__sparkle path:nth-child(1) {
  --base: 48%;
  --spark-scale: 0.55;
  --spark-delay: 0.1s;
}

.buy-button__sparkle path:nth-child(2) {
  --base: 34%;
  --spark-scale: 1.5;
  --spark-delay: 0.2s;
}

.buy-button__sparkle path:nth-child(3) {
  --base: 42%;
  --spark-scale: 2.2;
  --spark-delay: 0.35s;
}

.buy-button__label {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  font-feature-settings: "ss16" 1;
  line-height: normal;
  text-align: center;
  background: linear-gradient(
    90deg,
    hsl(0 0% calc((var(--active) * 12%) + 88%)),
    hsl(0 0% calc((var(--active) * 30%) + 70%))
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  transition: background 250ms ease;
}

.buy-button__particle-pen {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 200%;
  aspect-ratio: 1;
  opacity: var(--active);
  pointer-events: none;
  transform: translate(-50%, -50%);
  -webkit-mask: radial-gradient(#fff, transparent 65%);
  mask: radial-gradient(#fff, transparent 65%);
  transition: opacity 250ms ease;
}

.buy-button__particle {
  position: absolute;
  top: calc(var(--y) * 1%);
  left: calc(var(--x) * 1%);
  width: calc(var(--size, 0.5) * 1rem);
  aspect-ratio: 1;
  opacity: var(--alpha, 1);
  transform-origin: var(--origin-x, 1000%) var(--origin-y, 1000%);
  animation: buy-particle-float calc(var(--duration, 1) * 1s) calc(var(--delay) * -1s) infinite linear;
  animation-play-state: var(--play-state, paused);
}

.buy-button__particle:nth-child(even) {
  animation-direction: reverse;
}

.buy-button__particle path {
  fill: hsl(0 0% 90%);
  stroke: none;
}

.buy-button:is(:hover, :focus-visible) {
  --active: 1;
  --play-state: running;
}

.buy-button:is(:hover, :focus-visible) .buy-button__sparkle path {
  animation: buy-spark-bounce 0.6s calc(375ms + var(--spark-delay)) both;
}

.buy-button:active {
  transform: scale(1);
}

.buy-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 6px;
}

/* Figma glass button — adapted from the standalone reference in /button code. */
.buy-button {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --pointer-inverse-x: 50%;
  --pointer-inverse-y: 50%;
  --glow-x: 0px;
  --glow-y: 0px;
  --glow-x-reverse: 0px;
  --glow-y-reverse: 0px;
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: 210px;
  min-width: 210px;
  height: 64px;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: visible;
  padding: 0 16px;
  border: 0;
  border-radius: 1000px;
  background:
    radial-gradient(
      circle at var(--pointer-x) var(--pointer-y),
      rgb(255 255 255 / 42%) 0%,
      transparent 38%
    ),
    linear-gradient(
      90.56deg,
      rgb(255 11 11 / 21%) -61.91%,
      rgb(244 255 33 / 21%) -17.58%,
      rgb(34 255 49 / 21%) 28.43%,
      rgb(80 97 255 / 21%) 70.25%,
      rgb(255 23 220 / 21%) 112.07%
    ),
    #fff;
  background-size: 100% 100%, 145% 100%;
  background-position: center, var(--pointer-x) center;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  box-shadow:
    1.25px 0 0 -0.75px #d0d0d0,
    -1.25px 0 0 -0.75px #d0d0d0,
    0 0 0 0.5px #e8e8e8,
    0 8px 15px rgb(0 0 0 / 2%),
    inset 0 40px 10px -40px rgb(40 40 40 / 20%),
    inset 0 -40px 10px -40px rgb(40 40 40 / 20%);
  color: #202023;
  cursor: pointer;
  appearance: none;
  isolation: isolate;
  transform: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-position 140ms ease-out;
}

.buy-button.floating-buy {
  z-index: 3;
}

.buy-button::before {
  position: absolute;
  z-index: -1;
  inset: 3px;
  border: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at var(--pointer-x) var(--pointer-y),
      rgb(255 255 255 / 58%) 0%,
      transparent 32%
    ),
    linear-gradient(
      90.56deg,
      rgb(255 11 11 / 65%) -61.91%,
      rgb(244 255 33 / 65%) -17.58%,
      rgb(34 255 49 / 65%) 28.43%,
      rgb(80 97 255 / 65%) 70.25%,
      rgb(255 23 220 / 65%) 112.07%
    );
  background-size: 100% 100%, 180% 100%;
  background-position: center, var(--pointer-x) center;
  content: "";
  filter: blur(16px);
  opacity: 0;
  transform: translate3d(var(--glow-x), var(--glow-y), 0) scale(0.94);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 140ms cubic-bezier(0.22, 1, 0.36, 1),
    background-position 140ms ease-out,
    filter 180ms ease;
}

.buy-button::after {
  position: absolute;
  z-index: -2;
  inset: -5px;
  border-radius: 48% 52% 46% 54% / 55% 44% 56% 45%;
  background:
    radial-gradient(
      circle at var(--pointer-x) var(--pointer-y),
      rgb(34 255 49 / 48%),
      transparent 38%
    ),
    radial-gradient(
      circle at var(--pointer-inverse-x) var(--pointer-inverse-y),
      rgb(255 23 220 / 48%),
      transparent 42%
    ),
    radial-gradient(circle at 50% 50%, rgb(80 97 255 / 32%), transparent 56%);
  content: "";
  filter: blur(21px);
  opacity: 0;
  transform: translate3d(var(--glow-x-reverse), var(--glow-y-reverse), 0) scale(0.88);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 260ms ease,
    filter 220ms ease;
}

.buy-button__label {
  position: relative;
  z-index: 1;
  display: flex;
  width: 178px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 6px;
  border-radius: 100px;
  background: none;
  color: #202023;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  font-size: 23px;
  font-weight: 510;
  line-height: 27px;
  letter-spacing: 0;
  mix-blend-mode: normal;
  text-shadow: none;
  white-space: nowrap;
  font-feature-settings: "ss16" 1;
  transition: none;
}

.buy-button:hover {
  transform: translateY(-1px) scale(1.015);
  box-shadow:
    1.25px 0 0 -0.75px #d0d0d0,
    -1.25px 0 0 -0.75px #d0d0d0,
    0 0 0 0.5px #e8e8e8,
    0 10px 20px rgb(0 0 0 / 5%),
    inset 0 40px 10px -40px rgb(40 40 40 / 20%),
    inset 0 -40px 10px -40px rgb(40 40 40 / 20%);
}

.buy-button:hover::before,
.buy-button:focus-visible::before {
  opacity: 0.48;
  transform: translate3d(var(--glow-x), var(--glow-y), 0) scale(1.04);
  filter: blur(18px);
}

.buy-button:hover::after,
.buy-button:focus-visible::after {
  opacity: 0.42;
  transform: translate3d(var(--glow-x-reverse), var(--glow-y-reverse), 0) scale(1.02);
  border-radius: 54% 46% 52% 48% / 47% 55% 45% 53%;
  filter: blur(23px);
}

.buy-button:active {
  transform: translateY(1px) scale(0.99);
}

.buy-button:focus-visible {
  outline: 3px solid rgb(80 97 255 / 45%);
  outline-offset: 4px;
}

.story {
  --gallery-section-space: clamp(140px, 12vw, 160px);
  --card-section-space: clamp(156px, 14vw, 180px);
  --hero-copy-space: clamp(210px, 16vw, 240px);
  --copy-safe-bottom-space: 0px;
  --first-copy-leading-space: 0px;
  --first-copy-trailing-space: 0px;
  --closing-copy-leading-space: 0px;
  --closing-copy-trailing-space: 0px;
  position: relative;
  z-index: 2;
  display: flow-root;
  width: min(100% - 48px, 1248px);
  margin: 0 auto;
  padding: max(0px, calc(var(--hero-copy-space) - var(--first-copy-leading-space))) 0 0;
}

.scroll-copy-stage {
  position: relative;
  height: 180svh;
}

.scroll-copy {
  position: sticky;
  top: 0;
  display: flex;
  width: min(100%, 820px);
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-bottom: var(--copy-safe-bottom-space);
  margin: 0 auto;
  color: var(--muted);
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(42px, 4.1vw, 52px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.scroll-copy p {
  margin: 0 0 1em;
}

.scroll-copy p:last-child {
  margin-bottom: 0;
}

.scroll-copy .word {
  color: rgb(var(--word-tone, 157 157 157));
  transition: color 60ms linear;
}

.story-collage {
  position: relative;
  left: 50%;
  width: min(1500px, calc(100vw - 32px));
  height: clamp(600px, 64vw, 960px);
  margin:
    calc(var(--gallery-section-space) - var(--first-copy-trailing-space))
    0
    calc(var(--gallery-section-space) - var(--closing-copy-leading-space));
  isolation: isolate;
  transform: translateX(-50%);
}

.story-collage__archive {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #dfdfdc;
  box-shadow: 0 16px 44px rgba(35, 35, 35, 0.08);
}

.story-collage__archive img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-collage__archive--engraving {
  z-index: 1;
  top: 7%;
  left: 0;
  width: 37%;
  transform: rotate(-0.8deg);
}

.story-collage__archive--diagram {
  z-index: 2;
  top: 37%;
  right: 0;
  width: 29%;
  transform: rotate(0.9deg);
}

.story-collage__archive--photograph {
  z-index: 0;
  top: 25%;
  left: 17%;
  width: 64%;
  transform: rotate(0.2deg);
}

.story-sticker {
  --drag-x: 0px;
  --drag-y: 0px;
  --grab-rotation: 1deg;
  --sticker-rotation: 0deg;
  position: absolute;
  z-index: 10;
  display: block;
  width: min(34%, 430px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: grab;
  filter: drop-shadow(0 10px 13px rgba(24, 24, 24, 0.1));
  touch-action: none;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(var(--sticker-rotation));
  transition: filter 180ms ease;
  user-select: none;
  will-change: transform;
}

.story-sticker img {
  display: block;
  width: 100%;
  pointer-events: none;
  transform: rotate(0deg) scale(1);
  transform-origin: center;
  transition: transform 180ms cubic-bezier(0.2, 0.85, 0.25, 1.15);
  user-select: none;
}

.story-sticker:hover {
  filter: drop-shadow(0 14px 16px rgba(24, 24, 24, 0.16));
}

.story-sticker:focus-visible {
  outline: 2px solid rgba(35, 93, 255, 0.75);
  outline-offset: 5px;
}

.story-sticker.is-dragging {
  cursor: grabbing;
  filter: drop-shadow(0 18px 20px rgba(24, 24, 24, 0.2));
}

.story-sticker.is-dragging img {
  transform: rotate(var(--grab-rotation)) scale(1.025);
}

.story-sticker.is-page-sticker {
  position: absolute;
  right: auto;
  bottom: auto;
  margin: 0;
}

.story-sticker--ask {
  top: 16%;
  left: 52%;
  --grab-rotation: 1.1deg;
  --sticker-rotation: -3deg;
}

.story-sticker--crystal {
  top: 67%;
  right: 2%;
  width: min(35%, 440px);
  --grab-rotation: -1deg;
  --sticker-rotation: -8deg;
}

.story-sticker--trees {
  top: 68%;
  left: 3%;
  width: min(35%, 440px);
  --grab-rotation: 0.8deg;
  --sticker-rotation: 4deg;
}

.rotating-gallery {
  --gallery-gap: clamp(16px, 2vw, 24px);
  position: relative;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  margin: calc(var(--gallery-section-space) - var(--closing-copy-trailing-space)) 0 var(--card-section-space);
  cursor: grab;
  outline-offset: 6px;
  touch-action: pan-y;
  transform: translateX(-50%);
  user-select: none;
}

.rotating-gallery:active {
  cursor: grabbing;
}

.rotating-gallery.is-dragging {
  cursor: grabbing;
}

.rotating-gallery:focus-visible {
  outline: 2px solid rgba(35, 93, 255, 0.65);
}

.rotating-gallery__track {
  display: flex;
  width: max-content;
  gap: var(--gallery-gap);
  animation: gallery-scroll 90s linear infinite;
  will-change: transform;
}

.rotating-gallery__group {
  display: flex;
  flex: none;
  gap: var(--gallery-gap);
}

.rotating-gallery img {
  width: clamp(230px, 24vw, 310px);
  max-width: none;
  aspect-ratio: 3 / 4;
  flex: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.rotating-gallery.is-paused .rotating-gallery__track {
  animation-play-state: paused;
}

.buy-placeholder {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(100% - 48px, 1080px);
  min-height: 590px;
  grid-template-columns: minmax(0, 430px) minmax(420px, 460px);
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 2vw, 28px);
  margin: 0 auto -76px;
  padding: clamp(38px, 4vw, 56px);
  border-radius: 32px;
  background: #fff;
  overflow: visible;
}

.product-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Geist", Arial, sans-serif;
}

.product-card__copy h2 {
  margin: 0;
  color: #121212;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.product-card__tagline {
  margin: 8px 0 0;
  color: #171717;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.product-card__description {
  max-width: 400px;
  margin: 28px 0 0;
  color: #aaa;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.product-card__specs {
  padding: 0;
  margin: 20px 0 0;
  color: #aaa;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.32;
  list-style: none;
}

.product-card__shipping {
  margin: 20px 0 0;
  color: #b8b8b8;
  font-size: 12px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.product-card__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 34px;
}

.product-rotation {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 470px;
  align-self: center;
  overflow: hidden;
  cursor: ew-resize;
  outline-offset: 5px;
  touch-action: pan-y;
  user-select: none;
}

.product-rotation.is-dragging {
  cursor: grabbing;
}

.product-rotation:focus-visible {
  outline: 2px solid rgba(35, 93, 255, 0.7);
}

.product-rotation__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  transform: scale(1.37);
  user-select: none;
}

.product-rotation__hint {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  margin: 0;
  color: #d5d5d5;
  font-size: 14px;
  letter-spacing: -0.025em;
  text-align: center;
}

.product-card__sticker {
  --grab-rotation: 1.5deg;
  position: absolute;
  z-index: 4;
  pointer-events: auto;
  user-select: none;
}

.product-card__sticker--price {
  top: -96px;
  right: -58px;
  width: clamp(165px, 18.7vw, 225.5px);
}

.product-card__sticker--new {
  --grab-rotation: -1.5deg;
  right: 54px;
  bottom: -64px;
  width: clamp(209px, 23.1vw, 280.5px);
}

.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1934 / 847;
  overflow: hidden;
  background: #c9c5c1;
}

.site-footer__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.site-footer__links {
  position: absolute;
  right: clamp(24px, 4vw, 60px);
  bottom: clamp(20px, 2.6vw, 34px);
  left: clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  letter-spacing: -0.025em;
  text-align: center;
}

.site-footer__links a {
  text-shadow: 0 1px 8px rgba(31, 31, 31, 0.28);
  transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #fff;
}

@keyframes buy-spark-flip {
  to { transform: rotate(360deg); }
}

@keyframes buy-spark-rotate {
  to { transform: translate(-50%, -15%) rotate(0deg); }
}

@keyframes buy-spark-bounce {
  35%, 65% { transform: scale(var(--spark-scale)); }
}

@keyframes buy-particle-float {
  to { transform: rotate(360deg); }
}

@keyframes rotate-color {
  from { transform: scale(2.25) rotate(0deg); }
  to { transform: scale(2.25) rotate(360deg); }
}

@keyframes rotate-characters {
  from { transform: scale(0.957) rotate(0deg); }
  to { transform: scale(0.957) rotate(-360deg); }
}

@keyframes liquid-colors {
  0% { transform: translate3d(-10%, -4%, 0) rotate(-4deg) scale(1); }
  48% { transform: translate3d(8%, 6%, 0) rotate(5deg) scale(1.08); }
  100% { transform: translate3d(-1%, -8%, 0) rotate(10deg) scale(1.14); }
}

@keyframes gallery-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - var(--gallery-gap) / 2), 0, 0); }
}

@media (max-width: 720px) {
  .hero__visual {
    width: min(112vw, 720px);
    transform: translateY(-7vh);
  }

  .hero__device {
    transform: scale(0.668);
  }

  .story {
    width: calc(100% - 48px);
  }

  .scroll-copy {
    padding: 0 0 var(--copy-safe-bottom-space);
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.06;
  }

  .scroll-copy p {
    margin-bottom: 0.75em;
  }

  .scroll-copy p:last-child {
    margin-bottom: 0;
  }

  .story-collage {
    width: 122vw;
    height: 560px;
  }

  .buy-placeholder {
    width: calc(100% - 24px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 34px 24px 72px;
    border-radius: 24px;
  }

  .product-card__actions {
    margin-top: 34px;
  }

  .product-rotation {
    height: 410px;
  }

  .product-rotation__image {
    transform: scale(1.3);
  }

  .product-card__sticker--price {
    top: -62px;
    right: -8px;
    width: 138.6px;
  }

  .product-card__sticker--new {
    right: 8px;
    bottom: -58px;
    width: 187px;
  }

  .site-footer {
    width: 100%;
    min-height: 390px;
    aspect-ratio: auto;
  }

  .site-footer__image {
    object-position: 58% center;
  }

  .site-footer__links {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__mandala { animation: none; }
  .buy-button,
  .buy-button::before,
  .buy-button::after { transition: none; }
  .rotating-gallery__track { animation: none; }
  .scroll-copy .word { transition: none; }
}
