/* cookold — 1,111 personal brokers on robinhood chain
   The artwork is a sitcom frame, so the site is a channel: the hero broadcasts
   from a CRT set, the mint is the next thing on the schedule, sections are
   episodes, and the airdrop form goes out live. The one open question —
   "will you watch, or be watched?" — is delivered as a subtitle, which is the
   whole joke: the site is about watching.

   Palette sampled straight off the artwork: the beige wall, the dark floor,
   Robinhood lime, the couch yellow, the dress red. Display type is Archivo
   Black; Space Mono carries everything that pretends to be broadcast chrome.
*/

:root {
  --paper:    #e8dfc4;
  --paper-2:  #dfd2b3;
  --paper-3:  #d3c5a1;
  --ink:      #262220;
  --ink-2:    #3a332e;
  --lime:     #caed52;
  --lime-dk:  #9dc32f;
  --red:      #b5423a;
  --red-hot:  #e0473c;
  --yellow:   #eec84a;
  --muted:    #6f6653;

  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;

  --bw: 3px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
/* Components below set explicit display values (grid, inline-flex) which
   outrank the UA rule for [hidden]. Settle it once, globally. */
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  position: relative;
}

/* paper grain, the same trick the artwork uses */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: multiply;
  opacity: .75;
}

h1, h2, h3 {
  font-family: "Archivo Black", "Space Grotesk", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.04;
  text-wrap: balance;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

main, .topbar, .foot { position: relative; z-index: 1; }

/* The red dot that means "this is going out now". One rule, three placements:
   the channel bug, the schedule strip, the live episode. */
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-hot);
  display: inline-block;
  flex: none;
  animation: blink 1.6s steps(1, end) infinite;
}
@keyframes blink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: .25; } }

/* ==================== TOPBAR ==================== */
.topbar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 44px) 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark {
  width: 44px; height: 44px;
  border: var(--bw) solid var(--ink);
  border-radius: 11px;
  overflow: hidden;
  display: block;
  flex: none;
}
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-text {
  font-family: "Archivo Black", sans-serif;
  font-size: 25px;
  letter-spacing: -.04em;
}
/* the channel number, the way a broadcaster writes it */
.brand-chan {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 4px 8px;
  border-radius: 5px;
}
.topbar nav { display: flex; align-items: center; gap: 10px; }
.nav-link, .x-link {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  border: var(--bw) solid var(--ink);
  background: transparent;
  transition: background .12s ease, color .12s ease, transform .12s ease;
  white-space: nowrap;
}
.nav-link:hover { background: var(--lime); transform: translateY(-1px); }
.x-link { background: var(--ink); color: var(--paper); }
.x-link:hover { background: var(--lime); color: var(--ink); transform: translateY(-1px); }

/* ==================== BUTTONS ==================== */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: var(--bw) solid var(--ink);
  color: var(--ink);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-primary { background: var(--lime); box-shadow: 4px 4px 0 var(--ink); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* ==================== THE SET ==================== */
.broadcast {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 34px) clamp(18px, 4vw, 44px) clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}
.tv-wrap { min-width: 0; }
.tv {
  background: var(--ink);
  border: var(--bw) solid var(--ink);
  border-radius: 22px 22px 14px 14px;
  padding: 16px 16px 0;
  /* no offset shadow here: it lands at exactly the height of the legs below and
     reads as a lime smear between them. The set stands on its feet instead. */
}
.tv-screen {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  /* the inset glass edge — a CRT is never flush with its bezel */
  box-shadow: inset 0 0 0 2px rgba(232,223,196,.14), inset 0 0 44px rgba(0,0,0,.75);
}
.tv-img { display: block; width: 100%; height: auto; }
/* scanlines and a corner vignette, kept faint enough to read the art through */
.tv-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,.16) 0 1px,
      transparent 1px 3px
    ),
    radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(0,0,0,.45) 100%);
  mix-blend-mode: multiply;
  opacity: .85;
}
/* the channel bug: every broadcaster stamps the corner */
.tv-bug {
  position: absolute;
  top: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(38,34,32,.62);
  border: 1px solid rgba(232,223,196,.28);
  border-radius: 999px;
  padding: 5px 11px;
  backdrop-filter: blur(2px);
}

/* Subtitles. Used twice: under the broadcast, and to deliver the open question
   in the form — which is why it's its own component and not a one-off. */
.sub {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 28px);
  margin: 0;
  text-align: center;
}
.sub span {
  display: inline;
  font-family: var(--mono);
  font-size: clamp(11px, 1.35vw, 15px);
  line-height: 1.5;
  color: var(--yellow);
  background: rgba(0,0,0,.72);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 3px 9px;
  border-radius: 3px;
}

.tv-chin {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px 14px;
}
.tv-led {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  flex: none;
}
.tv-brand {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(232,223,196,.45);
}
.tv-knobs { margin-left: auto; display: flex; gap: 8px; }
.tv-knobs i {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(232,223,196,.2);
  border: 1px solid rgba(232,223,196,.3);
  display: block;
}
/* two stubby legs, so the set stands on the page instead of floating */
.tv-feet {
  display: flex;
  justify-content: space-between;
  padding: 0 14%;
  margin-top: -3px;
}
.tv-feet span {
  width: 46px; height: 14px;
  background: var(--ink);
  border-radius: 0 0 6px 6px;
  display: block;
}

.broadcast-text { min-width: 0; }
.broadcast-text h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  margin: 0 0 16px;
}
.broadcast-text h1 .hl {
  background: var(--lime);
  border: var(--bw) solid var(--ink);
  border-radius: 8px;
  padding: 0 12px 4px;
  display: inline-block;
  box-shadow: 5px 5px 0 var(--ink);
}
.lede {
  margin: 0 0 26px;
  max-width: 460px;
  color: var(--ink-2);
  font-size: clamp(15px, 1.6vw, 18px);
}
.lede strong { background: var(--lime); padding: 0 4px; border-radius: 4px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ==================== NEXT ON — the schedule strip ==================== */
.schedule {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(14px, 2.5vw, 26px) clamp(18px, 4vw, 44px);
}
.sched-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 0 4px 8px;
  color: var(--muted);
}
.sched-label { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; }
.sched-when { color: var(--muted); }
.sched-body {
  background: var(--ink);
  color: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3.4vw, 38px) clamp(20px, 3.4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  box-shadow: 8px 8px 0 var(--red);
}
.sched-title { min-width: 0; }
.sched-title h2 { font-size: clamp(30px, 4.4vw, 52px); margin: 6px 0 8px; color: var(--paper); }
.sched-title p { margin: 0; color: rgba(232,223,196,.6); font-size: 15px; }

/* the countdown as a broadcast clock: monospace, colon-separated, tabular */
.clock { display: flex; align-items: flex-start; gap: 4px; }
.clock-cell { display: grid; gap: 3px; justify-items: center; min-width: 52px; }
.clock-val {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}
.clock-key {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(232,223,196,.45);
}
.clock-sep {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  color: rgba(232,223,196,.3);
  padding-top: 2px;
}
.clock.is-over .clock-val { color: var(--red-hot); }

.btn-mint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  border: var(--bw) solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-mint:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
/* no link yet: it reads as a caption, not a dead button */
.btn-mint.is-waiting {
  background: transparent;
  color: var(--muted);
  border-color: var(--paper-3);
  border-style: dashed;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .06em;
}

/* ==================== CHANNEL INFO BAR ==================== */
.info-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(10px, 2vw, 18px) clamp(18px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
/* hairlines between cells, not boxes around them — this is an info strip */
.info {
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  border-left: 1px solid rgba(38,34,32,.18);
}
.info:first-child { border-left: 0; padding-left: 0; }
.info-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-val {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(17px, 2.1vw, 25px);
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
.info-val i { font-style: normal; font-size: .6em; }

/* ==================== EPISODES ==================== */
.ep {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(30px, 4.5vw, 58px) clamp(18px, 4vw, 44px);
}
.ep-head {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.ep-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.ep-num-live { color: var(--red); }
.ep-head h2 { font-size: clamp(27px, 3.8vw, 46px); margin: 0; max-width: 900px; }
.ep-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}
.ep-body-solo { grid-template-columns: minmax(0, 1fr); }
.ep-text p { margin: 0 0 20px; color: var(--ink-2); font-size: clamp(15px, 1.6vw, 18px); }
.ep-text p:last-child { margin-bottom: 0; }
.ep-text strong { background: var(--lime); padding: 0 4px; border-radius: 4px; }

/* an episode still, captioned the way a still is captioned */
.still { margin: 0; }
.still img {
  width: 100%;
  height: auto;
  display: block;
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-md);
}
.still figcaption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.cutout { width: 100%; height: auto; display: block; justify-self: center; max-width: 380px; }

/* Episode 02 sits on lime — the vault is the good news of the page. The padding
   is held in variables because the cut-out cancels it out with negative margins
   to stand on the section's own edges. */
.ep-vault {
  --vault-py: clamp(30px, 4.5vw, 58px);
  --vault-px: max(clamp(18px, 4vw, 44px), calc(50vw - var(--maxw) / 2 + clamp(18px, 4vw, 44px)));
  background: var(--lime);
  border-top: var(--bw) solid var(--ink);
  border-bottom: var(--bw) solid var(--ink);
  max-width: none;
  padding: var(--vault-py) var(--vault-px);
  overflow: hidden;
}
.ep-vault .ep-text strong { background: var(--paper); }
/* Text only — the cut-out that used to sit here was floating mid-block with
   nothing to stand on, so it went rather than getting propped up. The copy runs
   at a readable measure hard against the left edge. */
.ep-vault .ep-text { max-width: 720px; }
.ep-token .ep-body-solo .ep-text { max-width: 720px; }

/* ==================== EPISODE 04 — LIVE ==================== */
.wl-card {
  background: var(--ink);
  color: var(--paper);
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.6vw, 46px);
  box-shadow: 10px 10px 0 var(--red);
  position: relative;
}
.wl-intro { margin: 0 0 24px; color: rgba(232,223,196,.65); max-width: 620px; }

.wl-form { display: grid; gap: 20px; }
.wl-form[hidden] { display: none !important; }

/* honeypot — off-screen, never focusable */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.tasks { display: grid; gap: 10px; }
.task {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  background: rgba(232,223,196,.06);
  border: 2px solid rgba(232,223,196,.18);
  border-radius: var(--r-md);
  padding: 15px 18px;
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease;
}
.task:hover { background: rgba(232,223,196,.1); }
.task:has(input:checked) { border-color: var(--lime); background: rgba(202,237,82,.1); }
.task input[type="checkbox"] {
  appearance: none;
  width: 24px; height: 24px;
  border: 2px solid rgba(232,223,196,.4);
  border-radius: 7px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  transition: border-color .12s ease, background .12s ease;
}
.task input[type="checkbox"]::before {
  content: "";
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--ink);
  transform: scale(0);
  transition: transform .12s ease;
}
.task input[type="checkbox"]:checked { background: var(--lime); border-color: var(--lime); }
.task input[type="checkbox"]:checked::before { transform: scale(1); }
.task-num { font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--lime); }
.task-body { display: grid; gap: 2px; min-width: 0; }
.task-title { font-weight: 600; color: var(--paper); }
.task-sub { font-size: 13px; color: rgba(232,223,196,.55); }
.task-go {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  transition: background .12s ease;
}
.task-go:hover { background: var(--lime); }

.fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { position: relative; display: grid; gap: 6px; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(232,223,196,.6);
}
.field-prefix {
  position: absolute;
  left: 16px; top: 36px;
  color: rgba(232,223,196,.45);
  font-weight: 600;
  pointer-events: none;
}
.field input, .field textarea {
  font: inherit;
  width: 100%;
  min-width: 0;
  background: rgba(232,223,196,.07);
  border: 2px solid rgba(232,223,196,.22);
  border-radius: var(--r-sm);
  color: var(--paper);
  padding: 14px 16px;
  outline: none;
  transition: border-color .12s ease, background .12s ease;
}
.field:has(.field-prefix) input { padding-left: 34px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(232,223,196,.32); }
.field input:focus, .field textarea:focus { border-color: var(--lime); background: rgba(232,223,196,.11); }
.field textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.field-count {
  position: absolute;
  right: 12px; bottom: 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(232,223,196,.4);
  pointer-events: none;
}


.form-msg { margin: 0; font-size: 14px; min-height: 20px; color: rgba(232,223,196,.7); }
.form-msg.ok  { color: var(--lime); }
.form-msg.err { color: #ff9a8a; }

.btn-submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  border: var(--bw) solid var(--paper);
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--paper);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.btn-submit:hover:not(:disabled) { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--paper); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }
.btn-submit-arrow { transition: transform .12s ease; }
.btn-submit:hover:not(:disabled) .btn-submit-arrow { transform: translateX(4px); }

.wl-success { display: grid; gap: 16px; justify-items: start; }
.wl-success[hidden] { display: none !important; }
.wl-success h3 { font-size: clamp(24px, 3vw, 34px); margin: 0; color: var(--lime); }
.wl-success > p { margin: 0; color: rgba(232,223,196,.75); }
.success-card {
  width: 100%;
  border: 2px solid rgba(232,223,196,.25);
  border-radius: var(--r-md);
  overflow: hidden;
}
.success-card img { display: block; width: 100%; height: auto; }

/* ==================== SIGN-OFF ==================== */
.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px clamp(18px, 4vw, 44px) 48px;
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.foot-credit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
}
.foot a { color: var(--ink); text-decoration: none; font-weight: 700; }
.foot a:hover { text-decoration: underline; }

/* ==================== RESPONSIVE ====================
   Every grid collapses with minmax(0, 1fr) rather than 1fr: a bare 1fr refuses
   to shrink past its content and pushes the page wider than the phone. */
@media (max-width: 940px) {
  .broadcast { grid-template-columns: minmax(0, 1fr); }
  .tv-wrap { width: min(100%, 520px); margin: 0 auto; order: 2; }
  .broadcast-text { order: 1; }
  .ep-body { grid-template-columns: minmax(0, 1fr); }
  .cutout { max-width: 320px; }
  .sched-body { grid-template-columns: minmax(0, 1fr); }
  .clock { justify-content: flex-start; }
  /* four cells over two columns: the third starts a new row, so it loses the
     divider on its left and both bottom cells gain one on top */
  .info-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info:nth-child(3) { border-left: 0; padding-left: 0; }
  .info:nth-child(3), .info:nth-child(4) { border-top: 1px solid rgba(38,34,32,.18); }
}

@media (max-width: 620px) {
  .topbar { padding-top: 16px; }
  .brand-text { font-size: 21px; }
  .brand-chan { display: none; }
  .nav-link { display: none; }
  .x-link-verb { display: none; }
  .fields { grid-template-columns: minmax(0, 1fr); }
  .task { grid-template-columns: auto auto minmax(0, 1fr); }
  .task-go { grid-column: 1 / -1; justify-self: stretch; text-align: center; margin-top: 4px; }
  .tv { padding: 10px 10px 0; border-radius: 16px 16px 10px 10px; }
  .tv-feet { padding: 0 16%; }
  .tv-feet span { width: 34px; height: 11px; }
  .sched-body, .wl-card { box-shadow: 6px 6px 0 var(--red); }
  .clock-cell { min-width: 40px; }
}

@media (max-width: 400px) {
  .broadcast-text h1 { font-size: 36px; }
  .tv-knobs { display: none; }
  /* at this width the subtitle would cover a third of the screen */
  .tv-screen .sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .live-dot { animation: none; }
}
