/* ============================================================
   NEHA VS. NOVEMBER — neo-brutalist gym-poster chaos.
   Paper + ink + three loud accents. Hard shadows. No gradients,
   no glassmorphism, no mercy.
   ============================================================ */

:root {
  --paper: #F4EFE6;
  --ink: #111111;
  --red: #FF4D00;
  --acid: #C6F432;
  --blue: #3B5BFF;
  --yellow: #FFC700;
  --pink: #FF90E8;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --border: 3px solid var(--ink);
  --display: "Archivo Black", system-ui, sans-serif;
  --body: "Space Grotesk", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.8s ease;
}

button { font-family: inherit; cursor: pointer; }

.is-hidden { display: none !important; }

/* ============ screen shake ============ */
@keyframes shake {
  10%, 90% { transform: translate(-2px, 1px); }
  30%, 70% { transform: translate(3px, -2px); }
  50% { transform: translate(-3px, 2px); }
}
@keyframes shakeHard {
  10%, 90% { transform: translate(-6px, 3px) rotate(-0.5deg); }
  30%, 70% { transform: translate(7px, -4px) rotate(0.6deg); }
  50% { transform: translate(-8px, 5px) rotate(-0.7deg); }
}
body.is-shaking { animation: shake 0.5s ease both; }
body.is-shaking-hard { animation: shakeHard 0.65s ease both; }

/* ============ ticker ============ */
.ticker {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--acid);
  border-bottom: var(--border);
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 8px 0;
}
.ticker__track {
  display: inline-block;
  animation: tickerScroll 60s linear infinite;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ masthead ============ */
.masthead {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.masthead__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.masthead__vs {
  color: var(--red);
  -webkit-text-stroke: 2px var(--ink);
  font-size: 0.6em;
  vertical-align: middle;
}
.masthead__sub {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.05rem;
}
.sticker {
  font-family: var(--display);
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  text-align: center;
  line-height: 1.05;
  font-size: 1.1rem;
  transform: rotate(7deg);
  animation: stickerWobble 3s ease-in-out infinite;
  flex-shrink: 0;
  user-select: none;
}
@keyframes stickerWobble {
  0%, 100% { transform: rotate(7deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.06); }
}

/* ============ layout & panels ============ */
.layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}
.panel {
  background: #fff;
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
}
.panel--countdown, .panel--today { grid-column: 1 / -1; }
.panel__heading {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.panel__tag {
  display: inline-block;
  font-family: var(--display);
  background: var(--ink);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.95rem;
  margin-bottom: 18px;
  transform: rotate(-1.5deg);
}
.panel__note { font-size: 0.9rem; margin-bottom: 16px; opacity: 0.75; }

/* ============ countdown ============ */
.panel--countdown { text-align: center; transition: background-color 0.8s ease; }
.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(6px, 2vw, 20px);
  flex-wrap: wrap;
}
.countdown__unit { display: flex; flex-direction: column; align-items: center; }
.countdown__num {
  font-family: var(--display);
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 1;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  min-width: 1.6em;
  transition: background-color 0.6s ease, color 0.6s ease;
}
.countdown__label {
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-top: 10px;
  font-size: 0.8rem;
}
.countdown__sep {
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 4.5rem);
  transform: translateY(-8px);
}
.panic-meter { margin-top: 26px; }
.panic-meter__label {
  font-family: var(--display);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.panic-meter__bar {
  height: 22px;
  border: var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.panic-meter__fill {
  height: 100%;
  width: 0%;
  background: repeating-linear-gradient(
    -45deg, var(--red), var(--red) 12px, var(--ink) 12px, var(--ink) 24px);
  transition: width 1s ease;
}

/* --- escalation tiers --- */
@keyframes softPulse { 50% { transform: scale(1.012); } }
@keyframes urgentPulse { 50% { transform: scale(1.03); } }
@keyframes borderFlash { 50% { border-color: var(--red); box-shadow: 6px 6px 0 var(--red); } }
@keyframes strobe {
  0%, 100% { background: #fff; }
  25% { background: #FFD9C9; }
  50% { background: var(--red); }
  75% { background: #FFD9C9; }
}
@keyframes numAlarm { 50% { background: var(--red); } }

.tier-warning .panel--countdown { background: var(--yellow); }
.tier-warning .countdown { animation: softPulse 2.4s ease-in-out infinite; }

.tier-alarm .panel--countdown { background: var(--yellow); animation: borderFlash 2s infinite; }
.tier-alarm .countdown { animation: softPulse 1.6s ease-in-out infinite; }
.tier-alarm .countdown__num { animation: numAlarm 3s infinite; }

.tier-defcon { background: #F3D9CC; }
.tier-defcon .panel--countdown { background: var(--red); animation: urgentPulse 1.1s infinite; }
.tier-defcon .panel--countdown .countdown__label,
.tier-defcon .panel--countdown .panic-meter__label { color: #fff; }
.tier-defcon .countdown__num { animation: numAlarm 1.2s infinite; }
.tier-defcon .ticker { background: var(--red); color: #fff; }

.tier-meltdown { background: #E8B8A4; }
.tier-meltdown .panel--countdown { animation: strobe 1s steps(1) infinite, urgentPulse 0.8s infinite; }
.tier-meltdown .countdown__num { animation: numAlarm 0.6s infinite; }
.tier-meltdown .ticker { background: var(--red); color: #fff; }
.tier-meltdown .masthead__title { animation: shake 0.9s ease infinite; }

/* ============ today / logging ============ */
.today-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.today-status {
  font-family: var(--display);
  font-size: 0.95rem;
  padding: 8px 14px;
  border: var(--border);
  transform: rotate(1.2deg);
}
.today-status--pending { background: var(--yellow); animation: stickerWobble 2s infinite; }
.today-status--done { background: var(--acid); }
.today-status--rest { background: var(--pink); }
.today-status--cheat { background: var(--pink); }

.log-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.log-btn {
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.log-btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.log-btn:active { transform: translate(4px, 4px); box-shadow: 2px 2px 0 var(--ink); }
.log-btn--run { background: var(--acid); }
.log-btn--lift { background: var(--red); color: #fff; }
.log-btn--swim { background: var(--blue); color: #fff; }
.log-btn__emoji { font-size: 2.6rem; }
.log-btn__name { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.02em; }
.log-btn__quip { font-size: 0.8rem; font-weight: 500; opacity: 0.85; }
.log-btn.is-done::after {
  content: "✔ DONE";
  font-family: var(--display);
  background: var(--ink);
  color: var(--acid);
  padding: 3px 10px;
  font-size: 0.75rem;
  margin-top: 6px;
}

/* ============ skip zone (the runaway button) ============ */
.skip-zone { margin-top: 26px; border-top: 3px dashed var(--ink); padding-top: 18px; }
.skip-zone__label { font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; }
.skip-zone__arena {
  position: relative;
  height: 110px;
  border: 3px dashed var(--ink);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 18px,
      rgba(17, 17, 17, 0.05) 18px, rgba(17, 17, 17, 0.05) 36px);
  overflow: hidden;
  touch-action: manipulation;
}
.skip-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--pink);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-size: 0.9rem;
  padding: 12px 18px;
  transition: left 0.15s ease-out, top 0.15s ease-out;
  white-space: nowrap;
}
.skip-btn.is-dodging { animation: dodgePop 0.3s ease; }
@keyframes dodgePop { 40% { transform: scale(1.15) rotate(-4deg); } }
.skip-btn.is-surrendered {
  position: absolute;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  animation: none;
}

/* ============ the bank ============ */
.bank { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bank__card {
  border: var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--acid);
  padding: 18px;
  text-align: center;
  transition: background-color 0.4s ease;
}
.bank__card--empty { background: #ddd6c8; }
.bank__card--empty .bank__count { text-decoration: line-through; }
.bank__icon { font-size: 2rem; }
.bank__count { font-family: var(--display); font-size: 2.4rem; line-height: 1.1; }
.bank__label { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }
.bank__label small { font-weight: 500; text-transform: none; }
.bank__status {
  margin-top: 10px;
  display: inline-block;
  font-family: var(--display);
  font-size: 0.7rem;
  background: var(--ink);
  color: #fff;
  padding: 4px 10px;
  transform: rotate(-2deg);
}
.bank__fineprint { margin-top: 14px; font-size: 0.78rem; opacity: 0.7; }

/* ============ stats + calendar ============ */
.stats-row { display: flex; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.stat {
  flex: 1;
  min-width: 90px;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px;
  text-align: center;
  background: var(--paper);
}
.stat__num { font-family: var(--display); font-size: 2rem; display: block; }
.stat__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; }

.calendar { display: flex; flex-direction: column; gap: 14px; max-height: 300px; overflow-y: auto; padding-right: 6px; }
.cal-month__label { font-family: var(--display); font-size: 0.8rem; margin-bottom: 6px; }
.cal-month__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  display: block;
  min-width: 0;
  position: relative;
}
.cal-day--pad { border: none; }
.cal-day--clickable { cursor: pointer; }
.cal-day--clickable:hover,
.cal-day--clickable:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
  z-index: 1;
}
.cal-day__num {
  position: absolute;
  bottom: 1px;
  right: 2px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.55rem;
  line-height: 1;
  color: var(--ink);
  opacity: 0.8;
  pointer-events: none;
}
.cal-day__photo {
  position: absolute;
  top: 0;
  left: 1px;
  font-size: 0.6rem;
  line-height: 1;
  pointer-events: none;
}
.cal-day__strava {
  position: absolute;
  top: 0;
  right: 1px;
  font-size: 0.6rem;
  line-height: 1;
  pointer-events: none;
}
.cal-day--workout { background: var(--acid); }
.cal-day--rest { background: var(--pink); }
.cal-day--cheat { background: var(--yellow); }
.cal-day--missed {
  background: var(--red);
  background-image: linear-gradient(45deg, transparent 42%, var(--ink) 42%, var(--ink) 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--ink) 42%, var(--ink) 58%, transparent 58%);
}
.cal-day--future { background: #fff; opacity: 0.45; }
.cal-day--today-pending { background: var(--paper); animation: softPulse 1.5s infinite; }
.cal-day--today { outline: 3px solid var(--blue); outline-offset: 1px; opacity: 1; }
.calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 500;
}
.cal-key {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  vertical-align: middle;
  margin-right: 4px;
}
.cal-key--workout { background: var(--acid); }
.cal-key--rest { background: var(--pink); }
.cal-key--cheat { background: var(--yellow); }
.cal-key--missed { background: var(--red); }
.cal-key--future { background: #fff; }

/* ============ modals ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-backdrop.is-leaving { opacity: 0; transition: opacity 0.35s ease; }
.modal {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--red);
  max-width: 560px;
  width: 100%;
  padding: 34px 30px;
  text-align: center;
  animation: modalIn 0.45s cubic-bezier(0.2, 1.6, 0.4, 1);
  position: relative;
}
@keyframes modalIn {
  from { transform: scale(0.6) rotate(-3deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
.modal.is-refusing { animation: shakeHard 0.5s ease; }
.modal__stamp {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--yellow);
  border: var(--border);
  font-family: var(--display);
  font-size: 0.8rem;
  padding: 6px 14px;
  white-space: nowrap;
}
.modal__stamp--red { background: var(--red); color: #fff; }
.modal__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.modal__text { font-size: 1.08rem; font-weight: 500; line-height: 1.55; margin-bottom: 26px; }
.modal__accept {
  font-family: var(--display);
  font-size: 1.1rem;
  background: var(--red);
  color: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 16px 26px;
  width: 100%;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.modal__accept:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.modal__accept:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.modal__alt {
  margin-top: 14px;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  opacity: 0.75;
}
.neg-actions { display: flex; flex-direction: column; gap: 12px; }
.neg-btn {
  font-family: var(--display);
  font-size: 1rem;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  transition: transform 0.08s ease;
}
.neg-btn:hover { transform: translate(-2px, -2px); }
.neg-btn--rest { background: var(--pink); }
.neg-btn--cheat { background: var(--yellow); }
.neg-btn--workout { background: var(--acid); }

/* ============ day edit modal ============ */
.modal--dayedit { text-align: left; }
.modal--dayedit .modal__title { text-align: center; }
.dayedit-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.dayedit-type {
  font-family: var(--display);
  font-size: 0.85rem;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 12px 8px;
  background: #fff;
  transition: transform 0.08s ease;
}
.dayedit-type:hover { transform: translate(-2px, -2px); }
.dayedit-type.is-active[data-type="workout"] { background: var(--acid); }
.dayedit-type.is-active[data-type="rest"] { background: var(--pink); }
.dayedit-type.is-active[data-type="cheat"] { background: var(--yellow); }
.dayedit-type.is-active[data-type="missed"] { background: var(--red); color: #fff; }

.dayedit-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 0.9rem;
}
.dayedit-activities label { display: flex; align-items: center; gap: 6px; }

.dayedit-photo { margin-bottom: 18px; }
.dayedit-photo__preview {
  display: block;
  max-width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}
.dayedit-photo__remove {
  font-family: var(--display);
  font-size: 0.75rem;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 6px 12px;
}
.dayedit-error {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.dayedit-strava { margin-bottom: 18px; }
.dayedit-strava input {
  width: 100%;
  font-family: var(--body);
  font-size: 0.9rem;
  border: var(--border);
  padding: 10px 12px;
}
.dayedit-strava__view {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 8px;
}
.dayview-photo-link {
  display: block;
  margin-bottom: 16px;
  cursor: zoom-in;
}
.dayview-photo-link img { width: 100%; }
.dayedit-actions { display: flex; flex-direction: column; gap: 12px; }
.dayedit-delete {
  font-family: var(--display);
  font-size: 0.95rem;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  background: var(--red);
  color: #fff;
  transition: transform 0.08s ease;
}
.dayedit-delete:hover { transform: translate(-2px, -2px); }

/* ============ roast toast ============ */
.roast-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 380px;
  background: var(--ink);
  color: #fff;
  border: 3px solid var(--red);
  box-shadow: 8px 8px 0 var(--red);
  padding: 16px 18px;
}
.roast-toast.is-entering { animation: toastIn 0.6s cubic-bezier(0.2, 1.4, 0.4, 1), shakeHard 0.5s ease 0.6s; }
@keyframes toastIn {
  from { transform: translateX(120%) rotate(4deg); }
  to { transform: translateX(0) rotate(0); }
}
.roast-toast__head {
  font-family: var(--display);
  font-size: 0.75rem;
  color: var(--acid);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.roast-toast__body { font-weight: 500; font-size: 1rem; line-height: 1.45; }
.roast-toast__undo {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 0.75rem;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 14px;
}

.modal--proof .dayedit-photo__preview { margin-top: 4px; }
.modal--proof input[type="file"] { margin-bottom: 4px; }

/* ============ praise stamp ============ */
.praise-stamp {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 95;
  font-family: var(--display);
  font-size: clamp(3rem, 14vw, 8rem);
  color: var(--red);
  -webkit-text-stroke: 4px var(--ink);
  transform: translate(-50%, -50%) rotate(-8deg) scale(0);
  pointer-events: none;
}
.praise-stamp.is-stamping { animation: stampIn 1.4s cubic-bezier(0.2, 1.8, 0.3, 1) both; }
@keyframes stampIn {
  0% { transform: translate(-50%, -50%) rotate(-30deg) scale(3); opacity: 0; }
  35% { transform: translate(-50%, -50%) rotate(-8deg) scale(1); opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(-8deg) scale(1.05); opacity: 0; }
}

/* ============ lock screen ============ */
.lock-screen {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lock-screen.is-hidden { display: none; }
.lock-box {
  background: var(--paper);
  border: 4px solid var(--red);
  box-shadow: 10px 10px 0 var(--red);
  padding: 40px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.lock-box__cow { font-size: 4rem; margin-bottom: 10px; }
.lock-box__cow.is-mooing { animation: shakeHard 0.5s ease; }
.lock-box__title {
  font-family: var(--display);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.15;
}
.lock-box__sub { font-size: 0.9rem; margin-bottom: 22px; opacity: 0.8; }
.lock-box__input {
  width: 100%;
  font-family: var(--display);
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.3em;
  border: var(--border);
  padding: 14px;
  margin-bottom: 16px;
  background: #fff;
}
.lock-box__btn {
  width: 100%;
  font-family: var(--display);
  font-size: 1.1rem;
  background: var(--red);
  color: #fff;
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  transition: transform 0.08s ease;
}
.lock-box__btn:hover { transform: translate(-2px, -2px); }
.lock-box__error {
  margin-top: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============ confetti + footer ============ */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
}
.footer {
  text-align: center;
  padding: 30px 20px 40px;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* ============ responsive ============ */
@media (max-width: 760px) {
  .layout { grid-template-columns: 1fr; gap: 20px; }
  .masthead { flex-direction: column; }
  .sticker { align-self: flex-end; margin-top: -30px; }
  .roast-toast { left: 18px; right: 18px; max-width: none; }
  .skip-zone__arena { height: 140px; }
}

/* ============ accessibility ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker__track { animation: none; }
}
