/* ============================================================
   ZIGGY — illustrated scene layout, lime/black meme-coin build
   Bands stack like panels in a comic: dark scene → lime room →
   dark scene → cream. Everything is outlined and stamped.
   ============================================================ */

:root {
  --ink:      #101408;
  --ink-2:    #1b220e;
  --ink-3:    #262f14;

  --lime:     #cbff3c;
  --lime-2:   #a9e51f;
  --lime-3:   #b4ef4a;
  --lime-pale:#e2ff9c;

  --cream:    #f7f2dd;
  --cream-2:  #efe7c8;
  --sun:      #ffce3a;
  --rust:     #e2703a;

  --bd:  3px;
  --pop: 6px 6px 0 var(--ink);
  --pop-sm: 4px 4px 0 var(--ink);
  --pop-lime: 6px 6px 0 var(--lime-2);

  --r:  18px;
  --r-lg: 30px;

  --pad: clamp(18px, 5vw, 60px);
  --maxw: 1200px;

  --ui:   "Fredoka", system-ui, -apple-system, "Segoe UI", sans-serif;
  --disp: "Bagel Fat One", "Fredoka", system-ui, sans-serif;
  --mono: "Roboto Mono", ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
code, .mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
::selection { background: var(--lime); color: var(--ink); }

svg { width: 1em; height: 1em; fill: currentColor; }

/* ---------- fat display type ---------- */
.fat {
  --oc: var(--ink);          /* outline colour */
  --sc: rgba(169, 229, 31, .42); /* drop colour */
  font-family: var(--disp);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
  color: #fff;
  margin: 0;
  /* eight offsets fake a sticker outline, then one hard drop */
  text-shadow:
    -3px -3px 0 var(--oc),  3px -3px 0 var(--oc),
    -3px  3px 0 var(--oc),  3px  3px 0 var(--oc),
     0   -3px 0 var(--oc),  0    3px 0 var(--oc),
    -3px  0   0 var(--oc),  3px  0   0 var(--oc),
     9px  9px 0 var(--sc);
}
.fat--dark  { color: #22310c; --oc: #f4ffd8; --sc: rgba(34, 49, 12, .30); }
.fat--light { color: #fff; --oc: var(--ink); --sc: rgba(169, 229, 31, .42); }
.fat--lime  { color: var(--lime); --oc: var(--ink); --sc: rgba(16, 20, 8, .55); }
.center { text-align: center; }

.say { font-size: clamp(1rem, 1.9vw, 1.15rem); line-height: 1.6; }

/* ============================================================
   BUTTONS / PILLS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .72em 1.35em;
  font-family: var(--ui); font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  background: var(--lime); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: 999px;
  box-shadow: var(--pop-sm);
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
}
.btn:hover  { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); background: var(--lime-pale); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn--big { padding: .92em 1.8em; font-size: 1.05rem; }
.btn--sm  { padding: .55em 1.1em; font-size: .84rem; }
.btn--ghost { background: var(--cream); }

.circ {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px; font-size: 16px;
  background: var(--cream); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: 50%;
  box-shadow: var(--pop-sm); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
}
.circ:hover  { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--lime); }
.circ:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.circ--dark { background: var(--lime); }

.capsule {
  display: inline-flex; align-items: center; gap: 9px; max-width: 100%;
  padding: .55em 1em; cursor: pointer;
  background: rgba(247, 242, 221, .92); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: 999px;
  box-shadow: var(--pop-sm);
  font-family: var(--mono); font-size: .8rem; font-weight: 500;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
}
.capsule b { font-family: var(--disp); font-weight: 400; font-size: .95rem; letter-spacing: .02em; }
.capsule span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.capsule .ico { flex: none; font-size: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.capsule:hover  { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); background: var(--lime); }
.capsule:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.capsule--dark { background: var(--cream); }

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: .6em 1.15em;
  background: var(--ink-2); color: var(--lime);
  border: var(--bd) solid var(--lime); border-radius: 999px;
  font-weight: 600; font-size: .92rem;
  transition: transform .18s var(--ease), background .2s, color .2s;
}
.chip:hover { transform: translateY(-3px); background: var(--lime); color: var(--ink); }

.mini-copy {
  margin-top: 10px; padding: 0; background: none; border: 0; cursor: pointer;
  font-weight: 700; font-size: .86rem; color: var(--lime);
  border-bottom: 2px solid var(--lime);
}
.mini-copy:hover { color: #fff; border-color: #fff; }

/* ============================================================
   TOP BAR
   ============================================================ */
.bar {
  position: sticky; top: 0; z-index: 70;
  display: flex; align-items: center; gap: 18px;
  padding: 12px var(--pad);
  background: var(--cream);
  border-bottom: var(--bd) solid var(--ink);
}

.logo { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.logo__disc {
  width: 46px; height: 46px; flex: none; border-radius: 50%; overflow: hidden;
  border: var(--bd) solid var(--ink); background: var(--sun);
  box-shadow: var(--pop-sm);
}
.logo__disc img { width: 100%; height: 100%; object-fit: cover; }
.logo__word {
  font-family: var(--disp); font-size: 1.55rem; color: var(--ink);
  letter-spacing: .01em;
}
.logo--big .logo__disc { width: 62px; height: 62px; }
.logo--big .logo__word { font-size: 2.2rem; }

.bar__nav { display: flex; gap: 24px; }
.bar__nav a {
  color: var(--ink); font-weight: 600; font-size: .98rem;
  padding: 3px 0; border-bottom: 3px solid transparent;
  transition: border-color .2s, transform .2s var(--ease);
}
.bar__nav a:hover { border-color: var(--ink); transform: translateY(-2px); }

.bar__acts { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.burger { display: none; }

.menu {
  position: fixed; inset: 74px 0 0; z-index: 65;
  background: var(--cream); color: var(--ink);
  padding: 10px var(--pad) 34px;
  display: flex; flex-direction: column; overflow-y: auto;
  animation: menuIn .25s var(--ease);
}
.menu[hidden] { display: none; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-12px); } }
.menu a {
  font-family: var(--disp); font-size: 1.8rem; padding: 14px 0;
  border-bottom: 3px solid rgba(16, 20, 8, .12);
}
.menu__buy { margin-top: 24px; border-bottom: var(--bd) solid var(--ink); font-family: var(--ui); font-size: 1.05rem; }

/* ============================================================
   SCENES
   ============================================================ */
.scene { position: relative; }
.pad { width: 100%; max-width: var(--maxw); margin-inline: auto; padding: clamp(48px, 7vw, 96px) var(--pad); }
.pad--narrow { max-width: 800px; }

/* ---------- HERO ---------- */
.scene--hero {
  background:
    repeating-linear-gradient(90deg, rgba(203,255,60,.045) 0 14px, transparent 14px 40px),
    radial-gradient(120% 90% at 50% 30%, rgba(169,229,31,.20), transparent 64%),
    linear-gradient(180deg, #161b0a, var(--ink));
  border-bottom: var(--bd) solid var(--ink);
  padding: clamp(26px, 4vw, 52px) var(--pad) clamp(52px, 7vw, 88px);
  overflow: hidden;
}
.hero {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
}

.hero__type { margin: 0 0 22px; }
.hero__type .fat { display: block; font-size: clamp(3.8rem, 9vw, 7rem); }
.hero__type .fat--sub { font-size: clamp(1.25rem, 3vw, 2.3rem); margin-top: .1em; margin-left: .1em; }

.hero__say {
  margin: 0 0 28px; max-width: 30ch;
  font-size: clamp(1rem, 1.9vw, 1.2rem); font-weight: 500; color: rgba(247,242,221,.84);
}
.hero__row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero__row .capsule { max-width: min(100%, 330px); }

/* stage does not clip, so the badge can hang off the film */
.hero__stage { position: relative; }

.badge {
  position: absolute; z-index: 4; right: -20px; top: -24px;
  width: clamp(78px, 9vw, 112px); aspect-ratio: 1;
  display: grid; place-content: center; text-align: center;
  background: var(--sun); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: 50%;
  box-shadow: var(--pop);
  font-family: var(--disp); font-size: clamp(.76rem, 1.3vw, .96rem); line-height: 1.05;
  transform: rotate(-12deg);
  animation: wob 6s ease-in-out infinite;
}
.badge i { display: block; font-family: var(--ui); font-weight: 700; font-size: .52em; letter-spacing: .14em; margin-bottom: 3px; }
@keyframes wob { 50% { transform: rotate(-4deg) translateY(-8px); } }

/* ---------- GREEN ROOM ---------- */
.scene--room {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 12px, transparent 12px 34px),
    linear-gradient(180deg, var(--lime-3), #a6df2c);
  color: #1d2a0b;
  border-bottom: var(--bd) solid var(--ink);
  padding: clamp(56px, 8vw, 104px) var(--pad) clamp(48px, 7vw, 92px);
  overflow: hidden;
}
.scene--room::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 16px;
  background: radial-gradient(circle at 16px 0, transparent 15px, var(--ink) 16px) repeat-x;
  background-size: 32px 32px;
}
.scene--room-b { background: linear-gradient(180deg, #d8f77a, var(--lime-3)); }
.scene--room .pad > .fat { font-size: clamp(2.1rem, 6vw, 4.2rem); margin-bottom: clamp(18px, 3vw, 30px); }

.room {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px); align-items: center;
}
.room__copy p { max-width: 50ch; font-size: 1.02rem; font-weight: 500; }
.room__copy .fat { font-size: clamp(2.2rem, 5.6vw, 4rem); margin-bottom: 14px; }
.room__copy .capsule { margin-top: 8px; }
.room__socials { display: flex; gap: 10px; margin-top: 18px; }

/* room props */
.room__clock, .room__cat, .room__win { position: absolute; z-index: 1; pointer-events: none; }
.room__clock { top: 9%; right: 6%; width: clamp(52px, 7vw, 84px); color: rgba(34,49,12,.2); }
.room__clock svg { width: 100%; height: auto; fill: none; stroke: currentColor; stroke-width: 5; stroke-linecap: round; }
.room__cat { right: 5%; bottom: 6%; width: clamp(58px, 9vw, 120px); color: rgba(34,49,12,.17); }
.room__cat svg { width: 100%; height: auto; fill: currentColor; }
.room__win {
  top: 14%; left: 4%; width: clamp(64px, 9vw, 118px); aspect-ratio: 4/5;
  border-radius: 10px; background: rgba(255,255,255,.14);
  display: grid; place-content: center; gap: 12px; transform: rotate(-7deg);
}
.room__win i { display: block; width: clamp(34px, 5vw, 74px); height: 9px; background: rgba(255,255,255,.42); border-radius: 5px; }

/* framed picture */
.frame {
  margin: 0; position: relative;
  border: var(--bd) solid var(--ink); border-radius: var(--r);
  background: var(--cream); box-shadow: var(--pop);
  overflow: hidden;
}
.frame--tv { transform: rotate(-2deg); transition: transform .4s var(--ease); }
.frame--tv:hover { transform: rotate(0deg) scale(1.02); }
.frame--tv img { width: 100%; }
.frame figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--sun); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 3px 11px; font-family: var(--disp); font-size: .78rem; letter-spacing: .04em;
}

/* ---------- FILM ---------- */
.scene--film { background: var(--ink); border-bottom: var(--bd) solid var(--ink); }
.scene--film .say { max-width: 54ch; margin: 14px auto 0; color: rgba(247,242,221,.75); }
.scene--film .fat { font-size: clamp(2.1rem, 6vw, 4.2rem); }

.frame--film {
  margin: 0; border-color: var(--lime); box-shadow: 10px 10px 0 var(--lime-2);
  background: #000; cursor: pointer;
}
.player__video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.player__btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(64px, 9vw, 88px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--lime); color: var(--ink);
  border: var(--bd) solid var(--ink); box-shadow: var(--pop);
  font-size: clamp(26px, 3.4vw, 34px);
  transition: transform .2s var(--ease), opacity .3s;
}
.player__btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.player__btn .ico-pause { display: none; }
.frame--film.is-playing .player__btn { opacity: 0; }
.frame--film.is-playing:hover .player__btn { opacity: 1; }
.frame--film.is-playing .player__btn .ico-play { display: none; }
.frame--film.is-playing .player__btn .ico-pause { display: block; }
.player__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: rgba(0,0,0,.5); border-top: 2px solid var(--ink); }
.player__bar i { display: block; height: 100%; width: 0; background: var(--lime); }
.player__sound {
  position: absolute; right: 14px; bottom: 20px;
  background: var(--cream); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 12px; font-family: var(--disp); font-size: .72rem; letter-spacing: .04em; cursor: pointer;
}
.player__sound:hover { background: var(--lime); }

.links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* film strip slider */
.slider {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) clamp(40px, 6vw, 68px);
}
.slider__view { overflow: hidden; padding: 4px; margin: -4px; }
.slider__track {
  --gap: 14px;
  display: flex; align-items: stretch; gap: var(--gap);
  transition: transform .55s var(--ease);
  will-change: transform;
  cursor: grab;
}
.slider.is-drag .slider__track { transition: none; cursor: grabbing; }

.shot {
  margin: 0; position: relative;
  flex: 0 0 clamp(230px, 30vw, 340px);
  border: var(--bd) solid var(--lime); border-radius: var(--r); overflow: hidden;
  background: #000;
  transition: box-shadow .4s var(--ease), opacity .4s;
  opacity: .6;
}
.shot.is-on { opacity: 1; box-shadow: 5px 5px 0 rgba(169, 229, 31, .45); }
.shot img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
  transform: scale(1.05); transition: transform 6s linear;
  -webkit-user-drag: none; user-select: none;
}
.shot.is-on img { transform: scale(1); }          /* slow drift on the live slide */
.shot figcaption {
  position: absolute; left: 10px; bottom: 10px;
  background: var(--lime); color: var(--ink); border: 2px solid var(--ink);
  border-radius: 999px; padding: 3px 10px;
  font-family: var(--disp); font-size: .7rem; letter-spacing: .04em;
}

.slider__arm {
  position: absolute; top: calc(50% - clamp(20px, 3vw, 34px)); z-index: 3;
  display: grid; place-items: center;
  width: clamp(44px, 5vw, 56px); aspect-ratio: 1; font-size: clamp(18px, 2vw, 22px);
  background: var(--cream); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: 50%;
  box-shadow: var(--pop-sm); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
}
.slider__arm:hover  { background: var(--lime); transform: translateY(-2px); box-shadow: 6px 6px 0 var(--ink); }
.slider__arm:active { transform: translateY(2px); box-shadow: 1px 1px 0 var(--ink); }
.slider__arm--prev { left: calc(var(--pad) - clamp(20px, 2.4vw, 30px)); }
.slider__arm--next { right: calc(var(--pad) - clamp(20px, 2.4vw, 30px)); }

.slider__dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.slider__dots button {
  width: 13px; height: 13px; padding: 0; cursor: pointer;
  background: transparent; border: 3px solid var(--lime); border-radius: 50%;
  transition: background .25s, transform .25s var(--ease), width .3s var(--ease);
}
.slider__dots button:hover { background: rgba(203,255,60,.4); }
.slider__dots button[aria-selected="true"] { background: var(--lime); width: 34px; border-radius: 999px; }

/* shared card surface */
.card {
  background: var(--cream); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--pop);
}
/* ---------- THE POST ---------- */
.scene--room .say { color: rgba(34, 49, 12, .72); max-width: 46ch; margin: 14px auto 0; }
.tweet {
  margin: clamp(26px, 4vw, 40px) auto 0; max-width: 560px;
  background: var(--cream); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--pop);
  padding: 6px 14px; overflow: hidden;
}
/* the X widget replaces the blockquote once it loads; style the fallback too */
.tweet blockquote {
  margin: 14px 4px; font-size: .96rem; font-weight: 500; line-height: 1.55;
}
.tweet blockquote a { color: #2a6f00; font-weight: 600; text-decoration: underline; }
.tweet .twitter-tweet { margin-inline: auto !important; }

/* ---------- PAIR NOTE ---------- */
.pairnote {
  margin: 12px 0 0; font-size: .84rem; font-weight: 500;
  color: rgba(247, 242, 221, .62);
}
.pairnote b { color: var(--lime); font-weight: 700; }
.pairnote--dark { color: rgba(34, 49, 12, .68); }
.pairnote--dark b { color: #22310c; }

/* ---------- BUY ---------- */
.scene--buy { background: var(--ink); border-bottom: var(--bd) solid var(--ink); }
.scene--buy .fat { font-size: clamp(2.1rem, 6vw, 4.2rem); }

/* the facts a buyer wants before the steps */
.facts {
  list-style: none; margin: clamp(24px, 3.5vw, 38px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
}
.facts li {
  background: var(--cream); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--pop-sm);
  padding: 13px 16px; font-weight: 700; font-size: .98rem;
}
.facts b { display: block; font-family: var(--ui); font-size: .62rem; letter-spacing: .14em; opacity: .55; margin-bottom: 3px; }

.steps { list-style: none; margin: clamp(16px, 2.5vw, 24px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.step { padding: 22px 20px 24px; transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.step:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.step__n {
  display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px;
  background: var(--lime); border: var(--bd) solid var(--ink); border-radius: 50%;
  font-family: var(--disp); font-size: 1.15rem;
}
.step h3 { margin: 0 0 6px; font-family: var(--disp); font-weight: 400; font-size: 1.2rem; }
.step p { margin: 0; font-size: .92rem; font-weight: 500; color: rgba(16,20,8,.72); }
.step .mini-copy { color: #4e7a0a; border-color: #4e7a0a; }
.step .mini-copy:hover { color: var(--ink); border-color: var(--ink); }

.bigcta {
  margin-top: clamp(34px, 5vw, 56px); padding: clamp(28px, 5vw, 48px) var(--pad);
  background: var(--lime); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--pop);
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.bigcta__cat { width: clamp(120px, 17vw, 178px); height: auto; filter: drop-shadow(5px 6px 0 rgba(16, 20, 8, .22)); }
.bigcta .fat { font-size: clamp(2rem, 6.4vw, 4rem); color: var(--ink); text-shadow: 4px 4px 0 rgba(255,255,255,.55); }
.bigcta__row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.bigcta .btn--ghost { background: var(--cream); }

/* ---------- FOOTER ---------- */
.foot {
  background: var(--cream-2); color: var(--ink);
  padding: clamp(38px, 6vw, 66px) var(--pad) clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
  background-image: repeating-linear-gradient(90deg, rgba(16,20,8,.05) 0 2px, transparent 2px 26px);
}
.foot .logo { margin-right: 0; }
.foot .capsule { max-width: min(100%, 460px); }
.foot__socials { display: flex; gap: 10px; }
.foot__legal { margin: 12px 0 0; max-width: 70ch; font-size: .8rem; color: rgba(16,20,8,.6); }
.foot__cr { margin: 0; font-size: .72rem; color: rgba(16,20,8,.45); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 90;
  transform: translate(-50%, 24px); opacity: 0; pointer-events: none;
  background: var(--lime); color: var(--ink);
  border: var(--bd) solid var(--ink); border-radius: 999px;
  box-shadow: var(--pop);
  padding: .6em 1.3em; font-weight: 700;
  transition: opacity .25s, transform .35s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- REVEAL / FLOAT ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
[data-float] { animation: bob 6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-10px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .bar__nav { display: none; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .room { grid-template-columns: minmax(0, 1fr); }
  .room .frame--tv { max-width: 420px; margin-inline: auto; }
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero__stage { margin-top: 8px; }
  .hero__say { max-width: none; }
  .badge { right: -8px; top: -20px; }
}

@media (max-width: 760px) {
  .burger { display: grid; }
  .bar__buy { display: none; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__row { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__row .btn, .hero__row .capsule { width: 100%; max-width: 100%; justify-content: center; }
  .slider__arm { top: auto; bottom: -6px; }
  .slider__arm--prev { left: calc(50% - 68px); }
  .slider__arm--next { right: calc(50% - 68px); }
  .slider__dots { margin-top: 68px; }
  .logo__word { font-size: 1.3rem; }
  .logo__disc { width: 40px; height: 40px; }
}

@media (max-width: 420px) {
  .badge { width: 74px; font-size: .74rem; }
}

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