/* ===========================================================================
   Animal Hospital (Anomaly) - Reward Center

   Two deliberately different layouts rather than one stretched design:
     - phone   : single column, thumb-reachable dock, compact art
     - desktop : hero split with a screenshot gallery, and a two-column
                 funnel with a sticky reserved-slot card beside the form

   Palette sampled from the game's own icon and screenshots. Flat surfaces,
   soft radii, no icons, no glow.
   =========================================================================== */

/* Source Sans 3 is the open-source release of Source Sans Pro, the family
   Roblox renders in-game text with by default. Self-hosted, latin subset,
   two weights only - the browser maps 500 down to 400 and 600 up to 700. */
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/source-sans-3-700.woff2") format("woff2");
}

:root {
  --ink-900: #071119;
  --ink-800: #0c1a25;
  --ink-700: #112433;
  --ink-600: #17303f;
  --ink-500: #1f3d4e;

  --line: #1e3a4c;
  --line-soft: #16303f;

  --text: #eaf0f3;
  --muted: #94a8b4;
  --dim: #6a808e;

  --amber: #f2b26a;
  --amber-deep: #d8944a;
  --amber-ink: #2a1a08;
  --sage: #b7c8b0;
  --brick: #c2634a;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --font: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

/* One visible focus treatment for the whole page, keyboard only. */
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px; }
:focus:not(:focus-visible) { outline: none; }

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.with-dock { padding-bottom: 88px; }

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: var(--amber); }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 18px; }
.d-none { display: none !important; }

/* ---------------------------------------------------------------- header -- */
.masthead { background: var(--ink-800); border-bottom: 1px solid var(--line-soft); }
.masthead .wrap { display: flex; align-items: center; gap: 11px; height: 56px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand img { width: 34px; height: 34px; border-radius: 8px; flex: 0 0 34px; }
.brand-name { font-size: 14px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-sub { font-size: 11.5px; color: var(--dim); line-height: 1.3; }
.online { margin-left: auto; font-size: 12.5px; color: var(--sage); white-space: nowrap; }
.online b { font-weight: 600; }
/* The full wording is desktop-only; a phone header has no room for it. */
.online-long { display: none; }

/* ------------------------------------------------------- stepper + urgency -- */
.topbar { position: sticky; top: 0; z-index: 30; background: var(--ink-800); border-bottom: 1px solid var(--line-soft); }
.topbar-inner { display: block; padding-top: 9px; padding-bottom: 9px; }

.stepper ol { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.stepper li { flex: 1; display: flex; align-items: center; gap: 8px; min-width: 0; }
.stepper .mark {
  width: 24px; height: 24px; flex: 0 0 24px;
  display: grid; place-items: center; border-radius: 7px;
  background: var(--ink-600); color: var(--dim);
  font-size: 12.5px; font-weight: 600;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.stepper .label {
  font-size: 12.5px; color: var(--dim); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color .2s var(--ease);
}
.stepper li.is-active .mark { background: var(--amber); color: var(--amber-ink); }
.stepper li.is-active .label { color: var(--text); }
.stepper li.is-done .mark { background: var(--ink-600); color: var(--amber); box-shadow: inset 0 0 0 1px var(--amber-deep); }
.stepper li.is-done .label { color: var(--muted); }
.stepper li.is-done { cursor: pointer; }
.stepper li.is-done:hover .label { color: var(--text); }

.urgency {
  display: flex; align-items: center; gap: 10px; margin-top: 9px;
  padding-top: 9px; border-top: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--muted);
}
.urgency b { color: var(--amber); font-weight: 600; font-variant-numeric: tabular-nums; }
.urgency-clock { white-space: nowrap; }
.urgency-slots { margin-left: auto; white-space: nowrap; color: var(--dim); }
.urgency-slots b { color: var(--brick); }

/* ------------------------------------------------------------------ hero -- */
.hero { position: relative; }
.hero-art { position: relative; height: 138px; overflow: hidden; background: var(--ink-800); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 25, .3), var(--ink-900) 94%);
}
.hero-body { position: relative; margin-top: -38px; padding-bottom: 20px; }
.hero-gallery { display: none; }

.tag {
  display: inline-block; font-size: 11.5px; font-weight: 600;
  letter-spacing: .04em; color: var(--amber);
  background: rgba(242, 178, 106, .09);
  padding: 5px 11px; border-radius: 999px;
}
.hero h1 {
  margin: 13px 0 10px;
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.14; font-weight: 700; letter-spacing: -.022em;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero .lede { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; line-height: 1.62; }

/* ----------------------------------------------------------------- views -- */
.view { padding: 24px 0 10px; }
.view[hidden] { display: none; }

.view-head { margin-bottom: 18px; }
.view-head h2 { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -.018em; line-height: 1.28; }
.view-head p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.58; }

.back {
  display: inline-block; margin-bottom: 15px; padding: 0;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  transition: color .18s var(--ease);
}
.back::before { content: "\2190"; margin-right: 7px; }
.back:hover { color: var(--text); }

/* --------------------------------------------------------------- rewards -- */
.rewards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.reward {
  display: flex; flex-direction: column; text-align: left;
  background: var(--ink-700); border-radius: 14px; padding: 11px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: box-shadow .2s var(--ease), background .2s var(--ease), transform .12s var(--ease);
}
.reward:hover { background: var(--ink-600); }
.reward:active { transform: scale(.988); }
.reward.is-selected { box-shadow: inset 0 0 0 2px var(--amber); background: var(--ink-600); }

.reward .art {
  position: relative; height: 116px; background: var(--ink-800);
  border-radius: 10px; display: grid; place-items: center;
  margin-bottom: 11px; overflow: hidden;
}
.reward .art img { max-height: 102px; width: auto; object-fit: contain; }

.tier {
  position: absolute; top: 7px; left: 7px;
  font-size: 10px; font-weight: 600; letter-spacing: .05em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--ink-900); color: var(--muted);
}
.tier.top { color: var(--amber); }
.tier.mid { color: var(--sage); }

.flag {
  position: absolute; top: 7px; right: 7px;
  font-size: 10px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--brick); color: #fff;
}

/* Value stacking: the shop price sits on the art as a badge instead of being
   buried in the description, so the trade is legible before any reading. */
.value {
  position: absolute; left: 7px; right: 7px; bottom: 7px;
  display: flex; align-items: baseline; gap: 6px;
  padding: 5px 9px; border-radius: 8px;
  background: rgba(7, 17, 25, .86);
  font-size: 11px; color: var(--dim);
}
.value b { font-size: 13px; font-weight: 700; color: var(--amber); margin-left: auto; }

.reward h3 { margin: 0 0 4px; font-size: 14.5px; font-weight: 600; line-height: 1.32; }
.reward .worth { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 11px; }

.gauge { height: 4px; background: var(--ink-500); border-radius: 999px; overflow: hidden; margin-bottom: 6px; }
.gauge i { display: block; height: 100%; background: var(--sage); border-radius: 999px; }
.gauge.tight i { background: var(--brick); }
.left { font-size: 11px; color: var(--dim); margin-bottom: 11px; line-height: 1.4; }
.left b { color: var(--text); font-weight: 600; }

.pick {
  margin-top: auto; width: 100%; text-align: center;
  background: var(--ink-500); color: var(--text);
  font-size: 13px; font-weight: 600; padding: 10px; border-radius: 9px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.reward.is-selected .pick { background: var(--amber); color: var(--amber-ink); }

/* --------------------------------------------------------------- prompts -- */
/* Second call to action under the grid, for the visitor who read every card
   and still did not commit. */
.prompt {
  margin-top: 22px; background: var(--ink-700); border-radius: 14px;
  padding: 18px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}
.prompt b { display: block; font-size: 15.5px; font-weight: 600; line-height: 1.4; }
.prompt b span { color: var(--brick); }
.prompt > div > span { display: block; color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-top: 5px; }

/* ---------------------------------------------------------- split layout -- */
/* One column on a phone, a sticky summary beside the form on a desktop. */
.split { display: block; }
.split-aside { margin-bottom: 16px; }

.pickcard {
  display: flex; align-items: center; gap: 13px;
  background: var(--ink-700); border-radius: 14px; padding: 12px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
}
.pickcard-art {
  width: 62px; height: 62px; flex: 0 0 62px; background: var(--ink-800);
  border-radius: 10px; display: grid; place-items: center; overflow: hidden;
}
.pickcard-art img { max-height: 54px; width: auto; object-fit: contain; }
.pickcard-body { min-width: 0; }
.pickcard-body small { display: block; font-size: 11px; color: var(--dim); line-height: 1.4; }
.pickcard-body b { display: block; font-size: 15.5px; font-weight: 600; line-height: 1.32; }
.pickcard-body > span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.swap {
  padding: 0; margin-top: 5px; font-size: 12.5px; font-weight: 500;
  color: var(--amber); transition: color .18s var(--ease);
}
.swap:hover { color: var(--text); }

.held { margin: 10px 0 0; font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.held b { color: var(--amber); font-variant-numeric: tabular-nums; }

/* ----------------------------------------------------------------- panel -- */
.panel { background: var(--ink-700); border-radius: 14px; padding: 18px; box-shadow: inset 0 0 0 1px var(--line-soft); }

.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.field .box {
  display: flex; align-items: stretch; border-radius: 11px; background: var(--ink-800);
  box-shadow: inset 0 0 0 1px var(--line); overflow: hidden;
  transition: box-shadow .2s var(--ease);
}
.field .box:focus-within { box-shadow: inset 0 0 0 2px var(--amber); }
.field .box.is-bad { box-shadow: inset 0 0 0 2px var(--brick); }
.field .prefix { display: grid; place-items: center; width: 40px; flex: 0 0 40px; color: var(--dim); font-size: 16px; }
.field input {
  flex: 1; min-width: 0; background: none; border: 0; outline: none;
  color: var(--text); font-size: 16.5px; font-weight: 500; padding: 15px 14px 15px 0;
}
.field input::placeholder { color: var(--dim); font-weight: 400; }

/* Chrome paints autofilled inputs with its own near-white background through a
   UA rule that `background` cannot override - which is why the field turned
   white a moment after load. An inset shadow repaints over it, and the absurd
   transition delay keeps Chrome's own fade from ever landing. */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: inset 0 0 0 100px var(--ink-800);
  box-shadow: inset 0 0 0 100px var(--ink-800);
  transition: background-color 600000s 0s, color 600000s 0s;
  caret-color: var(--text);
}
.field input:autofill {
  -webkit-text-fill-color: var(--text);
  box-shadow: inset 0 0 0 100px var(--ink-800);
}
.hint { font-size: 12.5px; color: var(--dim); margin: 9px 0 0; line-height: 1.55; }
.bad { display: none; font-size: 13px; color: var(--brick); margin-top: 9px; }
.bad.is-on { display: block; }

/* -------------------------------------------------------- avatar preview -- */
.identity {
  display: none; align-items: center; gap: 13px; margin-top: 14px;
  background: var(--ink-800); border-radius: 11px; padding: 12px;
}
.identity.is-on { display: flex; }
.identity .face { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 10px; background: var(--ink-600); overflow: hidden; }
.identity .face img { width: 100%; height: 100%; object-fit: cover; }
.identity .face.loading { display: grid; place-items: center; }
.identity .face.loading::after {
  content: ""; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--ink-500); border-top-color: var(--amber);
  animation: spin .85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.identity .who { min-width: 0; }
.identity .who b { display: block; font-size: 15px; font-weight: 600; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.identity .who span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.identity .who .state { font-size: 12.5px; font-weight: 600; color: var(--sage); margin-top: 3px; }
.identity[data-status="loading"] .who .state { color: var(--muted); font-weight: 500; }
.identity[data-status="error"] .who .state { color: var(--brick); }

/* --------------------------------------------------------------- buttons -- */
.cta {
  display: block; width: 100%; margin-top: 18px; padding: 16px 22px;
  background: var(--amber); color: var(--amber-ink);
  border-radius: 11px; font-size: 16px; font-weight: 600;
  letter-spacing: -.005em; text-align: center; text-decoration: none;
  transition: background .2s var(--ease), transform .12s var(--ease), color .2s var(--ease);
}
.cta:hover { background: var(--amber-deep); }
.cta:active { transform: scale(.99); }
.cta[disabled] { background: var(--ink-600); color: var(--dim); cursor: not-allowed; transform: none; }
.cta-note { margin: 10px 0 0; font-size: 12.5px; color: var(--dim); text-align: center; line-height: 1.55; }

/* -------------------------------------------------------------- delivery -- */
.log {
  background: var(--ink-800); border-radius: 11px; padding: 14px 15px;
  font-family: var(--mono); font-size: 12.5px; line-height: 2.05; color: var(--dim);
  min-height: 150px;
}
.log .row { transition: color .3s var(--ease), opacity .3s var(--ease); opacity: .35; }
.log .row.on { opacity: 1; }
.log .row.ok { color: var(--sage); }
.log .row::before { content: "> "; }

.meter { height: 6px; background: var(--ink-500); border-radius: 999px; overflow: hidden; margin: 14px 0 8px; }
.meter i { display: block; height: 100%; width: 0; background: var(--amber); border-radius: 999px; transition: width .45s var(--ease); }
.meter-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--dim); }

.slip { margin-top: 18px; background: var(--ink-800); border-radius: 11px; padding: 4px 14px; }
.slip .row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 13.5px; }
.slip .row:last-child { border-bottom: 0; }
.slip .row span { color: var(--muted); }
.slip .row b { text-align: right; font-weight: 600; }
.slip .row b.good { color: var(--sage); }

.gate {
  margin-top: 15px; padding: 14px 16px; background: var(--ink-800);
  border-radius: 11px; font-size: 13.5px; color: var(--muted); line-height: 1.62;
}
.gate b { color: var(--text); font-weight: 600; }

/* ------------------------------------------------------------------ feed -- */
.feed { margin-top: 20px; }
.feed h3 { margin: 0 0 8px; font-size: 12px; font-weight: 600; color: var(--dim); letter-spacing: .04em; }
.feed ul { list-style: none; margin: 0; padding: 0; }
.feed li { display: flex; gap: 10px; padding: 6px 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.feed li b { color: var(--text); font-weight: 600; }
.feed li time { margin-left: auto; font-size: 11.5px; color: var(--dim); white-space: nowrap; }

/* ------------------------------------------------------------------- faq -- */
.faq { display: grid; gap: 9px; margin-top: 26px; }
.faq details { background: var(--ink-700); border-radius: 11px; padding: 14px 16px; box-shadow: inset 0 0 0 1px var(--line-soft); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 14.5px; line-height: 1.45;
  list-style: none; display: flex; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; margin-left: auto; flex: 0 0 auto;
  width: 7px; height: 7px; border-right: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber); transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq p { margin: 10px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.62; }

/* ---------------------------------------------------------------- footer -- */
footer { margin-top: 32px; padding: 22px 0 26px; background: var(--ink-800); }
footer p { margin: 0 0 9px; font-size: 11.5px; color: var(--dim); line-height: 1.65; }
footer .legal { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }
footer .legal a { font-size: 11.5px; color: var(--muted); text-decoration: none; }

/* ==========================================================================
   PHONE ONLY - the thumb dock. Hidden from 900px up, where the sticky
   summary column takes over the same job.
   ========================================================================== */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--ink-800); border-top: 1px solid var(--line-soft);
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform .26s var(--ease);
}
.dock.is-on { transform: none; }
.dock-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.dock .info { min-width: 0; flex: 1; }
.dock .info b { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock .info small { display: block; font-size: 11.5px; color: var(--dim); line-height: 1.35; }
.dock .info small b { display: inline; color: var(--amber); font-variant-numeric: tabular-nums; }
.dock .cta { width: auto; margin: 0; flex: 0 0 auto; padding: 13px 20px; font-size: 14.5px; }

/* Small phones: keep two reward columns but tighten everything. */
@media (max-width: 359px) {
  .rewards { gap: 8px; }
  .reward { padding: 9px; border-radius: 12px; }
  .reward .art { height: 96px; }
  .reward .art img { max-height: 84px; }
  .reward h3 { font-size: 13.5px; }
  .dock .cta { padding: 13px 15px; font-size: 13.5px; }
}

/* ==========================================================================
   TABLET
   ========================================================================== */
@media (min-width: 620px) {
  .rewards { grid-template-columns: repeat(3, 1fr); gap: 13px; }
  .hero-art { height: 190px; }
  .hero-body { margin-top: -50px; }
  .prompt { flex-direction: row; align-items: center; padding: 20px 22px; }
  .prompt .cta { margin: 0; width: auto; flex: 0 0 auto; display: inline-block; }
  /* Scoped to hero and panel so the dock button keeps its own sizing. */
  .hero .cta, .panel .cta { display: inline-block; width: auto; min-width: 280px; }
  .cta-note { text-align: left; }
}

/* ==========================================================================
   DESKTOP - a different layout, not a wider phone.
   Hero becomes copy + screenshot gallery; the funnel becomes a sticky
   reserved-slot column beside the form; the dock disappears.
   ========================================================================== */
@media (min-width: 900px) {
  body.with-dock { padding-bottom: 0; }
  .dock { display: none; }

  .wrap { padding: 0 28px; }
  .masthead .wrap { height: 62px; }
  .online-long { display: inline; }

  .topbar-inner { display: flex; align-items: center; gap: 24px; }
  .stepper { flex: 1 1 auto; min-width: 0; }
  .stepper ol { gap: 18px; }
  .stepper li { flex: 0 0 auto; }
  .stepper .label { font-size: 13.5px; }
  .urgency {
    margin-top: 0; padding-top: 0; border-top: 0;
    flex: 0 0 auto; gap: 18px; font-size: 13px;
  }
  .urgency-slots { margin-left: 0; }

  .hero-art { height: 300px; }
  .hero-body {
    margin-top: -190px; padding-bottom: 40px;
    display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; align-items: center;
  }
  .hero h1 { font-size: 44px; margin: 15px 0 12px; }
  .hero .lede { font-size: 17px; max-width: 560px; margin-bottom: 22px; }

  .hero-gallery { display: grid; gap: 10px; }
  .hero-gallery img {
    /* height:auto is required: the width/height attributes on the tag are
       specified values, and aspect-ratio is ignored unless height is auto. */
    width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
    border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line-soft);
  }

  .view { padding: 44px 0 14px; }
  .view-head h2 { font-size: 28px; }
  .view-head p { font-size: 15.5px; }

  .rewards { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .reward { padding: 13px; border-radius: 16px; }
  .reward .art { height: 158px; }
  .reward .art img { max-height: 142px; }
  .reward h3 { font-size: 15.5px; }
  .reward .worth { font-size: 12.5px; }
  .reward .pick { padding: 11px; font-size: 13.5px; }

  .split { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 32px; align-items: start; }
  .split-aside { margin-bottom: 0; position: sticky; top: 118px; }

  /* On desktop the reserved-slot card goes vertical and shows the art big:
     it is the thing that keeps the visitor committed while they type. */
  .pickcard { display: block; padding: 16px; border-radius: 16px; }
  .pickcard-art { width: 100%; height: 210px; flex: none; margin-bottom: 14px; border-radius: 12px; }
  .pickcard-art img { max-height: 190px; }
  .pickcard-body small { font-size: 11.5px; }
  .pickcard-body b { font-size: 18px; margin-top: 2px; }
  .pickcard-body > span { font-size: 13.5px; }
  .swap { margin-top: 10px; font-size: 13px; }
  .held { font-size: 13px; }

  .panel { padding: 28px; }
  .cta { display: inline-block; width: auto; min-width: 280px; }
  .log { font-size: 13.5px; min-height: 170px; }
  .feed { margin-top: 26px; }
}

@media (min-width: 1180px) {
  .rewards { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .reward .art { height: 172px; }
  .reward .art img { max-height: 156px; }
  .hero h1 { font-size: 50px; }
  .hero-body { grid-template-columns: minmax(0, 1fr) 340px; }
}

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