/* =========================================================
   Beg to Differ ~ main stylesheet
   ---------------------------------------------------------
   Contents
     1. Design tokens
     2. Base & resets
     3. Typography & layout primitives
     4. Navigation
     5. Hero
     6. Ticker
     7. Dealer
     8. Teaser video
     9. Three moves
    10. Photo bands
    11. Why / supporting arguments
    12. The range
    13. Carousel
    14. Early voices
    15. FAQ
    16. Closing & footer
    17. Scroll reveal
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  --bg: #FFFDFB;
  --ink: #1A160F;
  --ink-soft: rgba(26, 22, 15, .58);
  --paper: #FFFFFF;
  --line: rgba(26, 22, 15, .1);
  --line-dark: rgba(247, 243, 234, .14);
  --soft-dark: rgba(247, 243, 234, .66);
  --bone: #F7F3EA;
  --putty: #CFC8B8;
  --stage: #E9E2DB;                 /* the cream of the box renders */
  --gold: #E9A23B;
  --pink: #EE74D3;
  --green: #2FB65A;
  --red: #E8472E;
  --blue: #7E90E8;
  --ks: #05CE78;                    /* Kickstarter green */
  --grad-genius: linear-gradient(180deg, #E2A143 0%, #EBAD54 30%, #EE86D6 68%, #E9A23B 100%);
  --grad-brand: linear-gradient(92deg, #bd8c50, #f2d440, #eb97f2);
}

/* ---------- 2. Base & resets ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Hanken Grotesk', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- 3. Typography & layout primitives ---------- */
.label {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.label.dashes { display: inline-flex; align-items: center; gap: 14px; }
.label.dashes::before,
.label.dashes::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.serif {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.08;
}
.serif i,
.serif em { font-style: italic; font-weight: 300; }

h2.serif { font-size: clamp(34px, 4.6vw, 58px); }

h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.25;
}

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 56ch;
}

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

section.section { padding: clamp(84px, 11vw, 140px) 0; }

.head {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(38px, 5vw, 64px);
  max-width: 780px;
}
.head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 22, 15, .22);
}

/* Visually hidden (labels & honeypot) */
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  width: 0;
}

/* ---------- 4. Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  color: var(--ink);
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 253, 251, .86);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}
.nav .mark {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-optical-sizing: none;
  font-variation-settings: "opsz" 48;
  letter-spacing: -.015em;
  text-decoration: none;
}
.nav .mark i { font-style: italic; font-weight: 300; }
.nav ul { display: flex; gap: 30px; list-style: none; }
.nav ul a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .7;
  transition: opacity .25s;
}
.nav ul a:hover { opacity: 1; }
.nav .cta {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  transition: transform .25s;
}
.nav .cta:hover { transform: translateY(-1px); }

@media (max-width: 760px) {
  .nav ul { display: none; }
}

/* ---------- 5. Hero ---------- */
.hero {
  padding: 130px 0 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #FBF8F4 42%, var(--stage) 100%);
}

/* The box render sits on the hero background; its own transparent margin does the
   spacing, and its bottom edge meets the ticker exactly. */
/* Render is cropped to its shadow edge; this margin sets the ~150px gap to the text above */
.hero-box { overflow: hidden; line-height: 0; margin-top: 136px; }
.hero-box img {
  width: min(98vw, 1320px);
  height: auto;
  margin: 0 auto;
  display: block;
}
@media (max-width: 760px) {
  .hero-box { margin-top: 36px; }
  .hero-box img {
    width: 170vw;
    max-width: none;
    /* wider than the viewport, so auto margins can't center it */
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

.ks-line { display: grid; justify-items: center; gap: 10px; }
/* Official Kickstarter logo, kept small per brand */
.ks-logo { width: 200px; height: auto; display: block; }

/* Rotating headline */
.h1-rotate { position: relative; margin: 26px auto 22px; max-width: 940px; }
.h1-rotate h1 {
  font-size: clamp(42px, 6.6vw, 84px);
  /* Match the exact cut of Fraunces used by section headers: at hero sizes the
     variable font's auto optical sizing switches to a different display cut,
     so we pin the optical size to the h2 range. */
  font-optical-sizing: none;
  font-variation-settings: "opsz" 48;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(3px);
  /* fade-OUT speed (fast, so lines never visibly stack) */
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.h1-rotate h1.on {
  opacity: 1;
  transform: none;
  filter: none;
  /* fade-IN speed (slow, the signature drift) */
  transition:
    opacity 1.6s cubic-bezier(.22, .61, .36, 1),
    transform 1.6s cubic-bezier(.22, .61, .36, 1),
    filter 1.6s ease;
}
/* Until JS measures and fixes the container height (and if JS never runs),
   the first line stays in normal flow so the hero keeps its natural height */
.h1-rotate:not(.js-sized) h1:first-child { position: relative; }

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Email capture */
.capture { max-width: 520px; margin: 0 auto; position: relative; }
.capture-form {
  display: flex;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 24px 60px -28px rgba(160, 110, 40, .35), 0 2px 6px rgba(26, 22, 15, .05);
  transition: border-color .3s;
}
.capture-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  color: var(--ink);
}
.capture-done {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  font-size: 16px;
  text-align: center;
}
.capture-done strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  margin-bottom: 4px;
}
.capture-micro { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }

/* ---------- 6. Ticker ---------- */
.ticker {
  overflow: hidden;
  background: #494538;
  color: #fff;
  padding: 20px 0;
  white-space: nowrap;
}
.ticker-track { display: inline-block; animation: mq 40s linear infinite; }
.ticker span {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 24px;
}
.ticker i {
  font-style: normal;
  background: var(--grad-genius);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- 7. Dealer ---------- */
.dealer { text-align: center; }
.dealer .head { margin-inline: auto; justify-items: center; }

.deal-cards {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  margin-bottom: 36px;
}

/* Card = static frame; .deal-inner does the 3D flip between two faces */
.deal-card {
  width: min(237px, 44vw);
  aspect-ratio: 2 / 3;
  position: relative;
}
.deal-card.dealing { animation: deal-lift 1.1s cubic-bezier(.3, .7, .3, 1); }
@keyframes deal-lift {
  0%   { transform: translateY(0); }
  35%  { transform: translateY(-16px) scale(1.02); }
  65%  { transform: translateY(-16px) scale(1.02); }
  100% { transform: none; }
}

.deal-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.deal-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 24px 50px -18px rgba(26, 22, 15, .25);
}

/* Front: the white motion card, styled like the printed decks */
.deal-front {
  background: var(--paper);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px 20px;
}
.deal-front .deck {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #898989;
}
.deal-front p {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(12.5px, 1.5vw, 16px);
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.8;
  color: var(--ink);
}
/* Corner triangles, as printed: Baseline points right in gold, Kicker points left in pink */
.deal-front::before,
.deal-front::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.deal-card.b .deal-front::before,
.deal-card.b .deal-front::after {
  right: 16px;
  border-width: 6.5px 0 6.5px 10px;
  border-color: transparent transparent transparent var(--gold);
}

.deal-card.k .deal-front::before,
.deal-card.k .deal-front::after {
  left: 16px;
  border-width: 6.5px 10px 6.5px 0;
  border-color: transparent var(--pink) transparent transparent;
}
.deal-front::before { top: 16px; }
.deal-front::after { bottom: 16px; }

/* Back: the printed deck backs */
.deal-back {
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
}
.deal-card.b .deal-back { background-image: url('../assets/baseline-back.webp'); }
.deal-card.k .deal-back { background-image: url('../assets/kicker-back.webp'); }

.deal-vs {
  align-self: center;
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink-soft);
}
.deal-note { font-size: 14px; color: var(--ink-soft); margin-top: 16px; }

/* ---------- 8. Teaser video ---------- */
.reel {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(84px, 10vw, 130px) 0;
}
.reel .label { color: var(--soft-dark); }
.reel .head { margin-bottom: clamp(28px, 4vw, 44px); }
.reel-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--soft-dark);
  max-width: 48ch;
}
.reel-video {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, .6);
  border: 1px solid var(--line-dark);
}
.reel-video video { width: 100%; display: block; }

/* ---------- 9. Three moves ---------- */
.moves {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) {
  .moves { grid-template-columns: 1fr; }
}
.move {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 34px;
  box-shadow: 0 20px 50px -30px rgba(150, 100, 40, .3);
}
.move .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 20px;
}
.move h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.move p { color: var(--ink-soft); font-size: 15.5px; }
.move p i { font-family: 'Fraunces', serif; color: var(--ink); }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 60px;
}
@media (max-width: 760px) {
  .duo { grid-template-columns: 1fr; }
}
.duo img {
  border-radius: 20px;
  box-shadow: 0 34px 80px -36px rgba(150, 100, 40, .5);
  width: 100%;
  height: clamp(260px, 30vw, 430px);
  object-fit: cover;
}

/* ---------- 10. Photo bands ---------- */
.band { position: relative; overflow: hidden; }
.band img {
  width: 100%;
  display: block;
  max-height: 78vh;
  object-fit: cover;
  will-change: transform;
}
.band-cap {
  position: absolute;
  left: 28px;
  bottom: 24px;
  background: rgba(26, 22, 15, .78);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ---------- 11. Why / supporting arguments ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-item {
  display: grid;
  gap: 12px;
  align-content: start;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 22, 15, .16);
}
.why-item h3 em {
  font-style: italic;
  background: linear-gradient(92deg, var(--red), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why-item p { color: var(--ink-soft); font-size: 16px; }

.args-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px) clamp(40px, 6vw, 90px);
}
@media (max-width: 820px) {
  .args-grid { grid-template-columns: 1fr; }
}
.arg { display: grid; gap: 10px; align-content: start; }
.arg h3 { font-size: 20px; }
.arg h3::before {
  content: "~";
  font-style: italic;
  color: var(--gold);
  margin-right: 10px;
}
.arg p { color: var(--ink-soft); font-size: 16px; }

/* ---------- 12. The range ---------- */
.range-photo { margin-bottom: clamp(34px, 5vw, 56px); }
.range-photo img {
  border-radius: 22px;
  box-shadow: 0 40px 90px -40px rgba(150, 100, 40, .55);
}

.ed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
@media (max-width: 820px) {
  .ed-grid { grid-template-columns: 1fr; }
}
.ed {
  display: grid;
  gap: 10px;
  align-content: start;
  text-align: center;
  justify-items: center;
}
.ed h3 { font-size: 24px; }
.ed h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 3px;
  margin: 10px auto 0;
}
.ed.family h3::after { background: linear-gradient(90deg, #2FB65A, #F2A0B8); }
.ed.party  h3::after { background: linear-gradient(90deg, #E9A23B, #EE86D6); }
.ed.genius h3::after { background: linear-gradient(90deg, #E8472E, #7E90E8); }
.ed .age {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ed p { color: var(--ink-soft); font-size: 16px; max-width: 34ch; }

/* ---------- 13. Carousel ---------- */
.caro {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--bone);
  border-block: 1px solid var(--line);
}
.caro-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}
.caro-btns { display: flex; gap: 10px; }
.caro-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--ink);
  transition: transform .2s, background .2s;
}
.caro-btn:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}
.caro-track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px max(calc((100vw - 1180px) / 2), 4vw) 24px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  scrollbar-width: none;
  cursor: grab;
}
.caro-track::-webkit-scrollbar { display: none; }
.caro-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.caro-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(150, 100, 40, .5);
}
/* Shared height, each image keeps its own aspect ratio */
.caro-slide img {
  height: min(400px, 54vw);
  width: auto;
  max-width: 82vw;
  object-fit: cover;
  display: block;
}

/* ---------- 14. Early voices ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .quotes { grid-template-columns: 1fr; }
}
.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 22px 54px -30px rgba(150, 100, 40, .35);
}
.quote p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.5;
  flex: 1;
  letter-spacing: -.01em;
}
.quote footer { font-size: 13px; color: var(--ink-soft); }
.quote footer b {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
}

/* ---------- 15. FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--ink);
  padding: 26px 44px 26px 0;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Hanken Grotesk';
  font-size: 26px;
  font-weight: 300;
  color: var(--ink-soft);
  transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--ink-soft);
}
.faq-a p { padding: 0 0 26px; max-width: 66ch; }
.faq-img {
  margin: 0 0 26px;
  border-radius: 14px;
  box-shadow: 0 20px 50px -28px rgba(150, 100, 40, .45);
  max-width: 520px;
}

/* ---------- 16. Closing & footer ---------- */
.closing {
  background: #131009;
  color: var(--bone);
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 15vw, 180px) 0;
  text-align: center;
}
.closing::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120vmin;
  height: 120vmin;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(238, 116, 211, .18), rgba(226, 161, 67, .12) 40%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
}
.closing .inner {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
}
.closing .label { color: var(--soft-dark); }
.closing h2 { font-size: clamp(38px, 5.4vw, 68px); }
.closing h2 em {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 0 .12em .06em 0;
  margin-right: -.04em;
}
.closing p.sub { color: var(--soft-dark); max-width: 52ch; }
.closing .capture-form {
  background: rgba(247, 243, 234, .06);
  border-color: var(--line-dark);
  box-shadow: none;
}
.closing .capture-form input { color: var(--bone); }
.closing .capture-form input::placeholder { color: rgba(247, 243, 234, .4); }
.closing .capture-form .btn { background: var(--bone); color: var(--ink); }
.closing .capture-done {
  background: rgba(247, 243, 234, .06);
  border-color: var(--line-dark);
  color: var(--bone);
}
.closing .capture-micro { color: rgba(247, 243, 234, .45); }

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg);
}
.footer-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer .socials {
  display: flex;
  gap: 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer .socials a { text-decoration: none; }

/* ---------- 17. Scroll reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- Mobile-only: hero eyebrow + ticker ----------
   Scoped to the main-site hero (.ks-line) and the ticker; desktop/tablet
   are untouched. Kicks in at the site's mobile breakpoint. */
@media (max-width: 760px) {
  /* Hero eyebrow: drop the flanking dashes, stack onto two centred lines
     (line 1 "A debate party game", line 2 "Launching soon on"), logo below. */
  .ks-line .label.dashes { gap: 0; }
  .ks-line .label.dashes::before,
  .ks-line .label.dashes::after { display: none; }
  .ks-line .ks-eyebrow-text { text-align: center; }
  .ks-line .ks-dot { display: block; height: 0; overflow: hidden; font-size: 0; }

  /* Ticker: ~25% smaller so it reads as a quiet band, not a headline. */
  .ticker { padding: 15px 0; }
  .ticker span { font-size: 11.25px; margin: 0 18px; }
}
