/* ============================================================
   Canon EOS R5 Mark II teardown funnel
   Dark editorial ground so the near-black product renders can
   bleed into the page with no visible letterboxing.
   ============================================================ */

:root {
  --ink:        #07070a;
  --ink-2:      #0b0b11;
  --ink-3:      #12121a;
  --card:       #14141d;
  --line:       rgba(255, 255, 255, 0.09);
  --line-2:     rgba(255, 255, 255, 0.16);
  --text:       #f3f3f6;
  --dim:        #9b9baa;
  --dim-2:      #6f6f7e;
  --accent:     #ff7a45;
  --accent-dim: #ffb494;
  --accent-ink: #1c0b03;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          Helvetica, Arial, sans-serif;

  --gut:  clamp(1.25rem, 5vw, 5.5rem);
  --ease: cubic-bezier(0.22, 0.7, 0.28, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

.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 {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.75rem 1.25rem; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- type ---------- */

.h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.lede {
  margin: 0 0 2rem;
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--dim);
}

.finePrint {
  margin: 2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--dim-2);
  max-width: 60ch;
}

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s, color 0.25s,
              border-color 0.25s, opacity 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.65; cursor: default; transform: none; }

.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #ff8d5e; }

.btn--small { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn--large { padding: 1.15rem 2.4rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- topbar ---------- */

.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.9rem var(--gut);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.topbar.is-solid {
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.topbar__mark {
  font-weight: 700; letter-spacing: -0.02em; font-size: 1.05rem;
  margin-right: auto;
}
.topbar__mark sup { font-size: 0.6em; margin-left: 1px; }
.topbar__nav { display: flex; gap: 1.6rem; }
.topbar__nav a {
  font-size: 0.9rem; color: var(--dim); text-decoration: none;
  transition: color 0.2s;
}
.topbar__nav a:hover { color: var(--text); }

/* ============================================================
   PINNED SEQUENCES — shared
   Used by both the hero teardown and the mid-page lens dive.
   700vh of travel over 240 frames: roughly 34 frames per
   viewport height, which keeps the disassembly weighty.
   ============================================================ */

.seq {
  position: relative;
  height: 700vh;
  background: var(--ink);
}

.seq__pin {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
}

.seq__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--ink);
}

/* Darkens the side the copy sits on, and deepens as the diagram
   expands to fill the frame (--seq-progress is set by JS). */
.seq__scrim {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(7, 7, 10, 0.95) 0%,
    rgba(7, 7, 10, 0.78) 26%,
    rgba(7, 7, 10, 0.28) 50%,
    rgba(7, 7, 10, 0) 68%
  );
  opacity: calc(0.5 + var(--seq-progress, 0) * 0.5);
}

.seq__beats { position: absolute; inset: 0; }

.beat {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
  padding: 6rem var(--gut) 5rem;
  opacity: 0; visibility: hidden;
  will-change: opacity, transform;
  pointer-events: none;
}
.beat > * { max-width: 32rem; pointer-events: auto; }

.beat--center { align-items: center; text-align: center; }
.beat--center > * { max-width: 40rem; }

.beat__eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}

.beat__title {
  margin: 0 0 1.4rem;
  font-size: clamp(2.3rem, 5.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-wrap: balance;
}

.beat__body {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.62;
  color: #cfcfd8;
  max-width: 34ch;
}

.beat__stats {
  display: flex; flex-wrap: wrap; gap: 2.4rem;
  margin: 0 0 2.2rem;
}
.beat__stats dt {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1;
}
.beat__stats dd {
  margin: 0.4rem 0 0;
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--dim); text-transform: uppercase;
}

.beat__hint {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 2.5rem 0 0;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dim-2);
}
.beat__hint-line {
  width: 46px; height: 1px; background: var(--line-2);
  position: relative; overflow: hidden;
}
.beat__hint-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  animation: sweep 2.2s var(--ease) infinite;
}
@keyframes sweep {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* frame-load progress, only visible during the coarse pass */
.seq__loader {
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: rgba(255, 255, 255, 0.07);
  transition: opacity 0.6s 0.2s;
}
.seq__loader::after {
  content: ''; position: absolute; inset: 0 auto 0 0;
  width: var(--load, 0%);
  background: var(--accent);
  transition: width 0.3s linear;
}
.seq.is-ready .seq__loader { opacity: 0; }

/* ============================================================
   MID-PAGE VARIANT — the lens dive
   The teardown leaves the left third of frame empty, so its copy
   sits in a column behind a side gradient. This sequence is
   radially symmetric and fills the entire frame at every moment,
   so a column would land on top of the iris. Copy therefore goes
   in a bottom band behind a bottom-up scrim, which stays legible
   across all four beats.
   600vh over 240 frames — a little quicker than the hero, since
   it is one continuous move rather than parts separating.
   ============================================================ */

.seq--lens { height: 600vh; }

.seq--lens .seq__scrim {
  background: linear-gradient(
    0deg,
    rgba(7, 7, 10, 0.97) 0%,
    rgba(7, 7, 10, 0.9) 24%,
    rgba(7, 7, 10, 0.5) 45%,
    rgba(7, 7, 10, 0) 68%
  );
  /* Starts strong and deepens: the sensor at the end is the brightest
     thing in the sequence, so the copy needs more ground under it. */
  opacity: calc(0.74 + var(--seq-progress, 0) * 0.26);
}

.seq--lens .beat {
  justify-content: flex-end;
  padding-bottom: 4.5rem;
}
.seq--lens .beat > * { max-width: 40rem; }
.seq--lens .beat__title { font-size: clamp(2.1rem, 4.4vw, 3.9rem); }
.seq--lens .beat__body { max-width: 48ch; }
.seq--lens .beat__stats { margin-bottom: 1.5rem; }

/* ---------- sections ---------- */

.section { padding: clamp(5rem, 11vw, 10rem) 0; }
.section--alt { background: var(--ink-2); }
.section--offer { background: var(--ink-2); }
.section--capture { background: var(--ink); }
.section--final { padding: clamp(6rem, 13vw, 12rem) 0; }

.wrap {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { width: min(760px, 100%); }

/* ---------- benefit cards ---------- */

.benefits {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: 3.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }

.card__kicker {
  margin: 0 0 1.1rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.card__title {
  margin: 0 0 0.9rem;
  font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.02em; font-weight: 600;
}
.card__body { margin: 0 0 1.6rem; color: var(--dim); font-size: 0.95rem; }
.card__facts {
  margin: auto 0 0; padding: 1.25rem 0 0;
  list-style: none; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.card__facts li {
  font-size: 0.85rem; color: var(--dim);
  padding-left: 1.1rem; position: relative;
}
.card__facts li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

/* ---------- use cases ---------- */

.cases {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: 3.5rem;
}
.case {
  padding: 2rem 0 0;
  border-top: 2px solid var(--line-2);
}
.case__title {
  margin: 0 0 0.9rem;
  font-size: 1.2rem; letter-spacing: -0.02em; font-weight: 600;
}
.case__body { margin: 0 0 1.75rem; color: var(--dim); font-size: 0.95rem; }

.case__quote {
  margin: 0; padding: 1.25rem 1.25rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--line-2);
  border-radius: 0 10px 10px 0;
}
.case__quote p { margin: 0 0 0.6rem; font-size: 0.88rem; color: var(--dim); }
.case__quote cite { font-size: 0.78rem; color: var(--dim-2); font-style: normal; }

/* placeholder slots read as unfinished on purpose */
.case__quote.is-placeholder {
  border-left-style: dashed;
  border-left-color: var(--accent-dim);
}
.case__quote.is-placeholder p { font-style: italic; }

/* ---------- comparison table ---------- */

.table-scroll {
  margin-top: 3rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  -webkit-overflow-scrolling: touch;
}

.cmp {
  width: 100%; min-width: 620px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.cmp th, .cmp td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cmp thead th {
  position: sticky; top: 0;
  background: var(--ink-3);
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim); font-weight: 600;
  white-space: nowrap;
}
.cmp tbody th {
  font-weight: 500; color: var(--dim);
  width: 26%;
}
.cmp td { color: var(--dim); }
.cmp .is-hero { color: var(--text); background: rgba(255, 122, 69, 0.055); }
.cmp thead .is-hero { color: var(--accent); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }

/* ---------- accordion (specs + FAQ) ---------- */

.specs, .faq { margin-top: 3rem; }

.acc { border-bottom: 1px solid var(--line); }
.acc:first-child { border-top: 1px solid var(--line); }

.acc__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem; font-weight: 500; letter-spacing: -0.01em;
  transition: color 0.2s;
}
.acc__head::-webkit-details-marker { display: none; }
.acc__head:hover { color: var(--accent-dim); }

.acc__icon {
  flex: 0 0 auto; width: 16px; height: 16px; color: var(--dim);
  transition: transform 0.3s var(--ease), color 0.2s;
}
.acc[open] .acc__icon { transform: rotate(135deg); color: var(--accent); }

.acc__body { margin: 0; padding: 0 0 1.6rem; }
.acc__body--prose p {
  margin: 0; max-width: 62ch; color: var(--dim); font-size: 0.95rem;
}

.spec {
  display: grid; grid-template-columns: 13rem 1fr; gap: 1.5rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}
.spec:first-child { border-top: 0; }
.spec dt { color: var(--dim-2); font-size: 0.88rem; }
.spec dd { margin: 0; font-size: 0.92rem; }

/* ---------- offers ---------- */

.offers {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 3.5rem;
}

.offer {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2.25rem 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.offer--featured {
  border-color: rgba(255, 122, 69, 0.45);
  background: linear-gradient(180deg, rgba(255, 122, 69, 0.07), var(--card) 45%);
}
.offer__badge {
  position: absolute; top: -0.7rem; left: 2rem;
  background: var(--accent); color: var(--accent-ink);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.offer__name {
  margin: 0 0 1.25rem;
  font-size: 1.05rem; font-weight: 600; letter-spacing: -0.015em;
}
.offer__price {
  margin: 0 0 0.4rem;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1;
}
.offer__note { margin: 0 0 1.6rem; color: var(--dim); font-size: 0.9rem; }
.offer__inc {
  margin: 0 0 2rem; padding: 1.4rem 0 0;
  list-style: none; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.offer__inc li {
  font-size: 0.88rem; color: var(--dim);
  padding-left: 1.4rem; position: relative;
}
.offer__inc li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-size: 0.85rem;
}
.offer .btn { margin-top: auto; }

.reassure {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 3rem 0 0; padding: 2.25rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.reassure strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; }
.reassure span { font-size: 0.86rem; color: var(--dim); }

/* ---------- email capture ---------- */

.capture {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2rem;
}
.capture input {
  flex: 1 1 16rem;
  padding: 0.95rem 1.25rem;
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text);
  font: inherit; font-size: 0.95rem;
  transition: border-color 0.25s;
}
.capture input::placeholder { color: var(--dim-2); }
.capture input:focus { border-color: var(--accent); outline: none; }
.capture.is-invalid input { border-color: #ff5a5a; }
.capture__msg {
  flex: 1 1 100%; margin: 0.25rem 0 0;
  font-size: 0.85rem; color: var(--dim);
  min-height: 1.2em;
}
.capture.is-invalid .capture__msg { color: #ff8a8a; }
.capture.is-done .capture__msg { color: var(--accent-dim); }

/* ---------- footer ---------- */

.footer {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}
.footer__disclaimer {
  margin: 0 0 1.5rem;
  max-width: 72ch;
  font-size: 0.82rem; line-height: 1.7; color: var(--dim-2);
}
.footer__disclaimer strong { color: var(--dim); }
.footer__meta { margin: 0; font-size: 0.78rem; color: var(--dim-2); }

/* ---------- sticky mobile CTA ---------- */

.stickybar {
  position: fixed; inset: auto 0 0 0; z-index: 70;
  display: none; align-items: center; gap: 1rem;
  padding: 0.75rem var(--gut);
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(11, 11, 17, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.stickybar.is-up { transform: none; }
.stickybar__price { margin-right: auto; line-height: 1.2; }
.stickybar__price strong { display: block; font-size: 1.05rem; }
.stickybar__price span { font-size: 0.75rem; color: var(--dim); }

/* ---------- scroll reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease) var(--delay, 0ms),
              transform 0.75s var(--ease) var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Mobile: the canvas becomes a band at the top and the copy
   sits beneath it, so nothing is cropped and nothing is tiny.
   ============================================================ */

@media (max-width: 768px) {
  .seq { height: 620vh; }

  .seq__canvas { inset: 0 0 auto 0; height: 48vh; }

  .seq__scrim {
    background: linear-gradient(
      180deg,
      rgba(7, 7, 10, 0.55) 0%,
      rgba(7, 7, 10, 0) 26%,
      rgba(7, 7, 10, 0.7) 44%,
      var(--ink) 56%
    );
  }

  .seq__beats { top: 44vh; }
  .beat {
    justify-content: flex-start;
    padding: 1rem var(--gut) 4.5rem;
  }
  .beat--center { align-items: flex-start; text-align: left; }

  /* .seq--lens .beat has higher specificity than the shared .beat rule
     above, so flex-end must be undone explicitly here. */
  .seq--lens { height: 520vh; }
  .seq--lens .beat { justify-content: flex-start; padding-bottom: 4.5rem; }
  .seq--lens .beat > * { max-width: none; }
  .seq--lens .seq__scrim {
    background: linear-gradient(
      180deg,
      rgba(7, 7, 10, 0.5) 0%,
      rgba(7, 7, 10, 0) 24%,
      rgba(7, 7, 10, 0.72) 42%,
      var(--ink) 55%
    );
  }
  .beat__stats { gap: 1.5rem; }
  .beat__body { max-width: none; }
  .beat__hint { margin-top: 1.5rem; }

  .topbar__nav { display: none; }
  .stickybar { display: flex; }

  .spec { grid-template-columns: 1fr; gap: 0.15rem; }
  .cmp thead th { position: static; }
}

@media (max-width: 420px) {
  .beat__stats dt { font-size: 1.3rem; }
  .beat__stats { gap: 1.1rem; }
}

/* ============================================================
   Reduced motion: no pin, no scroll-jack. The settled exploded
   frame plus every beat in normal document flow.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.seq.is-static { height: auto; }
.seq.is-static .seq__pin { position: relative; height: auto; }
.seq.is-static .seq__canvas {
  position: relative; inset: auto;
  width: 100%; height: min(62vh, 480px);
}
.seq.is-static .seq__scrim { display: none; }
.seq.is-static .seq__loader { display: none; }
.seq.is-static .seq__beats { position: relative; inset: auto; }
.seq.is-static .beat {
  position: relative; inset: auto;
  opacity: 1; visibility: visible; transform: none;
  padding: 3.5rem var(--gut);
  border-top: 1px solid var(--line);
}
.seq.is-static .beat__hint { display: none; }

/* ============================================================
   TURNTABLE — drag-driven, not pinned
   The other two sequences are scroll-driven and pinned. A
   turntable's affordance is dragging, and a third bout of
   scroll-jacking would be monotonous, so this one sits in
   normal flow and is spun by hand just before the price.
   ============================================================ */

.turntable__stage {
  position: relative;
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 16 / 9;
  max-height: min(62vh, 560px);
}

.turntable__canvas {
  width: 100%; height: 100%;
  display: block;
  background: var(--ink);
  cursor: grab;
  /* Vertical gestures must still scroll the page; only horizontal
     drags belong to the turntable. */
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.turntable.is-grabbing .turntable__canvas { cursor: grabbing; }
.turntable__canvas:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; }

.turntable__hint {
  position: absolute; left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
/* Once the reader takes over, the instruction has done its job. */
.turntable.is-touched .turntable__hint {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

/* Rotation position readout — doubles as a hint that this thing moves. */
.turntable__track {
  position: absolute; left: 50%; bottom: 0.85rem;
  transform: translateX(-50%);
  width: min(180px, 40%); height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.turntable.is-touched .turntable__track { opacity: 1; }
.turntable__track::after {
  content: '';
  position: absolute; top: -2px; bottom: -2px;
  left: var(--pos, 0%);
  width: 28px;
  margin-left: -14px;
  background: var(--accent);
  border-radius: 3px;
}

.turntable__loader {
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: rgba(255, 255, 255, 0.07);
  transition: opacity 0.6s 0.2s;
}
.turntable__loader::after {
  content: ''; position: absolute; inset: 0 auto 0 0;
  width: var(--load, 0%);
  background: var(--accent);
  transition: width 0.3s linear;
}
.turntable.is-ready .turntable__loader { opacity: 0; }

.turntable__facts {
  display: grid; gap: 1.5rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 2.5rem 0 0;
}
.turntable__facts dt {
  font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.turntable__facts dt::before {
  content: ''; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  vertical-align: 0.22em; margin-right: 0.55rem;
}
.turntable__facts dd {
  margin: 0; font-size: 0.87rem; color: var(--dim);
}

@media (max-width: 768px) {
  /* Taller box for a bigger touch target. The letterboxing this adds is
     invisible: the render sits on near-black and so does the stage. */
  .turntable__stage { aspect-ratio: 4 / 3; max-height: 46vh; }
  .turntable__hint { bottom: 1.3rem; font-size: 0.68rem; }
}
