/* ============================================================
   Loopnator — same skin as the app it sells.
   Palette lifted verbatim from ui/style.css so site and tool match.
   Self-hosted type, no external requests.
   ============================================================ */

@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* --- the app's own tokens --- */
  --bg: #0b0e14;
  --surface: rgba(255, 255, 255, .045);
  --surface-2: rgba(255, 255, 255, .075);
  --border: rgba(255, 255, 255, .08);
  --border-2: rgba(255, 255, 255, .17);
  --text: #e8ecf4;
  --muted: #8b93a7;
  --faint: #6c7488;
  --a1: #8b5cf6;
  --a2: #22d3ee;
  --grad: linear-gradient(135deg, var(--a1), var(--a2));
  --rec: #ff4d6d;
  --ok: #34d399;

  --mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --sans: "Instrument Sans", system-ui, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --sec: clamp(52px, 6.4vw, 96px);
  --r: 16px;

  /* driven by script.js */
  --px: 0; --py: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient depth — drifts with the pointer */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
body::before {
  width: 640px; height: 640px;
  left: -230px; top: -190px;
  background: radial-gradient(circle, rgba(139, 92, 246, .22), transparent 66%);
  transform: translate3d(calc(var(--px) * 34px), calc(var(--py) * 26px), 0);
}
body::after {
  width: 720px; height: 720px;
  right: -270px; bottom: -230px;
  background: radial-gradient(circle, rgba(34, 211, 238, .14), transparent 66%);
  transform: translate3d(calc(var(--px) * -28px), calc(var(--py) * -22px), 0);
}

/* The cursor trail lives behind the content and glows through the glass.
   width/height are mandatory: <canvas> is a replaced element, so with
   `inset: 0` alone it keeps its intrinsic (DPR-scaled) size and everything
   drawn on it lands offset from the real pointer. */
#trail {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main, header.nav, footer { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- type ---------- */
h1, h2 {
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.3rem, 5.1vw, 4.05rem); }
h2 { font-size: clamp(1.45rem, 2.7vw, 2.05rem); font-weight: 700; }
h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }

.lede { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.09rem); max-width: 56ch; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mono, .eyebrow, .price-num, kbd, .slab-cap, .trace-head, .trace-axis, .step-n, .trust, .price-note {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--a2);
  margin-bottom: 15px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

kbd {
  font-size: .82em;
  font-weight: 600;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--text);
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }

.ruled { border-top: 1px solid var(--border); padding-top: var(--sec); }
.section:has(> .ruled) { padding-top: 0; }

.head { max-width: 660px; margin-bottom: clamp(28px, 4vw, 46px); }
.head .lede { margin-top: 14px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 14, 20, .74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(11, 14, 20, .93);
  border-bottom-color: rgba(139, 92, 246, .26);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
}
.nav .wrap { display: flex; align-items: center; gap: 26px; padding-block: 11px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.03em;
}
.nav-logo img { border-radius: 6px; }
.nav-links { display: flex; gap: 20px; margin-left: auto; font-size: 14px; color: var(--muted); }
.nav-links a { position: relative; padding-block: 4px; transition: color .2s; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.2, .9, .25, 1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ---------- buttons (magnetic: script sets --tx/--ty) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  background: var(--grad);
  color: #fff;
  font-family: var(--sans);
  font-weight: 650;
  font-size: 15px;
  border: 0;
  border-radius: 12px;
  padding: 13px 24px;
  box-shadow: 0 8px 30px rgba(139, 92, 246, .35);
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0);
  transition: box-shadow .25s ease, transform .25s cubic-bezier(.2, .9, .25, 1), filter .2s;
}
.btn:hover { filter: brightness(1.09); box-shadow: 0 14px 44px rgba(139, 92, 246, .5), 0 0 22px rgba(34, 211, 238, .3); }
.btn:active { filter: brightness(.96); }
.btn::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -70%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
}
.btn:hover::after { left: 130%; }
.btn-sm { padding: 9px 17px; font-size: 13.5px; border-radius: 10px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  box-shadow: none;
}
.btn-ghost:hover { color: var(--text); background: var(--surface-2); border-color: var(--border-2); box-shadow: none; filter: none; }
.btn-ghost::after { display: none; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(34px, 4.6vw, 62px); padding-bottom: clamp(26px, 3.5vw, 46px); }
.hero-row {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}
.hero h1 { margin-top: -.12em; }
.hero-side .lede { margin-bottom: 22px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust { margin-top: 18px; font-size: .74rem; letter-spacing: .04em; color: var(--faint); }

/* app screenshots: silhouettes with their own light */
.shot-app {
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, .6)) drop-shadow(0 0 40px rgba(139, 92, 246, .22));
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .45s cubic-bezier(.2, .9, .25, 1);
}
.shot-app.tracking { transition: transform .1s linear; }
.shot-side { width: 100%; }
.how-shot { width: min(292px, 100%); margin-inline: auto; }

/* ---------- the trace ---------- */
.trace { margin-top: clamp(30px, 4vw, 52px); --dur: 10.182s; }
.trace-head {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}
.trace-id { display: flex; align-items: center; gap: 8px; color: var(--text); }
.rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rec);
  box-shadow: 0 0 10px var(--rec);
}
.trace-meta { color: var(--faint); }
.trace-hum { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.trace-loop { margin-left: auto; color: var(--text); }
.trace-loop b { font-weight: 700; color: var(--a2); }

.trace-plot { position: relative; height: clamp(96px, 13vw, 150px); overflow: hidden; }
.t-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.t-ghost { fill: none; stroke: rgba(255, 255, 255, .10); stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.t-ink {
  fill: none;
  stroke: url(#traceGrad);
  stroke-width: 2;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, .55));
}
.t-dots i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--rec);
  box-shadow: 0 0 10px rgba(255, 77, 109, .8);
}
.t-dots.ghost i { background: rgba(255, 255, 255, .14); box-shadow: none; }
.t-ink-wrap { position: absolute; inset: 0; clip-path: inset(0 100% 0 0); animation: ink var(--dur) linear infinite; }
.playhead {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--a2) 18%, var(--a2) 82%, transparent);
  box-shadow: 0 0 14px var(--a2);
  animation: sweep var(--dur) linear infinite;
}
@keyframes ink {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
@keyframes sweep {
  from { left: 0; }
  to { left: 100%; }
}

.trace-axis {
  list-style: none;
  display: flex;
  border-top: 1px solid var(--border);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--faint);
}
.trace-axis li { flex: 1; border-left: 1px solid var(--border); padding: 6px 0 0 6px; }
.trace-axis li:first-child { border-left: 0; padding-left: 0; }
.trace-axis .end { flex: 0 0 auto; text-align: right; padding-left: 10px; color: var(--muted); }

.trace-note { margin-top: 12px; max-width: 62ch; font-size: 13.2px; color: var(--faint); }

/* ---------- video slabs ---------- */
.slab {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #05070b;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 70px rgba(139, 92, 246, .14);
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .45s cubic-bezier(.2, .9, .25, 1), box-shadow .35s ease;
}
.slab.tracking { transition: transform .1s linear, box-shadow .35s ease; }
.slab:hover { box-shadow: 0 36px 100px rgba(0, 0, 0, .68), 0 0 96px rgba(139, 92, 246, .26); }
.slab video { display: block; width: 100%; height: auto; transform: translateZ(20px); }
.slab::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--cx, 50%) var(--cy, 50%), rgba(255, 255, 255, .10), transparent 62%);
  opacity: 0;
  transition: opacity .35s ease;
}
.slab:hover::after { opacity: 1; }

.slab-cap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 14px;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--faint);
}
.slab-cap b { color: var(--text); font-weight: 700; }

.showcase-media { max-width: 980px; margin-inline: auto; }
.showcase-media + .grid { margin-top: clamp(24px, 3vw, 40px); }

/* ---------- split rows ---------- */
.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}
.split + .split { margin-top: var(--sec); }
.split.flip .split-media { order: 2; }
.split-text p { margin-top: 14px; color: var(--muted); font-size: 15.4px; }
.split-list { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.split-list li { position: relative; padding-left: 28px; font-size: 14.6px; color: var(--muted); }
.split-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.split-list b { color: var(--text); font-weight: 650; }

/* ---------- cards: glass that lights up under the cursor ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 15px; }

.card, .step {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 23px 22px;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform .4s cubic-bezier(.2, .9, .25, 1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.card.tracking, .step.tracking { transition: transform .1s linear, border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.card::before, .step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(330px circle at var(--cx, 50%) var(--cy, 50%), rgba(139, 92, 246, .17), transparent 62%);
  opacity: 0;
  transition: opacity .3s ease;
}
.card:hover, .step:hover {
  border-color: rgba(139, 92, 246, .42);
  background: var(--surface-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 34px rgba(139, 92, 246, .12);
}
.card:hover::before, .step:hover::before { opacity: 1; }
.card > *, .step > * { position: relative; }
.card h3, .step h3 { margin-bottom: 8px; }
.card p, .step p { font-size: 14.2px; color: var(--muted); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 15px; }
.steps.stack { grid-template-columns: 1fr; }
.step-n {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 11px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { font-size: 1.06rem; }

/* ---------- guide + faq ---------- */
.guide-head { display: grid; grid-template-columns: minmax(0, 1fr) 232px; gap: clamp(24px, 4vw, 56px); align-items: center; }
.guide-head .head { margin-bottom: 0; }

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 9px;
  transition: border-color .25s ease, background .25s ease;
}
details:hover { border-color: rgba(139, 92, 246, .32); background: var(--surface-2); }
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 19px;
  font-weight: 600;
  font-size: 15px;
}
summary::-webkit-details-marker { display: none; }
summary::before {
  content: "+";
  font-family: var(--mono);
  font-weight: 700;
  color: var(--a2);
  width: 14px;
  transition: transform .25s ease;
}
details[open] summary::before { content: "−"; }
details > :not(summary) { padding: 0 19px 17px 46px; color: var(--muted); font-size: 14.4px; }
details ol { padding-left: 17px; }
details li { margin-bottom: 6px; }
details li::marker { color: var(--a2); }
details a, .card a { color: var(--a2); }
details a:hover, .card a:hover { text-decoration: underline; }

/* ---------- Pro: chip + the closing call ---------- */
.chip-pro {
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}

.pro-cta {
  margin-top: var(--sec);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 20px;
  background:
    linear-gradient(#11131d, #11131d) padding-box,
    linear-gradient(140deg, rgba(139, 92, 246, .9), rgba(34, 211, 238, .9)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .5), 0 0 70px rgba(139, 92, 246, .16);
}
.pro-cta h3 { font-size: clamp(1.15rem, 1.9vw, 1.45rem); margin-bottom: 9px; }
.pro-cta p { color: var(--muted); font-size: 14.6px; max-width: 62ch; }
.pro-cta-meta {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--faint);
}
.pro-cta-meta b { color: var(--a2); font-weight: 700; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); gap: 18px; max-width: 860px; margin-inline: auto; align-items: start; }
.price-card {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .4s cubic-bezier(.2, .9, .25, 1), box-shadow .3s ease, border-color .3s ease;
}
.price-card.tracking { transition: transform .1s linear, box-shadow .3s ease; }
/* the highlight is clipped by its own radius, so the card can keep its tag
   sticking out over the top edge instead of hiding it with overflow */
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(340px circle at var(--cx, 50%) var(--cy, 50%), rgba(34, 211, 238, .14), transparent 62%);
  opacity: 0;
  transition: opacity .3s ease;
}
.price-card:hover::before { opacity: 1; }
.price-card > * { position: relative; }
.price-card:hover { box-shadow: 0 26px 70px rgba(0, 0, 0, .5); border-color: var(--border-2); }
.price-card.pick {
  background:
    linear-gradient(#11131d, #11131d) padding-box,
    linear-gradient(140deg, rgba(139, 92, 246, .9), rgba(34, 211, 238, .9)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .5), 0 0 70px rgba(139, 92, 246, .16);
}
.tag {
  position: absolute;
  top: -1px; right: 22px;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: 4px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(139, 92, 246, .45);
}
.price-head { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.price-head img { border-radius: 9px; }
.price-name { font-weight: 700; font-size: 17px; }
.price-tag { font-size: 13px; color: var(--muted); }
.price-num { font-size: 29px; font-weight: 700; color: var(--text); letter-spacing: -.04em; margin-right: 5px; }
.price-list { list-style: none; margin-bottom: 24px; }
.price-list li { position: relative; padding: 6px 0 6px 26px; font-size: 14.3px; color: var(--muted); }
.price-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 15px;
  width: 11px; height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
/* what this plan does not include — stated plainly, not hidden */
.price-miss { color: var(--faint); font-size: 13.4px; }
.price-miss::before { background: rgba(255, 255, 255, .22); }

.price-delta {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .03em;
  color: var(--a2);
}
.price-note { margin-top: 24px; text-align: center; font-size: .72rem; letter-spacing: .04em; color: var(--faint); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); }
.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-block: 28px 40px;
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--faint);
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--muted); }
.footer-links { display: flex; gap: 16px; }
.footer-links a:hover { color: var(--text); }
.footer p { margin-left: auto; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.16, 1, .3, 1); }
.rv.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-row { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .pro-cta { grid-template-columns: 1fr; }
  .pro-cta .btn { width: 100%; }
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .guide-head { grid-template-columns: 1fr; }
  .shot-side { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .btn-lg { width: 100%; }
  .trace-axis li:nth-child(even) { color: transparent; }
  .trace-head { flex-wrap: wrap; gap: 4px 12px; font-size: .64rem; }
  .trace-meta { order: 3; }
  .trace-hum { order: 4; }
  .footer p { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .rv { opacity: 1; transform: none; }
  .t-ink-wrap { clip-path: none; }
  .playhead { display: none; }
  #trail { display: none; }
  body::before, body::after { transform: none; }
  .card, .step, .slab, .shot-app, .price-card { transform: none; }
}
