@charset "UTF-8";
/* ==========================================================================
   GolfMate Pro — design system
   Self-hosted. Replaces the Tailwind CDN (which shipped a JIT compiler to
   every visitor and blocked first paint).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — deep midnight, slightly blue-shifted so the product reads warm */
  --ink-950: #04060d;
  --ink-900: #070a14;
  --ink-850: #0a0e1c;
  --ink-800: #0e1425;
  --ink-750: #141b30;
  --ink-700: #1b2440;
  --ink-650: #243050;

  /* Brand */
  --brand-300: #8fc0ff;
  --brand-400: #4f9dff;
  --brand-500: #3b82f6;
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;
  --brand-900: #12296b;

  /* Support */
  --fair-400: #34d399;   /* in stock, secure, success */
  --fair-500: #10b981;
  --warn-400: #fbbf24;
  --dang-400: #f87171;

  /* Text */
  --tx-hi:   #eef3ff;
  --tx:      #c9d5ec;
  --tx-mid:  #93a4c4;
  --tx-dim:  #6b7a99;

  /* Lines & glass */
  --line:        rgba(255, 255, 255, .075);
  --line-strong: rgba(255, 255, 255, .14);
  --line-brand:  rgba(79, 157, 255, .28);
  --glass:       rgba(255, 255, 255, .035);
  --glass-hi:    rgba(255, 255, 255, .06);

  /* Elevation */
  --sh-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --sh-md: 0 8px 24px -8px rgba(0, 0, 0, .6);
  --sh-lg: 0 24px 64px -16px rgba(0, 0, 0, .7);
  --sh-brand: 0 12px 40px -8px rgba(37, 99, 235, .55);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
  --t-fast: 160ms;
  --t: 280ms;
  --t-slow: 620ms;

  /* Layout */
  --gutter: clamp(1rem, 4vw, 2rem);
  --maxw: 1200px;
  --maxw-narrow: 760px;
  --nav-h: 64px;

  /* Fluid type scale */
  --fs-xs:   .78rem;
  --fs-sm:   .875rem;
  --fs-base: 1rem;
  --fs-lg:   clamp(1.06rem, .4vw + .96rem, 1.19rem);
  --fs-xl:   clamp(1.25rem, .8vw + 1.05rem, 1.5rem);
  --fs-2xl:  clamp(1.6rem, 1.6vw + 1.2rem, 2.15rem);
  --fs-3xl:  clamp(2rem, 3vw + 1.3rem, 3.1rem);
  --fs-4xl:  clamp(2.5rem, 5.2vw + 1.2rem, 4.6rem);
  --fs-5xl:  clamp(3rem, 7vw + 1rem, 6rem);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* offset anchored jumps so headings clear the fixed nav */
  scroll-padding-top: calc(var(--nav-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--ink-950);
  color: var(--tx);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--tx-hi);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.022em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-4xl); font-weight: 900; letter-spacing: -.035em; }
h2 { font-size: var(--fs-3xl); letter-spacing: -.028em; }
h3 { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -.015em; }

p  { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

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

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand-600); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-950); }
::-webkit-scrollbar-thumb { background: var(--ink-700); border-radius: var(--r-pill); border: 2px solid var(--ink-950); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-650); }

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

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 200;
  padding: .75rem 1.25rem; border-radius: var(--r-md);
  background: var(--brand-600); color: #fff; font-weight: 700;
  transition: top var(--t) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--ink-900); }
.section--deep { background: var(--ink-850); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  margin-top: .9rem;
  color: var(--tx-mid);
  font-size: var(--fs-lg);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
  color: var(--brand-300);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-400));
}
.section-head--center .eyebrow::before { display: none; }

.grid { display: grid; gap: clamp(.85rem, 1.6vw, 1.25rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--glass-hi);
  --btn-fg: var(--tx-hi);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease),
              border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.btn:active { transform: translateY(0); }

.btn--primary {
  position: relative;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-600) 58%, var(--brand-700));
  color: #fff;
  box-shadow: var(--sh-brand);
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 55%);
  pointer-events: none;
}
.btn--primary:hover { box-shadow: 0 16px 48px -8px rgba(37,99,235,.7); }

.btn--lg { padding: 1.05rem 2rem; font-size: var(--fs-lg); }
.btn--block { display: flex; width: 100%; }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--tx-mid); }
.btn--ghost:hover { color: var(--tx-hi); border-color: var(--line-strong); background: var(--glass); }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .45; cursor: not-allowed; transform: none; box-shadow: none;
}

/* Attention pulse — only on the single primary conversion CTA */
.pulse { position: relative; }
.pulse::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(79, 157, 255, .5);
  animation: pulseRing 3s var(--ease-io) infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(79,157,255,.5); }
  60%  { box-shadow: 0 0 0 16px rgba(79,157,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(79,157,255,0); }
}

/* --------------------------------------------------------------------------
   5. PILLS / BADGES / CHIPS
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .38rem .85rem;
  border: 1px solid var(--line-brand);
  border-radius: var(--r-pill);
  background: rgba(79, 157, 255, .1);
  color: var(--brand-300);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .01em;
}
.pill--fair {
  border-color: rgba(52, 211, 153, .3);
  background: rgba(52, 211, 153, .1);
  color: var(--fair-400);
}
.pill--plain {
  border-color: var(--line); background: var(--glass); color: var(--tx-mid);
}

.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--tx);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.chip .i { color: var(--brand-400); }

.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fair-400);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .18);
  flex: none;
}
.dot--live { animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

/* --------------------------------------------------------------------------
   6. NAV
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease),
              backdrop-filter var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(4, 6, 13, .78);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: .52rem; }
.brand__mark { width: 31px; height: 40px; object-fit: contain; flex: none; }
.brand__name { white-space: nowrap; font-size: 1.08rem; font-weight: 800; letter-spacing: -.035em; color: var(--tx-hi); }
.brand__sub { font: inherit; color: var(--brand-400); letter-spacing: inherit; }

.nav__links { display: flex; align-items: center; gap: .15rem; }
.nav__link {
  padding: .5rem .8rem;
  border-radius: var(--r-sm);
  color: var(--tx-mid);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__link:hover { color: var(--tx-hi); background: var(--glass); }
.nav__cta { margin-left: .6rem; padding: .58rem 1.15rem; font-size: var(--fs-sm); }

.burger {
  display: none;
  width: 42px; height: 42px;
  margin-right: -8px;
  border-radius: var(--r-md);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  position: relative; z-index: 120;
}
.burger span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--tx-hi);
  transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  background: rgba(4, 6, 13, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 1.6rem; font-weight: 700; color: var(--tx-hi);
  letter-spacing: -.02em;
  opacity: 0; transform: translateY(14px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu.is-open a:nth-child(1) { transition-delay: .05s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: .09s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: .13s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: .17s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: .21s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: .25s; }
.mobile-menu .btn { font-size: 1.1rem; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .burger { display: flex; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
  background: var(--ink-950);
}
.hero__bg picture { display: block; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* The v2 photograph is already graded for the dark storefront. Keep the
     product crisp while gently cooling the warm course behind it. */
  filter: brightness(.96) saturate(.88) contrast(1.04);
}

/* Directional scrim: copy stays high-contrast on the open left side while the
   product remains bright and unobstructed on the right. */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(4, 6, 13, .92) 0%,
      rgba(4, 6, 13, .78) 32%,
      rgba(4, 6, 13, .42) 57%,
      rgba(4, 6, 13, .10) 82%),
    linear-gradient(180deg,
      rgba(4, 6, 13, .88) 0%,
      rgba(4, 6, 13, .22) 24%,
      rgba(4, 6, 13, .06) 55%,
      rgba(4, 6, 13, .44) 82%,
      rgba(4, 6, 13, .97) 97%,
      var(--ink-950) 100%),
    radial-gradient(115% 75% at 50% -8%, rgba(37, 99, 235, .30), transparent 62%),
    radial-gradient(70% 55% at 88% 105%, rgba(79, 157, 255, .16), transparent 66%);
}
/* soft vignette so the frame edges fall away from the centred type */
.hero__scrim::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(85% 70% at 50% 48%, transparent 38%, rgba(4, 6, 13, .42) 100%);
}

.hero__inner { position: relative; z-index: 1; text-align: left; }

/* A soft dark cushion sits directly behind the copy. This guarantees text
   contrast over the busiest part of the photograph (the white golf balls)
   without having to flatten the whole image with a heavier scrim. */
.hero__inner::before {
  content: "";
  position: absolute;
  left: 31%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 82%);
  height: min(820px, 124%);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(closest-side,
    rgba(4, 6, 13, .74) 0%,
    rgba(4, 6, 13, .58) 46%,
    rgba(4, 6, 13, .26) 72%,
    transparent 100%);
}

.hero h1 {
  max-width: min(54rem, 68vw);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .7);
}
.hero h1 .accent {
  /* kept in the lighter half of the brand ramp so it stays brighter than
     anything behind it */
  background: linear-gradient(120deg, #a8d0ff, var(--brand-400) 52%, #a8d0ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__lead {
  max-width: 40rem; margin: 0 0 2rem;
  font-size: var(--fs-lg);
  /* lifted from --tx-mid: this sits over a photograph, not a flat panel */
  color: #dce6f8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-start;
  margin-bottom: 1.35rem;
}
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start;
  gap: .4rem 1.1rem;
  /* lifted from --tx-dim for the same reason */
  color: #aab9d4;
  font-size: var(--fs-sm);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
}
.hero__trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__trust .i { color: var(--brand-400); }

.hero__scrollcue {
  position: absolute; left: 50%; bottom: 1.75rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--tx-dim); font-size: var(--fs-xs);
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  z-index: 2;
}
.hero__scrollcue i { animation: cueBob 2.2s var(--ease-io) infinite; font-size: 1.1rem; }
@keyframes cueBob { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(6px); opacity: 1; } }

/* Reserve room for the absolutely-placed cue so it can never sit on top of
   the trust row, and drop it entirely where the hero is too short to spare
   the space (small phones, landscape). */
.hero { padding-bottom: 6.5rem; }
@media (max-width: 640px), (max-height: 720px) {
  .hero__scrollcue { display: none; }
  .hero { padding-bottom: 3rem; }
}

@media (max-width: 700px) {
  .hero__img {
    object-position: 66% center;
    filter: brightness(.78) saturate(.82) contrast(1.04);
  }
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(4, 6, 13, .90) 0%,
        rgba(4, 6, 13, .58) 30%,
        rgba(4, 6, 13, .48) 64%,
        rgba(4, 6, 13, .98) 100%),
      radial-gradient(90% 72% at 50% 42%, rgba(4, 6, 13, .28), transparent 72%);
  }
  .hero__inner { text-align: center; }
  .hero__inner::before {
    left: 50%;
    width: 118%;
  }
  .hero h1 { max-width: none; }
  .hero__lead { margin-inline: auto; }
  .hero__actions,
  .hero__trust { justify-content: center; }
}

/* --------------------------------------------------------------------------
   8. 3D SCROLL STAGE
   The showcase: a tall scroll track with a sticky viewport. Scroll progress
   drives the product's rotation; feature callouts fade in as the relevant
   face comes around.
   -------------------------------------------------------------------------- */
.stage {
  position: relative;
  background:
    radial-gradient(90% 55% at 50% 42%, rgba(37, 99, 235, .17), transparent 70%),
    var(--ink-900);
}
.stage__track { position: relative; }
.stage__sticky {
  position: sticky; top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.stage__canvas-wrap {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
#product-canvas {
  width: 100%; height: 100%;
  touch-action: pan-y;      /* let vertical scroll through, capture horizontal drag */
  cursor: grab;
}
#product-canvas.is-dragging { cursor: grabbing; }

/* Static fallback when WebGL is unavailable or motion is reduced */
.stage__fallback {
  display: none;
  width: min(90%, 720px);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
}
.stage.is-model-loading .stage__fallback { display: block; }
.stage.is-model-loading #product-canvas { opacity: 0; }
#product-canvas { transition: opacity 280ms var(--ease); }
.stage.no-3d .stage__fallback { display: block; }
.stage.no-3d #product-canvas,
.stage.no-3d .stage__hint { display: none; }

.stage__heading {
  position: absolute; top: clamp(4.5rem, 11vh, 7rem); left: 0; right: 0;
  text-align: center; padding-inline: var(--gutter);
  pointer-events: none; z-index: 3;
}
.stage__heading h2 { font-size: var(--fs-2xl); }
.stage__heading p { color: var(--tx-mid); margin-top: .5rem; font-size: var(--fs-sm); }

/* Feature callouts, absolutely placed around the product */
.callout {
  position: absolute; z-index: 4;
  width: min(19rem, 74vw);
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: rgba(10, 14, 28, .82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--sh-lg);
  opacity: 0;
  transform: translateY(14px) scale(.97);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  pointer-events: none;
}
.callout.is-on { opacity: 1; transform: none; }
.callout__k {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .3rem;
  color: var(--brand-300);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.callout h3 { font-size: var(--fs-lg); margin-bottom: .3rem; }
.callout p { font-size: var(--fs-sm); color: var(--tx-mid); line-height: 1.55; }

.callout--tl { top: 24%; left: 6%; }
.callout--tr { top: 22%; right: 6%; }
.callout--bl { bottom: 20%; left: 6%; }
.callout--br { bottom: 22%; right: 6%; }

@media (max-width: 900px) {
  .callout { left: 50% !important; right: auto !important; transform: translate(-50%, 14px) scale(.97); }
  .callout.is-on { transform: translate(-50%, 0) scale(1); }
  .callout--tl, .callout--tr { top: auto; bottom: 7.5rem; }
  .callout--bl, .callout--br { top: auto; bottom: 7.5rem; }
}

.stage__hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(10, 14, 28, .7);
  backdrop-filter: blur(10px);
  color: var(--tx-dim); font-size: var(--fs-xs); font-weight: 600;
  transition: opacity var(--t) var(--ease);
}
.stage__hint.is-hidden { opacity: 0; }

/* progress rail down the side of the stage */
.stage__rail {
  position: absolute; right: clamp(.85rem, 2.5vw, 2rem); top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex; flex-direction: column; gap: .55rem;
}
.stage__rail button {
  width: 3px; height: 30px; border-radius: var(--r-pill);
  background: var(--line-strong);
  transition: background var(--t) var(--ease), height var(--t) var(--ease);
}
.stage__rail button.is-on { background: var(--brand-400); height: 42px; }
@media (max-width: 900px) { .stage__rail { display: none; } }

/* --------------------------------------------------------------------------
   9. CARDS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--glass), transparent 60%), var(--ink-850);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-brand);
  box-shadow: var(--sh-md);
}
.card__icon {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: var(--r-md);
  background: rgba(79, 157, 255, .11);
  border: 1px solid var(--line-brand);
  color: var(--brand-400);
  font-size: 1.15rem;
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--tx-mid); font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   10. BUY BOX
   -------------------------------------------------------------------------- */
.buybox {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(37, 99, 235, .16), transparent 60%),
    linear-gradient(180deg, var(--glass), transparent 50%),
    var(--ink-850);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
@media (max-width: 860px) { .buybox { grid-template-columns: 1fr; } }

.buybox__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-800);
  aspect-ratio: 4 / 3;
}
.buybox__media img { width: 100%; height: 100%; object-fit: cover; }

.buybox__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .55rem;
  margin: .35rem 0 .2rem;
}
.buybox__amount {
  font-size: var(--fs-3xl); font-weight: 900; color: var(--tx-hi);
  letter-spacing: -.04em; line-height: 1;
}
.buybox__cur { color: var(--tx-dim); font-size: var(--fs-sm); font-weight: 500; }
.buybox__note { color: var(--tx-dim); font-size: var(--fs-sm); margin-bottom: 1.15rem; }

.buybox__list { display: grid; gap: .55rem; margin: 1.25rem 0; }
.buybox__list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: var(--fs-sm); color: var(--tx);
}
.buybox__list .i { color: var(--fair-400); margin-top: .18rem; flex: none; }

.express { display: grid; gap: .5rem; }
.express__note {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  color: var(--tx-dim); font-size: var(--fs-xs);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(15rem, .78fr) minmax(22rem, 1.12fr) minmax(18rem, .72fr);
  min-height: 25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
  overflow: hidden;
}
.final-cta__media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--ink-800);
}
.final-cta__media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4, 6, 13, .92));
  pointer-events: none;
}
.final-cta__media img {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
  object-position: 52% center;
}
.final-cta__media figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 1.15rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--tx-hi);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.final-cta__media figcaption i {
  color: var(--fair-400);
}
.final-cta__copy {
  align-self: center;
  padding: clamp(1.75rem, 3.5vw, 3.25rem);
}
.final-cta__copy h2 {
  max-width: 15ch;
  margin-top: .65rem;
  font-size: clamp(2.15rem, 3.3vw, 3.55rem);
  line-height: 1.02;
}
.final-cta__copy p {
  max-width: 40rem;
  color: var(--tx-mid);
  font-size: var(--fs-base);
  line-height: 1.7;
  margin-top: .9rem;
}
.final-cta__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1rem;
  margin-top: 1.35rem;
  padding: 0;
  list-style: none;
}
.final-cta__proof li,
.final-cta__payments span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--tx);
  font-size: var(--fs-sm);
}
.final-cta__proof .i,
.final-cta__payments .i {
  color: var(--brand-400);
  flex: none;
}
.final-cta__panel {
  display: grid;
  align-content: center;
  gap: .85rem;
  justify-items: stretch;
  min-width: 0;
  padding: clamp(1.5rem, 2.2vw, 2rem);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, .12), transparent 62%),
    var(--ink-850);
  container-type: inline-size;
}
.final-cta__product {
  color: var(--tx-mid);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.final-cta__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .6rem;
  max-width: 100%;
}
.final-cta__price span {
  min-width: 0;
  max-width: 100%;
  color: var(--tx-hi);
  font-size: clamp(2.75rem, 17cqi, 3.75rem);
  font-weight: 900;
  line-height: .95;
}
.final-cta__price strong {
  flex: none;
  color: var(--brand-300);
  font-size: var(--fs-sm);
  letter-spacing: .08em;
}
.final-cta__panel p {
  color: var(--tx-dim);
  font-size: var(--fs-sm);
}
.final-cta__panel .btn {
  width: 100%;
}
.final-cta__panel .final-cta__service {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: .15rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  color: var(--tx-mid);
}
.final-cta__service i {
  margin-top: .1rem;
  color: var(--brand-400);
}
.final-cta__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .45rem .9rem;
  color: var(--tx-dim);
}
.final-cta__payments span {
  color: var(--tx-dim);
  font-size: var(--fs-xs);
}

@media (max-width: 1100px) {
  .final-cta {
    grid-template-columns: minmax(16rem, .8fr) minmax(0, 1.2fr);
  }
  .final-cta__panel {
    grid-column: 1 / -1;
    grid-template-columns: minmax(13rem, .55fr) minmax(14rem, 1fr) minmax(15rem, .7fr);
    align-items: center;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .final-cta__product,
  .final-cta__price {
    grid-column: 1;
  }
  .final-cta__panel > p:not(.final-cta__service) {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .final-cta__panel .btn {
    grid-column: 3;
    grid-row: 1;
  }
  .final-cta__panel .final-cta__service {
    grid-column: 3;
    grid-row: 2;
    padding-top: .6rem;
  }
  .final-cta__payments {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .final-cta {
    grid-template-columns: 1fr;
  }
  .final-cta__media {
    min-height: auto;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .final-cta__media img {
    min-height: 0;
  }
  .final-cta__copy {
    padding: 1.5rem 1.25rem;
  }
  .final-cta__proof {
    grid-template-columns: 1fr;
  }
  .final-cta__copy h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }
  .final-cta__panel {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    border-left: 0;
  }
  .final-cta__product,
  .final-cta__price,
  .final-cta__panel > p:not(.final-cta__service),
  .final-cta__panel .btn,
  .final-cta__panel .final-cta__service,
  .final-cta__payments {
    grid-column: auto;
    grid-row: auto;
  }
  .final-cta__payments {
    gap: .45rem .75rem;
  }
}

/* "or" divider */
.divider-or {
  display: flex; align-items: center; gap: .9rem;
  margin: 1.15rem 0;
  color: var(--tx-dim); font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
}
.divider-or::before, .divider-or::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* Quantity stepper */
.qty {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-800);
}
.qty button {
  width: 2.6rem;
  display: grid; place-items: center;
  color: var(--tx-mid); font-size: 1.15rem; font-weight: 700;
  transition: background var(--t-fast), color var(--t-fast);
}
.qty button:hover:not(:disabled) { background: var(--glass-hi); color: var(--tx-hi); }
.qty button:disabled { opacity: .3; cursor: not-allowed; }
.qty input {
  width: 3.25rem; padding: .65rem 0;
  border: 0; border-inline: 1px solid var(--line);
  background: transparent; color: var(--tx-hi);
  text-align: center; font-weight: 700;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --------------------------------------------------------------------------
   11. GALLERY
   -------------------------------------------------------------------------- */
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-800);
  aspect-ratio: 4 / 3;
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease), filter var(--t) var(--ease);
}
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem .95rem .85rem;
  background: linear-gradient(transparent, rgba(4, 6, 13, .9));
  color: var(--tx-hi); font-size: var(--fs-sm); font-weight: 600;
}
.shot--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (max-width: 700px) { .shot--wide { grid-column: span 1; aspect-ratio: 4/3; } }

/* --------------------------------------------------------------------------
   12. SPEC TABLE
   -------------------------------------------------------------------------- */
.specs { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.specs__row {
  display: grid; grid-template-columns: minmax(9rem, 1fr) 2fr;
  gap: 1rem;
  padding: .95rem clamp(1rem, 2vw, 1.4rem);
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
}
.specs__row:last-child { border-bottom: 0; }
.specs__row:nth-child(odd) { background: var(--glass); }
.specs__row dt { color: var(--tx-dim); font-weight: 600; margin: 0; }
.specs__row dd { color: var(--tx-hi); margin: 0; font-weight: 600; }
.specs__row dd .todo {
  color: var(--warn-400); font-weight: 700;
  border-bottom: 1px dashed currentColor;
}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .6rem; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-850);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.faq__item:hover { border-color: var(--line-strong); }
.faq__item[open] { border-color: var(--line-brand); background: var(--ink-800); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.05rem 1.25rem;
  text-align: left; color: var(--tx-hi); font-weight: 650; font-size: var(--fs-base);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .i {
  color: var(--tx-dim); flex: none;
  transition: transform var(--t) var(--ease), color var(--t) var(--ease);
}
.faq__item[open] .faq__q .i { transform: rotate(180deg); color: var(--brand-400); }
.faq__a { padding: 0 1.25rem 1.15rem; color: var(--tx-mid); font-size: var(--fs-sm); }
.faq__a a { color: var(--brand-300); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   14. REVIEWS
   -------------------------------------------------------------------------- */
.review {
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-850);
  height: 100%;
}
.review__stars { color: var(--warn-400); font-size: var(--fs-sm); letter-spacing: .1em; margin-bottom: .7rem; }
.review blockquote { margin: 0 0 1rem; color: var(--tx); font-size: var(--fs-base); }
.review__who { display: flex; align-items: center; gap: .65rem; font-size: var(--fs-sm); }
.review__av {
  width: 2rem; height: 2rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-700); color: var(--brand-300); font-weight: 800; font-size: .8rem;
  flex: none;
}
.review__name { color: var(--tx-hi); font-weight: 650; }
.review__meta { color: var(--tx-dim); }

.reviews-empty {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-xl);
  text-align: center;
  background: var(--glass);
}
.reviews-empty .i { font-size: 2rem; color: var(--brand-400); margin-bottom: .75rem; display: block; }
.reviews-empty p { color: var(--tx-mid); max-width: 34rem; margin: .5rem auto 0; }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-900);
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
}
.footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(9rem, 1fr));
  margin-bottom: 2.5rem;
}
.footer__tag { color: var(--tx-dim); font-size: var(--fs-sm); margin-top: .75rem; max-width: 22rem; }
.footer h4 {
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .12em;
  color: var(--tx-dim); margin-bottom: .9rem; font-weight: 700;
}
.footer__links { display: grid; gap: .55rem; }
.footer__links a { color: var(--tx-mid); font-size: var(--fs-sm); transition: color var(--t-fast); }
.footer__links a:hover { color: var(--brand-300); }
.footer__base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  color: var(--tx-dim); font-size: var(--fs-xs);
}
.footer__pay { display: flex; align-items: center; gap: .6rem; color: var(--tx-dim); }
.footer__pay .i { font-size: 1.15rem; }

@media (max-width: 760px) {
  .footer {
    padding-block: 2.75rem 1.75rem;
  }
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem clamp(1.5rem, 8vw, 3rem);
    margin-bottom: 2.25rem;
  }
  .footer__intro {
    grid-column: 1 / -1;
  }
  .footer__tag {
    max-width: 28rem;
    line-height: 1.65;
  }
  .footer__column--legal {
    grid-column: 1 / -1;
  }
  .footer__column--legal .footer__links {
    grid-template-columns: repeat(3, max-content);
    gap: .65rem 1.5rem;
  }
  .footer__base {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.15rem;
  }
  .footer__pay {
    align-items: flex-start;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__intro,
  .footer__column--legal {
    grid-column: auto;
  }
  .footer__column--legal .footer__links {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   16. STICKY BUY BAR (desktop + mobile)
   -------------------------------------------------------------------------- */
.buybar {
  position: fixed; inset: auto 0 0 0; z-index: 95;
  padding: .7rem var(--gutter);
  padding-bottom: calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 10, 20, .9);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-top: 1px solid var(--line-strong);
  transform: translateY(110%);
  transition: transform 420ms var(--ease);
}
.buybar.is-on { transform: none; }
.buybar__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.buybar__info { display: flex; align-items: center; gap: .8rem; min-width: 0; }
.buybar__thumb {
  width: 42px; height: 42px; border-radius: var(--r-md); object-fit: cover;
  border: 1px solid var(--line); flex: none;
}
.buybar__name { color: var(--tx-hi); font-weight: 700; font-size: var(--fs-sm); line-height: 1.25; }
.buybar__sub { color: var(--tx-dim); font-size: var(--fs-xs); display: flex; align-items: center; gap: .35rem; }
.buybar .btn { flex: none; }
@media (max-width: 560px) {
  .buybar__thumb { display: none; }
  .buybar .btn { padding-inline: 1.15rem; }
}

/* --------------------------------------------------------------------------
   17. FORMS (checkout, login, account)
   -------------------------------------------------------------------------- */
.field { display: grid; gap: .4rem; margin-bottom: .85rem; }
.field > label, .label {
  color: var(--tx); font-size: var(--fs-sm); font-weight: 650;
}
.hint { color: var(--tx-dim); font-size: var(--fs-xs); }

.input {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--ink-800);
  color: var(--tx-hi);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.input::placeholder { color: var(--tx-dim); }
.input:hover { border-color: rgba(255,255,255,.2); }
.input:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .2);
  background: var(--ink-750);
}
.input[aria-invalid="true"] { border-color: var(--dang-400); }
.input[readonly] { opacity: .75; cursor: default; }

.row { display: grid; gap: .6rem; }
.row--2 { grid-template-columns: 1fr 1fr; }
.row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 560px) {
  .row--3 { grid-template-columns: 1fr 1fr; }
  .row--3 > :last-child { grid-column: span 2; }
}

.panel {
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-850);
}
.panel + .panel { margin-top: 1rem; }
.panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.15rem;
}
.panel__head h2, .panel__head h3 { font-size: var(--fs-lg); }

.summary { display: grid; gap: .55rem; font-size: var(--fs-sm); }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; }
.summary__row span:first-child { color: var(--tx-mid); }
.summary__row span:last-child { color: var(--tx); font-variant-numeric: tabular-nums; }
.summary__row--total {
  padding-top: .65rem; margin-top: .2rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-base); font-weight: 800;
}
.summary__row--total span { color: var(--tx-hi) !important; }

.alert {
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid;
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
}
.alert--warn { border-color: rgba(251,191,36,.35); background: rgba(251,191,36,.1); color: #fde68a; }
.alert--danger { border-color: rgba(248,113,113,.35); background: rgba(248,113,113,.1); color: #fecaca; }
.alert--ok { border-color: rgba(52,211,153,.35); background: rgba(52,211,153,.1); color: #a7f3d0; }
.alert:empty { display: none; }

/* Square Web Payments SDK card iframe container */
.sq-card {
  padding: .35rem .5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--ink-800);
  transition: border-color var(--t-fast);
}
.sq-card:focus-within { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(59,130,246,.2); }

/* Wallet buttons injected by Square */
#wallets { display: grid; gap: .5rem; }
#wallets:empty { display: none; }
#wallets > div { min-height: 48px; border-radius: var(--r-md); overflow: hidden; }

.steps { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-size: var(--fs-xs); }
.steps__s { display: flex; align-items: center; gap: .45rem; color: var(--tx-dim); font-weight: 650; }
.steps__s.is-on { color: var(--brand-300); }
.steps__n {
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid currentColor; font-size: .7rem;
}
.steps__sep { flex: 1; height: 1px; background: var(--line); max-width: 2.5rem; }

/* --------------------------------------------------------------------------
   17b. TABLES
   -------------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.table th {
  padding: 0 .75rem .6rem 0;
  text-align: left;
  color: var(--tx-dim);
  font-weight: 650;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--line);
}
.table td {
  padding: .8rem .75rem .8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--tx);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: 0; }
.table code {
  padding: .15rem .4rem;
  border-radius: 5px;
  background: var(--ink-800);
  border: 1px solid var(--line);
  color: var(--tx-mid);
  font-size: .72rem;
}

/* --------------------------------------------------------------------------
   18. PROSE (privacy, shipping & returns)
   -------------------------------------------------------------------------- */
.prose { color: var(--tx-mid); }
.prose h2 { font-size: var(--fs-xl); margin: 2.25rem 0 .75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-lg); margin: 1.5rem 0 .5rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.prose li { list-style: disc; margin-bottom: .4rem; }
.prose a { color: var(--brand-300); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--tx-hi); font-weight: 700; }

/* --------------------------------------------------------------------------
   19. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(.95); }
[data-reveal].is-in { transform: none; }

[data-reveal-delay="1"] { transition-delay: 70ms; }
[data-reveal-delay="2"] { transition-delay: 140ms; }
[data-reveal-delay="3"] { transition-delay: 210ms; }
[data-reveal-delay="4"] { transition-delay: 280ms; }
[data-reveal-delay="5"] { transition-delay: 350ms; }
[data-reveal-delay="6"] { transition-delay: 420ms; }

/* --------------------------------------------------------------------------
   20. UTILITIES
   -------------------------------------------------------------------------- */
.stack   { display: grid; gap: 1rem; }
.stack-sm { display: grid; gap: .5rem; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.center  { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.muted { color: var(--tx-mid); }
.dim   { color: var(--tx-dim); }
.small { font-size: var(--fs-sm); }
.xs    { font-size: var(--fs-xs); }
.hi    { color: var(--tx-hi); }
.brand-tx { color: var(--brand-300); }
.fair-tx  { color: var(--fair-400); }
.nowrap { white-space: nowrap; }
.tnum { font-variant-numeric: tabular-nums; }
.hide-sm { }
@media (max-width: 640px) { .hide-sm { display: none !important; } }
@media (min-width: 641px) { .only-sm { display: none !important; } }

.page { padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 3.5rem)); padding-bottom: clamp(3rem, 6vw, 5rem); }

/* The buy bar hides before the final CTA and footer enter view, so the page
   must not reserve permanent space for it at the end of the document. */

/* --------------------------------------------------------------------------
   21. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .callout { opacity: 1; transform: none; }
}
