/* USESTOP V2 — Editorial Light Lab
   Worker scope: base layout, hero, double-exposure section, pricing, CTA, bokeh, cursor reactor.
   Garth supplies typography.css, grain.css, negative-strip.css. */

/* ============ Tokens ============ */
:root {
  --bg: #0A0908;
  --paper: #F2EFE6;
  --amber: #FFB43D;
  --amber-hot: #FF8A00;
  --neg: #FF4D2E;
  --leak-magenta: #FF3DB8;
  --leak-cyan: #3DE1FF;
  --grey-1: rgba(242, 239, 230, 0.9);
  --grey-2: rgba(242, 239, 230, 0.65);
  --grey-3: rgba(242, 239, 230, 0.35);
  --grey-4: rgba(242, 239, 230, 0.12);
  --rule:  rgba(242, 239, 230, 0.18);
  --wonk: 50;
  --wght: 400;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

@property --spin { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@property --hero-wght { syntax: '<number>'; inherits: false; initial-value: 200; }

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--paper);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.05vw + 12px, 18px);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none; /* replaced by .ev-readout cursor when JS loads */
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-cursor-fx { cursor: auto; }

img, svg, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }
::selection { background: var(--amber); color: var(--bg); }

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

section {
  position: relative;
  padding: clamp(72px, 10vh, 140px) var(--gutter);
  overflow: hidden; /* hard-stop horizontal bleed everywhere */
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.slug {
  font-family: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3vh, 36px);
}
.slug::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--grey-3);
}

/* ============ Top nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 3vw, 32px);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
}
.nav-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-variation-settings: 'opsz' 144, 'wonk' 30;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.02em;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.nav-mark .mark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: conic-gradient(from var(--spin), var(--amber) 0deg, var(--amber-hot) 120deg, var(--amber) 240deg);
  display: inline-block;
  margin-left: 2px;
  align-self: center;
  box-shadow: 0 0 10px rgba(255, 180, 61, 0.5);
  animation: spin 7s linear infinite, breathe 2.4s ease-in-out infinite;
}
@keyframes spin { to { --spin: 360deg; } }
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 6px rgba(255, 180, 61, 0.4); }
  50% { box-shadow: 0 0 16px rgba(255, 180, 61, 0.75); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-mark .mark-dot { animation: none; background: var(--amber); }
}
.nav .nav-links {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}
.nav-cta {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.72;
  padding: 6px 2px;
  border: none;
  background: none;
  border-radius: 0;
  position: relative;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 180ms ease;
}
.nav-cta:hover { opacity: 1; }
.nav-cta[aria-current="page"],
.nav-cta.is-active {
  opacity: 1;
  color: var(--paper);
}
.nav-cta[aria-current="page"]::after,
.nav-cta.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--amber);
}
@media (max-width: 520px) {
  .nav { padding: 11px 14px; }
  .nav .nav-links { gap: 14px; }
  .nav-cta { font-size: 0.68rem; letter-spacing: 0.14em; }
}

/* ============ HERO (Section 1) ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(96px, 14vh, 140px);
  padding-bottom: clamp(40px, 8vh, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.hero-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  margin-bottom: clamp(40px, 6vh, 80px);
}
.hero-rail span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .hero-rail { grid-template-columns: repeat(2, 1fr); gap: 8px 14px; font-size: 0.625rem; }
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-variation-settings: 'opsz' 144, 'wonk' var(--wonk), 'wght' var(--hero-wght);
  font-size: clamp(72px, 22vw, 320px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin: 0;
  /* width clamped to viewport so we never overflow */
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-headline .stop-dot {
  color: var(--amber);
  font-variation-settings: 'opsz' 144, 'wonk' 80, 'wght' 700;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-headline {
    animation: ink-draw 900ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
  }
}
@keyframes ink-draw {
  0% { --hero-wght: 200; opacity: 0.4; letter-spacing: -0.025em; }
  100% { --hero-wght: 700; opacity: 1; letter-spacing: -0.045em; }
}

.hero-sub {
  margin-top: clamp(20px, 3vh, 36px);
  max-width: 32ch;
  font-size: clamp(16px, 1.4vw + 6px, 22px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--grey-1);
}

.hero-ctas {
  margin-top: clamp(28px, 4vh, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: clamp(0.6875rem, 0.5vw + 0.6rem, 0.8125rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: clamp(12px, 1.4vw, 16px) clamp(18px, 2.2vw, 28px);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 200ms, color 200ms;
  will-change: transform;
  white-space: nowrap;
}
.hero-ctas { row-gap: 12px; }
@media (max-width: 520px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .btn { letter-spacing: 0.14em; }
}
.btn[data-magnetic] { transform: translate(var(--mx, 0), var(--my, 0)); }
.btn-primary {
  background: var(--amber-hot);
  color: var(--bg);
  border: 1px solid var(--amber-hot);
}
.btn-primary:hover { background: var(--amber); border-color: var(--amber); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--bg); }
.btn .arrow { transition: transform 220ms; }
.btn:hover .arrow { transform: translateX(4px); }

/* Magazine masthead */
.masthead {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 24px) clamp(16px, 3vw, 40px);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: clamp(28px, 4vh, 48px);
}
.masthead em {
  font-style: normal;
  color: var(--amber);
}

/* Bokeh layer */
.bokeh {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bokeh-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 180, 61, 0.55), rgba(255, 180, 61, 0.05) 70%, transparent 100%);
  filter: blur(2px);
  will-change: transform;
  transition: transform 300ms cubic-bezier(0.15, 0.7, 0.3, 1);
}
.bokeh-circle.hex {
  border-radius: 0;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  background: radial-gradient(closest-side, rgba(255, 180, 61, 0.42), transparent 75%);
}
.bokeh-circle.tint-magenta {
  background: radial-gradient(closest-side, rgba(255, 61, 184, 0.32), transparent 75%);
}
.bokeh-circle.tint-cyan {
  background: radial-gradient(closest-side, rgba(61, 225, 255, 0.22), transparent 75%);
}
@media (prefers-reduced-motion: reduce) {
  .bokeh-circle { transition: none; }
}

/* Magenta first-load light leak */
.leak {
  position: fixed;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.6, 1);
}
.leak.show { opacity: 0.25; }
.leak-magenta {
  top: -120px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 30% 30%, var(--leak-magenta) 0%, transparent 60%);
}
.leak-cyan {
  bottom: -160px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle at 70% 70%, var(--leak-cyan) 0%, transparent 60%);
}

/* EV-readout cursor */
.ev-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 70;
  font-family: 'Geist Mono', ui-monospace, monospace;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 14px 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform;
  transition: opacity 180ms, background 200ms;
  opacity: 0;
}
.ev-cursor.show { opacity: 1; }
.ev-cursor .ev-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 6px rgba(255, 180, 61, 0.8);
}
.ev-cursor .ev-value {
  font-variant-numeric: tabular-nums;
  color: var(--amber);
}
@media (hover: none), (pointer: coarse) {
  .ev-cursor { display: none !important; }
  body { cursor: auto; }
}

/* ============ SECTION 2 — Double-exposure problem ============ */
.dx {
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.dx-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(16px, 3vh, 36px);
  margin-bottom: clamp(40px, 6vh, 72px);
  isolation: isolate;
}
.dx-line {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--paper);
  grid-column: 1;
  grid-row: 1;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.1, 1), opacity 700ms, filter 700ms;
  will-change: transform, opacity, filter;
  margin: 0;
}
/* Primary exposure: crisp, 100% opacity, wonk 0 */
.dx-line.dx-a {
  font-variation-settings: 'opsz' 144, 'wonk' 0;
  color: var(--paper);
  opacity: 1;
  z-index: 2;
  position: relative;
}
/* Secondary: ghost trail behind the primary, 30% opacity, wonk 100, blurred and offset */
.dx-line.dx-b {
  font-variation-settings: 'opsz' 144, 'wonk' 100;
  color: var(--paper);
  opacity: 0.3;
  filter: blur(8px);
  transform: translate(20px, 14px);
  z-index: 1;
}
/* On aligned state: ghost fades to zero, single frame */
.dx.aligned .dx-line.dx-b {
  opacity: 0;
  transform: translate(0, 0);
  filter: blur(14px);
}
/* iPhone legibility fallback: stronger blur, lower opacity */
@media (max-width: 640px) {
  .dx-line.dx-b {
    opacity: 0.2;
    filter: blur(12px);
    transform: translate(14px, 10px);
  }
}

.dx-body {
  max-width: 56ch;
  font-size: clamp(15px, 1.1vw + 8px, 19px);
  color: var(--grey-1);
  line-height: 1.6;
}
.dx-body p + p { margin-top: 1.1em; }

@media (prefers-reduced-motion: reduce) {
  .dx-line.dx-a, .dx-line.dx-b { transform: translate(0, 0); transition: none; }
}

/* ============ SECTION 3 — Method (stock card flight) — Garth owns the JS ============ */
.method { background: var(--bg); border-top: 1px solid var(--rule); }
.stock-cards {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(28px, 4vh, 48px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -ms-overflow-style: none;
}
.stock-cards::-webkit-scrollbar { display: none; }
.stock-card {
  flex: 0 0 clamp(220px, 28vw, 320px);
  scroll-snap-align: start;
  background: rgba(242, 239, 230, 0.04);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.stock-card .stock-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-variation-settings: 'opsz' 60, 'wonk' 30;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin: 0;
}
.stock-card .stock-iso {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--grey-2);
  text-transform: uppercase;
}
.stock-card .stock-thumb {
  height: 140px;
  border-radius: 4px;
  margin-top: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(1.02) contrast(1.02);
}
.stock-card[data-stock="portra-400"] .stock-thumb {
  background-image: url("/assets/imagery/film-stocks/stock-001-Portra400.jpg");
}
.stock-card[data-stock="trix-400"] .stock-thumb {
  background-image: url("/assets/imagery/film-stocks/stock-002-TriX400.jpg");
}
.stock-card[data-stock="velvia-50"] .stock-thumb {
  background-image: url("/assets/imagery/film-stocks/stock-003-Velvia50.jpg");
}
.stock-card[data-stock="cinestill-800t"] .stock-thumb {
  background-image: url("/assets/imagery/film-stocks/stock-004-Cinestill800T.jpg");
}

/* ============ SECTION 4 — Garth section, just give it space ============ */
.gallery { background: var(--bg); border-top: 1px solid var(--rule); padding-bottom: clamp(40px, 8vh, 100px); }

/* ============ SECTION 5 — Pricing ============ */
.pricing { background: var(--bg); border-top: 1px solid var(--rule); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(28px, 4vh, 48px);
}
.tier {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(242, 239, 230, 0.025);
  position: relative;
  transition: border-color 240ms, transform 240ms;
}
.tier:hover { border-color: var(--amber); transform: translateY(-3px); }
.tier.is-feature {
  background: rgba(255, 180, 61, 0.06);
  border-color: rgba(255, 180, 61, 0.4);
}
.tier .tier-slug {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.tier .tier-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-variation-settings: 'opsz' 144, 'wonk' var(--wonk, 50);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: font-variation-settings 400ms;
}
.tier:hover .tier-price { font-variation-settings: 'opsz' 144, 'wonk' 80; }
.tier .tier-price .currency {
  font-size: 0.4em;
  color: var(--grey-2);
  font-variation-settings: 'opsz' 144, 'wonk' 0;
}
.tier .tier-price .per {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.18em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
  align-self: end;
  margin-bottom: 1.6em;
  margin-left: 4px;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier ul li {
  font-size: 0.95rem;
  color: var(--grey-1);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.tier ul li::before {
  content: '◆';
  color: var(--amber);
  font-size: 0.7em;
}
.tier .btn { align-self: stretch; justify-content: center; margin-top: auto; }

/* Pricing entrance: dial-hand tick */
.pricing .dial-tick {
  display: block;
  width: clamp(44px, 5vw, 64px);
  height: clamp(44px, 5vw, 64px);
  margin-bottom: clamp(20px, 3vh, 32px);
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--rule);
}
.pricing .dial-tick::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  height: 38%;
  background: var(--amber);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(-30deg);
  transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pricing.tickled .dial-tick::before {
  transform: translate(-50%, -100%) rotate(30deg);
}
@media (prefers-reduced-motion: reduce) {
  .pricing .dial-tick::before { transition: none; transform: translate(-50%, -100%) rotate(0deg); }
}

/* ============ SECTION 6 — Final CTA ============ */
.final {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  text-align: center;
  padding: clamp(120px, 20vh, 240px) var(--gutter);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vh, 36px);
  position: relative;
  isolation: isolate;
}
.final-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-variation-settings: 'opsz' 144, 'wonk' 60, 'wght' 700;
  font-size: clamp(56px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin: 0;
  max-width: 14ch;
}
.final-headline .stop-dot { color: var(--amber); }
.final-sub {
  max-width: 40ch;
  color: var(--grey-2);
  font-size: clamp(15px, 1.2vw + 8px, 19px);
  line-height: 1.5;
}
.final .btn-primary { font-size: 0.875rem; padding: 22px 40px; }

/* Shutter flash overlay */
.shutter-flash {
  position: fixed;
  inset: 0;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 60ms ease-out;
}
.shutter-flash.fire { opacity: 0.98; transition: opacity 30ms ease-in; }
@media (prefers-reduced-motion: reduce) {
  .shutter-flash.fire { opacity: 0.6; }
}

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--rule);
  padding: clamp(40px, 6vh, 72px) var(--gutter) clamp(72px, 8vh, 96px);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-3);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  justify-content: space-between;
  align-items: center;
}
.footer a:hover { color: var(--amber); }

/* ============ Scroll-triggered videos ============ */
.walkthrough-video,
.calibrate-video {
  margin: clamp(40px, 6vh, 72px) 0 0;
  padding: 0;
  display: block;
  position: relative;
  isolation: isolate;
}
.walkthrough-video {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(242,239,230,0.02);
}
.walkthrough-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.calibrate-video {
  width: min(100%, 800px);
  max-width: 100%;
  border: 1px solid rgba(255, 180, 61, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 180, 61, 0.08), 0 30px 80px -30px rgba(255, 180, 61, 0.22);
  background: rgba(10,9,8,0.6);
}
.calibrate-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
@media (max-width: 640px) {
  .calibrate-video { width: 100%; }
  .walkthrough-video video,
  .calibrate-video video { aspect-ratio: 9 / 16; }
}
