:root {
  color-scheme: light;

  --bg:        #f7f7f8;   /* the page */
  --bg-2:      #f0f0f2;   /* inputs, tiles, anything inset */
  --card:      #ffffff;
  --line:      #e9e9ed;
  --line-2:    #d7d7de;

  --ink:       #17171a;
  --ink-2:     #55555e;
  --ink-3:     #8e8e98;

  --accent:      #d9541c;
  --accent-2:    #ef6f31;
  --accent-in:   #ffffff;
  --accent-soft: #fff4ee;
  --accent-line: #f8cdb4;

  --ok:        #0f7a38;
  --ok-soft:   #eaf7ee;
  --bad:       #b02a30;
  --bad-soft:  #fdeeee;

  --t2:        #2f62c4;
  --t2-soft:   #eef3fd;
  --t2-line:   #cbdbf7;

  --r:   16px;
  --r-2: 11px;
  --r-3: 9px;

  /* light and flat — a hairline border does most of the work */
  --sh-1: 0 1px 2px rgba(17, 17, 26, .04);
  --sh-2: 0 1px 3px rgba(17, 17, 26, .05);
  --sh-3: 0 6px 20px -6px rgba(17, 17, 26, .18);

  --ease: cubic-bezier(.32,.72,.28,1);
  --topbar: 62px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--accent-in); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* ── app shell ────────────────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--topbar);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
@supports (backdrop-filter: blur(1px)) {
  .topbar {
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
  }
}
.tb-in {
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand .logo {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--accent-2), var(--accent));
  color: var(--accent-in);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
  box-shadow: var(--sh-1);
}
.brand b { display: block; font-size: 14.5px; font-weight: 650; letter-spacing: -.015em; line-height: 1.2; }
.brand small { display: block; font-size: 12.5px; color: var(--ink-3); }

.tb-right { display: flex; align-items: center; gap: 12px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 31px;
  padding: 0 13px;
  border-radius: 99px;
  background: var(--bg-2);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pill .led {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-3);
}
.pill.live { background: var(--accent-soft); color: var(--accent); }
.pill.live .led { background: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }

.shell { max-width: 1320px; margin: 0 auto; padding: 24px 28px 72px; }
.shell.narrow { max-width: 460px; padding-top: 8vh; }
.shell.mid { max-width: 1020px; }

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}
.col { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

/* ── cards ────────────────────────────────────────────────────────── */

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  padding: 22px 24px 24px;
}

.card > .hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 3px;
}

h1 { font-size: 28px; line-height: 1.15; letter-spacing: -.03em; margin: 0 0 6px; font-weight: 700; }
h2 { font-size: 16.5px; letter-spacing: -.02em; margin: 0; font-weight: 650; }
.sub { color: var(--ink-3); font-size: 13.5px; margin: 5px 0 18px; }
.sub:last-child { margin-bottom: 0; }

.step {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  margin-right: 9px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  vertical-align: 1px;
}

/* ── forms ────────────────────────────────────────────────────────── */

label.lbl {
  display: block;
  font-size: 12.5px;
  font-weight: 640;
  color: var(--ink-2);
  margin-bottom: 7px;
}

input[type=text], input[type=password], textarea {
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid transparent;
  border-radius: var(--r-2);
  transition: background .15s, border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder { color: var(--ink-3); }
input:focus, textarea:focus {
  outline: none;
  background: var(--card);
  border-color: var(--accent);
  box-shadow: 0 0 0 3.5px var(--accent-soft);
}
textarea { min-height: 118px; resize: vertical; line-height: 1.75; }

/* ── buttons ──────────────────────────────────────────────────────── */

button {
  font: inherit;
  font-weight: 640;
  letter-spacing: -.012em;
  border: 0;
  border-radius: var(--r-2);
  padding: 11px 18px;
  background: var(--accent);
  color: var(--accent-in);
  cursor: pointer;
  transition: filter .14s, transform .1s var(--ease), background .14s, border-color .14s, color .14s;
}
button:hover  { filter: brightness(1.07); }
button:active { transform: translateY(1px); }
button:disabled { background: var(--line-2); color: var(--ink-3); cursor: not-allowed; filter: none; transform: none; }

button.block { width: 100%; padding: 13px; font-size: 15.5px; }
button.ghost { background: var(--bg-2); color: var(--ink); }
button.ghost:hover { background: var(--line); filter: none; }
button.sm { padding: 8px 13px; font-size: 13px; border-radius: var(--r-3); }
button.link, button.del {
  background: none;
  color: var(--ink-3);
  padding: 5px 8px;
  font-size: 12.5px;
  font-weight: 540;
  border-radius: 7px;
}
button.link:hover { background: var(--bg-2); color: var(--accent); filter: none; }
button.del:hover  { background: var(--bad-soft); color: var(--bad); filter: none; }

.row { display: flex; gap: 10px; }
.row > button { flex: 1 1 auto; }

/* ── the option fields (admin, step 1) ────────────────────────────── */

/* the options read as one lined list, not a stack of loose boxes */
.fields {
  margin-top: 15px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-2);
  background: var(--card);
  overflow: hidden;
}

.field {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--line);
  transition: background .14s;
  animation: slidein .2s var(--ease);
}
.field:first-child { border-top: 0; }
.field:focus-within { background: var(--accent-soft); }

@keyframes slidein {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* the row number, in its own ruled gutter */
.field .num {
  width: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 12px;
  font-weight: 650;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  transition: background .14s, color .14s, border-color .14s;
}
.field:focus-within .num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-in);
}

.field input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 500;
}
.field input:focus {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.field .x {
  width: 40px;
  flex: none;
  padding: 0;
  background: none;
  color: var(--ink-3);
  font-size: 13px;
  border-radius: 0;
  opacity: 0;
  transition: opacity .14s, background .14s, color .14s;
}
.field:hover .x, .field:focus-within .x { opacity: 1; }
.field .x:hover { background: var(--bad-soft); color: var(--bad); filter: none; }

.addf {
  margin-top: 10px;
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 1.5px dashed var(--line-2);
  color: var(--ink-2);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.addf:hover {
  filter: none;
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.addf .plus {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--bg-2);
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background .14s, color .14s;
}
.addf:hover .plus { background: var(--accent); color: var(--accent-in); }

.hint { font-size: 12.5px; color: var(--ink-3); margin: 12px 0 0; }
.hint kbd {
  font: inherit;
  font-size: 11.5px;
  font-weight: 600;
  padding: 1.5px 6px;
  border-radius: 5px;
  background: var(--bg-2);
  border-bottom: 1.5px solid var(--line-2);
}

/* ── the big tap buttons the agents see ───────────────────────────── */

.picks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 14px;
}

.pick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 22px 18px;
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: var(--r);
  text-align: center;
  font: inherit;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .16s, background .16s, transform .13s var(--ease), box-shadow .16s;
}
.pick:hover  { border-color: var(--line-2); filter: none; transform: translateY(-3px); box-shadow: var(--sh-2); }
.pick:active { transform: translateY(0) scale(.98); }

.pick.on {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--sh-2);
}

.pick .nm {
  font-weight: 620;
  font-size: 16.5px;
  letter-spacing: -.015em;
  line-height: 1.35;
  word-break: break-word;
}
.pick.on .nm { color: var(--accent); }

.pick .tick {
  position: absolute;
  top: 12px; right: 12px;
  width: 23px; height: 23px;
  border-radius: 50%;
  border: 2px solid var(--line-2);
  background: var(--card);
  transition: background .16s, border-color .16s, transform .18s var(--ease);
}
.pick.on .tick {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
}
.pick.on .tick::after {
  content: "";
  position: absolute;
  left: 6.5px; top: 2.5px;
  width: 5px; height: 10px;
  border: solid var(--accent-in);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* once the order is in, the cards are frozen — the chosen one stays lit */
.picks.locked .pick { cursor: default; }

.pick:disabled {
  background: var(--card);
  color: var(--ink-3);
  border-color: var(--line);
  opacity: .5;
}
.pick:disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.pick.on:disabled {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--ink);
  opacity: 1;
}
.pick.on:disabled .nm { color: var(--accent); }

/* sticky send bar */
.bar {
  position: sticky;
  bottom: 0;
  z-index: 20;
  margin-top: 22px;
  padding: 16px 0 20px;
  background: linear-gradient(to top, var(--bg) 62%, transparent);
}
.bar button { width: 100%; padding: 16px; font-size: 16.5px; border-radius: 14px; box-shadow: var(--sh-3); }
.bar .cnt { font-weight: 500; opacity: .82; }

/* the second press is the one that counts, so it looks different */
.bar button.confirm {
  box-shadow: 0 0 0 4px var(--accent-soft), var(--sh-3);
}

.warn {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12.5px;
  font-weight: 560;
  color: var(--ink-3);
}

/* ── totals (admin) ───────────────────────────────────────────────── */

.total {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
}
.total .n.zero { opacity: .75; }
.total:last-child { border-bottom: 0; }
.total .nm { font-weight: 600; font-size: 15px; letter-spacing: -.015em; flex: 1; min-width: 0; word-break: break-word; }
.total .n {
  font-size: 26px;
  font-weight: 720;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  line-height: 1;
}
.total .n.zero { color: var(--ink-3); font-weight: 600; }
.total .track {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  background: var(--accent);
  opacity: .22;
  border-radius: 2px;
  transition: width .5s var(--ease);
}

.cooklist {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--bg-2);
  border-radius: var(--r-2);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cooklist span { flex: 1; min-width: 0; word-break: break-word; font-variant-numeric: tabular-nums; }

.prog {
  height: 6px;
  border-radius: 99px;
  background: var(--bg-2);
  overflow: hidden;
  margin: 12px 0 14px;
}
.prog i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width .55s var(--ease);
}

/* ── people list ──────────────────────────────────────────────────── */

.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 8px;
}

.person {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 9px 11px;
  border-radius: var(--r-2);
  background: var(--bg-2);
  border: 1px solid transparent;
  transition: background .14s, border-color .14s;
}
.person:hover { background: var(--card); border-color: var(--line-2); }

.person .dot {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--bg-2);
  color: var(--ink-3);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
}
.person:hover .dot { background: var(--bg-2); }
.person.done .dot { background: var(--accent-soft); color: var(--accent); }
.person .who { flex: 1; min-width: 0; }
.person .who b { display: block; font-weight: 600; font-size: 14.5px; letter-spacing: -.01em; }
/* the row actions float over the tile so they never steal width from the chips */
.person .acts {
  position: absolute;
  top: 50%; right: 7px;
  transform: translateY(-50%);
  display: flex;
  gap: 1px;
  padding-left: 34px;
  white-space: nowrap;
  border-radius: var(--r-2);
  background: linear-gradient(to right, transparent, var(--card) 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s;
}
.person:hover .acts, .person:focus-within .acts { opacity: 1; pointer-events: auto; }

.chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 3px; }
.chip {
  font-size: 12px;
  font-weight: 560;
  padding: 2px 9px;
  border-radius: 99px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  flex: none;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chip.wait {
  background: var(--bg-2);
  color: var(--ink-3);
  border-color: transparent;
  font-weight: 500;
}
.person:hover .chip.wait { background: var(--bg-2); }

/* ── misc ─────────────────────────────────────────────────────────── */

.note {
  padding: 11px 14px;
  border-radius: var(--r-2);
  font-size: 14px;
  font-weight: 520;
  margin-bottom: 14px;
  animation: slidein .25s var(--ease);
}
.note.ok  { background: var(--ok-soft);  color: var(--ok); }
.note.bad { background: var(--bad-soft); color: var(--bad); }

.empty { text-align: center; color: var(--ink-3); padding: 32px 12px; font-size: 14.5px; line-height: 1.6; }

.hide { display: none !important; }
.muted { color: var(--ink-3); font-weight: 400; font-size: 13px; }
.tiny { font-size: 12.5px; color: var(--ink-3); }

code.creds {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 12.5px;
  background: var(--bg-2);
  padding: 1.5px 6px;
  border-radius: 5px;
  color: var(--ink);
}

/* ── narrower screens ─────────────────────────────────────────────── */

@media (min-width: 1081px) {
  .col.stick {
    position: sticky;
    top: calc(var(--topbar) + 24px);
  }
}

@media (max-width: 1080px) {
  .grid { grid-template-columns: minmax(0, 1fr); }
  .people { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

@media (max-width: 720px) {
  .tb-in, .shell { padding-left: 16px; padding-right: 16px; }
  .shell { padding-bottom: 40px; }
  .card { padding: 18px 16px 20px; }
  h1 { font-size: 23px; }
  .picks { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .pick { min-height: 84px; padding: 18px 14px; }
  .field .x { opacity: 1; }
  .person .acts {
    position: static;
    transform: none;
    padding-left: 0;
    background: none;
    opacity: 1;
    pointer-events: auto;
  }
  .field .num { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* ── the two team windows ─────────────────────────────────────────── */

/* each window re-points the accent tokens, so everything inside
   (numbers, bars, chips, avatars) picks up its own colour for free */
.team.apertura {
  --accent:      var(--t2);
  --accent-2:    var(--t2);
  --accent-soft: var(--t2-soft);
  --accent-line: var(--t2-line);
  --accent-in:   #ffffff;
}

.team > .hd {
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.team .title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.team .swatch {
  width: 10px; height: 10px;
  flex: none;
  border-radius: 3px;
  background: var(--accent);
}
.team h2 {
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
}

.team .headline {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 2px 0 0;
}
.team .headline b {
  font-size: 30px;
  font-weight: 730;
  letter-spacing: -.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.team .headline span { font-size: 13.5px; color: var(--ink-3); }

.team .split {
  height: 1px;
  background: var(--line);
  margin: 20px 0 16px;
}

.team .sect {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 8px;
}

/* the agent list scrolls inside the window instead of stretching the page */
.team .roll {
  max-height: 430px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  margin-right: -4px;
}
.team .roll::-webkit-scrollbar { width: 9px; }
.team .roll::-webkit-scrollbar-track { background: transparent; }
.team .roll::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 99px;
  border: 3px solid var(--card);
}
.team .roll::-webkit-scrollbar-thumb:hover { background: var(--ink-3); }

.filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.filter input {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
}
.filter .seg {
  display: flex;
  flex: none;
  gap: 2px;
  padding: 2px;
  background: var(--bg-2);
  border-radius: var(--r-2);
}
.filter .seg button {
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 8px;
  background: none;
  color: var(--ink-3);
}
.filter .seg button:hover { filter: none; color: var(--ink); }
.filter .seg button.on {
  background: var(--card);
  color: var(--accent);
  box-shadow: var(--sh-1);
}

@media (max-width: 1080px) {
  .team .roll { max-height: 340px; }
}

/* the agent's own team, next to their name */
.teamtag {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 7px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: 1px;
}
.teamtag.apertura { background: var(--t2-soft); color: var(--t2); }
.brand.apertura .logo { background: linear-gradient(150deg, var(--t2-line), var(--t2)); }

/* ── the bread-complaints button ──────────────────────────────────── */

.joke {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 0;
  max-width: 420px;
  padding: 16px 26px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: var(--card);
  color: var(--accent);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.015em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--sh-2);
  transition: transform .16s var(--ease), box-shadow .16s, background .16s, color .16s;
  animation: nudge 2.6s var(--ease) infinite;
}
.joke:hover {
  background: var(--accent);
  color: var(--accent-in);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--sh-3);
  animation: none;
}
.joke:active { transform: translateY(0) scale(.99); }
.joke .arrow { transition: transform .16s var(--ease); }
.joke:hover .arrow { transform: translateX(5px); }

/* a small heartbeat so the eye goes to it */
@keyframes nudge {
  0%, 88%, 100% { transform: none;             box-shadow: var(--sh-2); }
  92%           { transform: translateY(-4px); box-shadow: var(--sh-3); }
  96%           { transform: translateY(-1px); box-shadow: var(--sh-2); }
}

/* ── ...and what it opens ─────────────────────────────────────────── */

.nope {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 24px;
  text-align: center;
}
.nope h1 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(32px, 7.5vw, 96px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  text-wrap: balance;
  color: var(--ink);
  animation: land .45s var(--ease) both;
}
@keyframes land {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: none; }
}
.nope .back {
  color: var(--ink-3);
  font-size: 15px;
  font-weight: 560;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background .14s, color .14s;
}
.nope .back:hover { background: var(--bg-2); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .joke { animation: none; }
}
