/* ApexBee — Introductory Keynote */

:root {
  --bg: #060607;
  --bg-soft: #0c0c0e;
  --text: #f3ede3;
  --text-dim: #8a8378;
  --text-faint: #4a4640;
  --gold: #c4a265;
  --gold-soft: rgba(196, 162, 101, 0.14);
  --gold-glow: rgba(196, 162, 101, 0.07);
  --line: rgba(243, 237, 227, 0.06);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-slide: 0.85s var(--ease);
  --t-reveal: 1.05s var(--ease);
  --pad: clamp(2rem, 6vw, 7rem);
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  user-select: none;
  overscroll-behavior: none;
}

::selection { background: var(--gold-soft); color: var(--text); }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; color: var(--gold); }

/* Shell */
.deck {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px;
}

.glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, var(--gold-glow), transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 10%, rgba(196, 162, 101, 0.03), transparent 60%);
  transition: opacity 1.2s var(--ease);
}

.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 75% 65% at 50% 50%, transparent 35%, rgba(0,0,0,0.55) 100%);
}

/* Mood shifts on body via data attribute */
.deck[data-mood="pain"] .glow {
  opacity: 0.3;
  background: radial-gradient(ellipse 60% 50% at 30% 70%, rgba(60, 60, 80, 0.08), transparent 70%);
}

.deck[data-mood="fame"] .glow {
  background:
    radial-gradient(ellipse 55% 45% at 50% 45%, rgba(196, 162, 101, 0.12), transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 100%, var(--gold-glow), transparent 65%);
}

.deck[data-mood="action"] .glow {
  background: radial-gradient(ellipse 50% 40% at 50% 55%, rgba(196, 162, 101, 0.1), transparent 60%);
}

.deck[data-mood="close"] .glow,
.deck[data-mood="warm"] .glow {
  background:
    radial-gradient(ellipse 50% 45% at 50% 60%, rgba(196, 162, 101, 0.09), transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 100%, var(--gold-glow), transparent 65%);
}

/* Progress */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: var(--line); z-index: 100; }
.progress-bar { height: 100%; width: 6%; background: linear-gradient(90deg, var(--gold), #d4b87a); transition: width var(--t-slide); }

/* Mark & counter */
.mark {
  position: fixed; top: clamp(1.25rem, 2.5vw, 2rem); left: var(--pad);
  display: flex; align-items: center; gap: 0.5rem; z-index: 50; opacity: 0.45;
}
.mark svg { width: 18px; height: 18px; color: var(--gold); }
.mark span { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); }

.wordmark .brand-apex { color: var(--text); }
.wordmark .brand-bee { color: var(--gold); }

.counter {
  position: fixed; bottom: clamp(1.25rem, 2.5vw, 2rem); right: var(--pad);
  font-size: 0.72rem; font-weight: 300; letter-spacing: 0.06em; color: var(--text-dim);
  z-index: 50; font-variant-numeric: tabular-nums;
}
.counter .sep { opacity: 0.35; margin: 0 0.1em; }
#current { color: var(--text); }

.hint {
  position: fixed; bottom: clamp(1.25rem, 2.5vw, 2rem); left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint);
  z-index: 50; display: flex; gap: 0.4rem; align-items: center; transition: opacity 0.5s;
}
.hint.hidden { opacity: 0; }
.hint kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.3rem; height: 1.3rem; border: 1px solid var(--line); border-radius: 3px;
  font-family: var(--sans); font-size: 0.55rem; background: var(--bg-soft);
}

.nav {
  position: fixed; bottom: clamp(1.25rem, 2.5vw, 2rem); left: var(--pad);
  display: flex; gap: 0.4rem; z-index: 50;
}
.nav-btn {
  width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%;
  background: transparent; color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: 0.3s var(--ease);
}
.nav-btn svg { width: 15px; height: 15px; }
.nav-btn:hover { border-color: rgba(196, 162, 101, 0.25); color: var(--gold); background: var(--gold-soft); }
.nav-btn:disabled { opacity: 0.2; pointer-events: none; }

.mobile-next {
  display: none;
  position: fixed;
  bottom: clamp(1.25rem, 2.5vw, 2rem);
  left: var(--pad);
  z-index: 50;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem 0.55rem 1.05rem;
  border: 1px solid rgba(196, 162, 101, 0.28);
  border-radius: 999px;
  background: rgba(196, 162, 101, 0.08);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.mobile-next svg { width: 14px; height: 14px; color: var(--gold); }
.mobile-next:active { background: var(--gold-soft); border-color: rgba(196, 162, 101, 0.4); }
.mobile-next:disabled { opacity: 0; pointer-events: none; visibility: hidden; }

/* Slides */
.slides { position: relative; width: 100%; height: 100%; z-index: 1; }

.slide {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--pad);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(28px);
  transition: opacity var(--t-slide), transform var(--t-slide), visibility var(--t-slide);
}

.slide.active,
.slide.leaving-up,
.slide.leaving-down {
  display: flex;
}

.slide.active {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0); z-index: 2;
}

.slide:not(.active) { z-index: 0; }
.slide.leaving-up { opacity: 0; transform: translateY(-28px); z-index: 1; visibility: visible; pointer-events: none; }
.slide.leaving-down { opacity: 0; transform: translateY(28px); z-index: 1; visibility: visible; pointer-events: none; }
.slide.leaving-fwd { opacity: 0; transform: translate3d(-36px, 0, 0); z-index: 1; visibility: visible; pointer-events: none; }
.slide.leaving-back { opacity: 0; transform: translate3d(36px, 0, 0); z-index: 1; visibility: visible; pointer-events: none; }

.deck.is-dragging .slide.active {
  transition: none !important;
}

/* Layout variants */
.slide--left { justify-content: flex-start; }
.slide--left .frame { max-width: 720px; }

/* Copy-only left slides — center so content fills the frame */
.slide--left:not(:has(.visual)) {
  justify-content: center;
  text-align: center;
}
.slide--left:not(:has(.visual)) .frame {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.slide--left:not(:has(.visual)) .kicker::after {
  margin-left: auto;
  margin-right: auto;
}

.frame { position: relative; width: 100%; max-width: 960px; z-index: 2; }
.frame--center { text-align: center; margin: 0 auto; }
.frame--narrow { max-width: 680px; }

.frame--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1100px;
}

.split-art img { width: 100%; opacity: 0.35; }

/* Typography */
.kicker {
  font-size: clamp(0.62rem, 0.9vw, 0.72rem);
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.kicker::after {
  content: ''; display: block; width: 2rem; height: 1px;
  background: var(--gold); opacity: 0.25; margin-top: 0.6rem;
}
.frame--center .kicker::after { margin-left: auto; margin-right: auto; }

.wordmark {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300; letter-spacing: 0.04em;
}

.brand-nav {
  margin-top: clamp(2rem, 5vw, 3.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.45rem, 1.2vw, 0.65rem);
  font-family: var(--sans);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.brand-nav__line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-nav kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(196, 162, 101, 0.28);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--gold);
  background: rgba(196, 162, 101, 0.06);
}

.brand-nav__swipe {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.brand-nav__line--mobile { display: none; }

@media (max-width: 768px) {
  .brand-nav__line--desktop { display: none; }
  .brand-nav__line--mobile { display: inline-flex; }
  .brand-nav__line:first-child { display: none; }
}

.line {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  font-weight: 300; line-height: 1.15;
}
.line--quiet {
  font-size: clamp(1.4rem, 3.2vw, 2.35rem);
  color: var(--text-dim); margin-top: 0.4em; font-style: italic;
}

.statement {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 300; line-height: 1.18; letter-spacing: -0.015em;
}

.statement--compact { font-size: clamp(1.65rem, 3.5vw, 2.85rem); line-height: 1.28; }

.aim-line {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--text-dim);
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

.aim-line em { color: var(--gold); }
.statement--italic { font-style: italic; color: var(--text-dim); }
.statement--impact { font-size: clamp(2.2rem, 5.5vw, 4.25rem); }

.whisper {
  font-family: var(--sans);
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 1rem;
}

.punch {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.35; color: var(--text);
}
.punch--gold { color: var(--text-dim); }

.punch-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  align-items: center;
}

.punch-stack .solo {
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--gold);
}

.solo {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.3; color: var(--text-dim);
}
.solo--large {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-style: normal; color: var(--text);
}

/* Beats */
.beats { display: flex; flex-direction: column; gap: clamp(0.25rem, 1vw, 0.75rem); }
.beat {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
}
.beat:nth-child(1) { color: var(--text); }
.beat:nth-child(2) { color: var(--text-dim); }
.beat--gold { color: var(--gold) !important; font-style: italic; }

/* Number */
.figure {
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.04em;
}
.currency { font-size: 0.4em; vertical-align: super; color: var(--gold); }
.figure-suffix { font-size: 0.38em; color: var(--gold); margin-left: 0.02em; }

.caption {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 300; line-height: 1.5; color: var(--text-dim);
  margin-top: 1.5rem;
}

.slide--number .whisper {
  margin-top: 1.25rem;
  letter-spacing: 0.18em;
}

/* CTA */
.time {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.02em;
}

.call-date {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 300;
  color: var(--gold);
  margin-top: 0.65rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.time-label {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300; font-style: italic;
  color: var(--text-dim); margin-top: 1rem;
}

/* Email — keynote style */
.email-prompt {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 300; line-height: 1.4;
  color: var(--text-dim); margin-bottom: 2.5rem;
}

.email-inline { max-width: 420px; margin: 0 auto; }

.email-form {
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(196, 162, 101, 0.35);
  padding-bottom: 0.65rem;
  transition: border-color 0.3s var(--ease);
}
.email-form:focus-within { border-color: var(--gold); }

.email-input {
  flex: 1; font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300; font-style: italic;
  color: var(--text); background: transparent; border: none; outline: none;
  padding: 0.25rem 0; user-select: text;
}
.email-input::placeholder { color: var(--text-faint); font-style: italic; }

.email-arrow {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  background: transparent; color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s var(--ease); flex-shrink: 0;
}
.email-arrow svg { width: 16px; height: 16px; }
.email-arrow:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.email-arrow:disabled { opacity: 0.45; pointer-events: none; }

.email-done {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic; color: var(--gold); margin-top: 1rem;
}

.email-error {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  color: #c98a7a;
  font-style: italic;
  margin-top: 0.85rem;
}

.email-done.hidden, .email-inline.hidden { display: none; }
.email-error.hidden { display: none; }
.final-cta-label.hidden { display: none; }

/* Final — combined thank you + email */
.slide--final {
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(4.5rem, 14vh, 8rem);
  padding-bottom: clamp(3rem, 6vh, 4.5rem);
  background: radial-gradient(ellipse 60% 42% at 50% 26%, rgba(196, 162, 101, 0.06), transparent 72%);
}

.frame--final {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
  height: 100%;
  min-height: 0;
  text-align: center;
}

.final-hero {
  width: 100%;
  flex-shrink: 0;
}

.joy-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.1rem, 0.35vw, 0.25rem);
}

.joy-line {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}

.joy-line--accent {
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  margin-top: clamp(0.1rem, 0.3vw, 0.2rem);
}

.joy-line--accent em {
  color: var(--gold);
  font-style: italic;
}

.signoff--mid {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0;
  opacity: 0.5;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
}

.final-spacer {
  flex: 1 1 auto;
  min-height: clamp(2rem, 6vh, 3.5rem);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-mark svg {
  width: clamp(52px, 7vw, 68px);
  height: clamp(52px, 7vw, 68px);
  color: var(--gold);
  opacity: 0.5;
}

.final-rest {
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
  padding-bottom: clamp(0.25rem, 1vh, 0.75rem);
}

.final-cta {
  margin-top: 0;
  padding-top: clamp(1.35rem, 2.5vw, 1.75rem);
  border-top: 1px solid rgba(196, 162, 101, 0.22);
}

.final-cta-label {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.85vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.15rem;
}

.thanks:not(.thanks--after) {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.slide--final .thanks.thanks--after {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-faint);
  font-style: italic;
  margin-top: clamp(1rem, 2vw, 1.35rem);
}

.slide--final .email-inline {
  max-width: 380px;
  margin: 0 auto;
}

.slide--final .email-input {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text);
}

.slide--final .email-input::placeholder {
  color: var(--text-dim);
}

.slide--final .email-form {
  border-bottom-color: rgba(196, 162, 101, 0.45);
}

.slide--final .email-form:focus-within {
  border-bottom-color: var(--gold);
}

.slide--final .email-arrow {
  opacity: 1;
  border-color: rgba(196, 162, 101, 0.35);
  color: var(--text);
}

.slide--final .email-done {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.slide--final .visual--floor {
  opacity: 0.08;
}

.closing {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: var(--text-dim); margin-top: 1.5rem; line-height: 1.55;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.signoff {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-top: 2.5rem;
}

/* Visuals */
.visual { position: absolute; pointer-events: none; color: var(--text); }

.visual--floor {
  bottom: 0; left: 0; right: 0; opacity: 0.28;
  mask-image: linear-gradient(to top, black 25%, transparent);
  -webkit-mask-image: linear-gradient(to top, black 25%, transparent);
}
.visual--floor img { width: 100%; }
.visual--fade { opacity: 0.12; }

.visual--ghost {
  display: flex; align-items: center; justify-content: center; opacity: 0.1;
}
.visual--corner {
  right: var(--pad); top: 50%; transform: translateY(-50%);
  width: min(42vw, 480px);
}
.visual--compass {
  position: relative; margin-top: 2rem; opacity: 0.22;
}
.visual--compass img { width: min(120px, 18vw); margin: 0 auto; }

.visual--arc {
  width: min(70vw, 500px); height: min(70vw, 500px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 1px solid rgba(196, 162, 101, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(196, 162, 101, 0.04);
}

/* Slide moods */
.slide--fame {
  background: radial-gradient(ellipse 50% 45% at 50% 50%, rgba(196, 162, 101, 0.05), transparent 70%);
}

.slide--pain {
  background: linear-gradient(160deg, var(--bg) 0%, #08080c 100%);
}

.slide--pain .statement--impact { color: var(--text); }

.slide--cta {
  background: radial-gradient(ellipse 45% 40% at 50% 55%, rgba(196, 162, 101, 0.08), transparent 65%);
}

.slide--brand, .slide--final { flex-direction: column; }

/* Anchored copy — consecutive centered slides share the same text origin */
.slide--vision,
.slide--invite {
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(6.5rem, 18vh, 10rem);
}

.slide--vision .frame,
.slide--invite .frame {
  width: 100%;
}

.slide--vision .visual--compass {
  position: absolute;
  left: 50%;
  bottom: clamp(3rem, 12vh, 6rem);
  transform: translateX(-50%);
  margin-top: 0;
}

.slide--solo .solo { text-align: center; }

.slide--vision { text-align: center; }

.slide--personal {
  background: radial-gradient(ellipse 40% 35% at 50% 50%, rgba(196, 162, 101, 0.04), transparent 70%);
}

/* Reveals */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--t-reveal), transform var(--t-reveal);
}
.slide.active .reveal { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }
.d4 { transition-delay: 0.46s; }

/* Responsive */
@media (max-width: 768px) {
  .frame--split { grid-template-columns: 1fr; text-align: center; }
  .split-art { order: -1; max-width: 240px; margin: 0 auto; }
  .slide--left {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .slide--left .frame {
    max-width: none;
    width: 100%;
    z-index: 2;
  }
  .slide--left .visual--corner {
    position: absolute;
    inset: 0;
    width: auto;
    max-width: none;
    right: auto;
    top: auto;
    margin: 0;
    transform: none;
    opacity: 0.06;
    z-index: 0;
  }
  .slide--left .visual--corner img {
    width: min(92vw, 380px);
    margin: 0 auto;
  }
  .slide--pain.slide--left .statement {
    font-size: clamp(2.15rem, 7.4vw, 2.9rem);
    line-height: 1.24;
  }
  .kicker::after { margin-left: auto; margin-right: auto; }
  .hint, .nav { display: none; }
  .mobile-next { display: inline-flex; }
  .slide--final { padding-top: clamp(3.75rem, 12vh, 5.5rem); }
  .joy-line { font-size: clamp(1.85rem, 8.5vw, 2.75rem); }
  .final-spacer { min-height: clamp(1.25rem, 4vh, 2rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .slide { transform: none !important; }
}

@media print {
  .slide { position: relative; opacity: 1 !important; visibility: visible !important; transform: none !important; page-break-after: always; height: 100vh; }
  .progress, .nav, .hint, .mobile-next { display: none; }
}
