/* ==========================================================================
   Degenerate Dealer — marketing site
   Committed dark theme: a basement card room at 3 a.m. Every color is
   painted explicitly so the page holds on any host ground. Neutrals are
   green-biased on purpose: this is felt, not grey.
   ========================================================================== */

:root {
  --felt-deep: #070f0a;
  --felt: #0c1a12;
  --felt-2: #0f2116;
  --panel: #13291c;
  --panel-2: #17311f;
  --line: #23452f;
  --line-soft: #1a3524;

  /* The accent walk, lifted straight out of the product's accent-palette.ts */
  --brass: #b0873f;
  --gold: #d4a24c;
  --gold-hi: #f0c66c;
  --copper: #dd7a38;

  /* The one hot pop: cigar cherry, the price, the word "clock", the stamp. */
  --neon: #ff3b6b;
  --neon-deep: #b81f45;

  --chalk: #f9f6ef;
  --smoke: #b5c3b7;
  --muted: #86998c;
  --on-gold: #0b0f0d;
  --outline: #050c07;

  /* Cartoon construction: hard edges, no soft blur */
  --sticker: 4px 4px 0 var(--outline);
  --sticker-sm: 3px 3px 0 var(--outline);
  --sticker-lg: 7px 7px 0 var(--outline);
  --bd: 3px solid var(--outline);

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;

  --ff-display: 'Unbounded', 'Arial Black', 'Segoe UI', system-ui, sans-serif;
  --ff-body: 'Outfit', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Mono', monospace;

  --shell: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background:
    radial-gradient(120% 70% at 50% -10%, #16341f 0%, transparent 60%),
    radial-gradient(90% 60% at 100% 100%, #10261a 0%, transparent 55%),
    var(--felt);
  color: var(--chalk);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Felt grain. A tiny noise tile is generated on a canvas at load and dropped
   into --grain; without JS there is simply no grain. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grain, none) repeat;
  background-size: 140px 140px;
  opacity: 0.09;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

img, svg { max-width: 100%; }

a { color: var(--gold); text-decoration-color: color-mix(in srgb, var(--gold) 40%, transparent); text-underline-offset: 3px; }
a:hover { color: var(--gold-hi); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { text-wrap: balance; margin: 0; }
p { margin: 0; }

.shell { width: min(100% - 40px, var(--shell)); margin-inline: auto; }
.section { padding-block: clamp(64px, 8vw, 108px); }

/* --- shared bits ---------------------------------------------------------- */

.eyebrow {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--gold); }

.display {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--chalk);
  text-shadow: var(--sticker);
}
.h2 { font-size: clamp(26px, 3.6vw, 44px); }

.hot { color: var(--neon); }
.au { color: var(--gold); }

.lede { color: var(--smoke); font-size: clamp(17px, 1.4vw, 19px); max-width: 62ch; }

.btn {
  --btn-bg: var(--gold);
  --btn-ink: var(--on-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: var(--bd);
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: var(--sticker);
  transition: transform 90ms ease-out, box-shadow 90ms ease-out, background 120ms ease-out;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { background: var(--gold-hi); transform: translate(-2px, -2px); box-shadow: var(--sticker-lg); color: var(--on-gold); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--outline); }
.btn--ghost { --btn-bg: transparent; --btn-ink: var(--chalk); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--panel-2); color: var(--chalk); transform: none; box-shadow: none; border-color: var(--gold); }
.btn--neon { --btn-bg: var(--neon); --btn-ink: #14060a; }
.btn--neon:hover { background: #ff5c85; color: #14060a; }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

.rail { display: flex; align-items: center; gap: 12px; }
.rail::before, .rail::after {
  content: ""; flex: 1; height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-soft) 20%, var(--line-soft) 80%, transparent);
}
.rail i { width: 13px; height: 13px; border-radius: 50%; background: var(--line); border: 2px solid var(--line-soft); display: block; }
.rail i:nth-child(2) { background: var(--brass); }

.head { display: grid; gap: 14px; max-width: 44ch; margin-bottom: 46px; }
.head--wide { max-width: 58ch; }

/* --- nav ------------------------------------------------------------------ */

.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--felt-deep) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--line-soft);
}
.nav__in { display: flex; align-items: center; gap: 16px; padding-block: 14px; position: relative; }
.mark { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.mark svg { display: block; flex-shrink: 0; }
.mark__txt { display: flex; flex-direction: column; line-height: 1; }
.mark__a { font-family: var(--ff-display); font-weight: 800; font-size: 14px; text-transform: uppercase; color: var(--chalk); letter-spacing: 0.02em; white-space: nowrap; }
.mark__b { font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: 0.3em; color: var(--brass); text-transform: uppercase; margin-top: 4px; }
.nav__links { display: flex; gap: 24px; }
.nav__links a { color: var(--smoke); text-decoration: none; font-size: 14.5px; font-weight: 500; }
.nav__links a:hover { color: var(--chalk); }
.nav__links .only-m { display: none; }
.nav__menu { display: none; }

/* --- hero ----------------------------------------------------------------- */

.hero { padding-block: clamp(36px, 5vw, 64px) clamp(48px, 6vw, 80px); position: relative; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero__title { font-family: var(--ff-display); font-weight: 900; font-size: clamp(34px, 4.7vw, 62px); line-height: 1.02; letter-spacing: -0.025em; margin: 18px 0 0; }
.hero__sub { margin-top: 20px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__meta { margin-top: 20px; font-family: var(--ff-mono); font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }

/* The room: lamp above, Sal behind the rail, a neon sign on the wall. */
.stage { position: relative; display: grid; place-items: end center; padding-top: 150px; }
.mascot { position: relative; z-index: 1; width: min(100%, 400px); display: block; cursor: pointer; }
.mascot:focus-visible { outline-offset: -3px; border-radius: 24px; }

.lamp {
  position: absolute; top: -6px; left: 50%; translate: -50% 0;
  width: 320px; height: 320px; overflow: visible; z-index: 0;
  transform-origin: 50% 0;
  animation: swing 7s ease-in-out infinite;
}
.lamp .cone { filter: blur(7px); }
@keyframes swing {
  0%, 100% { transform: rotate(-1.6deg); }
  50%      { transform: rotate(1.6deg); }
}

.neon {
  position: absolute; top: 18px; right: 0; z-index: 2;
  display: grid; justify-items: center; gap: 2px;
  padding: 8px 14px 9px;
  border: 3px solid var(--neon);
  border-radius: 12px;
  font-family: var(--ff-mono); font-weight: 700; letter-spacing: 0.22em; line-height: 1;
  color: #fff;
  text-shadow: 0 0 6px var(--neon), 0 0 16px var(--neon), 0 0 34px var(--neon);
  box-shadow: 0 0 12px color-mix(in srgb, var(--neon) 55%, transparent), inset 0 0 12px color-mix(in srgb, var(--neon) 35%, transparent);
  background: rgb(7 15 10 / 0.6);
  transform: rotate(3deg);
  animation: flicker 9s linear infinite;
}
.neon b { font-size: 20px; }
.neon span { font-size: 9px; color: var(--gold-hi); text-shadow: 0 0 6px var(--gold), 0 0 14px var(--gold); letter-spacing: 0.3em; }
@keyframes flicker {
  0%, 100% { opacity: 1; }
  41%      { opacity: 1; }
  42%      { opacity: 0.45; }
  43%      { opacity: 1; }
  71%      { opacity: 1; }
  72%      { opacity: 0.7; }
  73%      { opacity: 1; }
  88%      { opacity: 1; }
  89%      { opacity: 0.35; }
  90%      { opacity: 1; }
}

.shout {
  position: absolute; left: 0; top: 190px; z-index: 3;
  max-width: 220px;
  background: var(--chalk); color: #10160f;
  border: var(--bd); border-radius: 16px;
  padding: 12px 15px;
  font-weight: 700; font-size: 15px; line-height: 1.3;
  box-shadow: var(--sticker);
  opacity: 0;
  transform: translateY(8px) rotate(-3deg) scale(0.94);
  transition: opacity 180ms ease-out, transform 180ms cubic-bezier(.2,1.5,.4,1);
  pointer-events: none;
}
.shout::after {
  content: ""; position: absolute; right: 26px; bottom: -16px;
  border: 9px solid transparent; border-top-color: var(--outline); border-right-width: 16px;
}
.shout.is-on { opacity: 1; transform: translateY(0) rotate(-3deg) scale(1); }

/* --- the clock ------------------------------------------------------------ */

.clock {
  --now: var(--gold);
  position: relative;
  border: var(--bd); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--felt-2));
  box-shadow: var(--sticker-lg), inset 0 2px 0 rgb(255 255 255 / 0.05);
  padding: 20px 22px 18px;
  max-width: 520px;
  margin-top: 30px;
}
.clock__top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.clock__lvl { color: var(--now); font-weight: 700; }
.clock__tag { border: 2px solid var(--line); border-radius: 999px; padding: 3px 9px; font-size: 10px; letter-spacing: 0.14em; color: var(--muted); }
.clock__time {
  font-family: var(--ff-mono); font-weight: 700; font-variant-numeric: tabular-nums;
  font-size: clamp(58px, 9vw, 92px); line-height: 1; letter-spacing: -0.02em;
  color: var(--now); margin: 10px 0 4px; text-align: center;
  text-shadow: 0 0 32px color-mix(in srgb, var(--now) 34%, transparent);
  transform-origin: center;
}
.clock__time.is-punch { animation: punch 340ms cubic-bezier(.2,1.6,.4,1); }
@keyframes punch { 0% { transform: scale(1.12); } 100% { transform: scale(1); } }
.clock__bar { height: 10px; border: 2px solid var(--outline); border-radius: 999px; background: var(--felt-deep); overflow: hidden; }
.clock__fill { height: 100%; width: 0%; background: var(--now); border-radius: 999px; transition: width 220ms linear; }
.clock__blinds { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-top: 16px; font-family: var(--ff-mono); font-variant-numeric: tabular-nums; }
.clock__big { font-size: clamp(24px, 3.4vw, 32px); font-weight: 700; color: var(--chalk); }
.clock__ante { font-size: 13px; color: var(--smoke); }
.clock__next { text-align: center; margin-top: 6px; font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.clock__ctrls { display: flex; gap: 8px; justify-content: center; margin-top: 16px; padding-top: 14px; border-top: 2px solid var(--line-soft); }
.key {
  font-family: var(--ff-mono); font-size: 13px; font-weight: 700;
  min-width: 44px; padding: 8px 12px;
  border: 2px solid var(--line); border-radius: var(--r-sm);
  background: var(--felt-2); color: var(--smoke);
  cursor: pointer; box-shadow: 0 2px 0 var(--outline);
  transition: transform 80ms ease-out, box-shadow 80ms ease-out, color 120ms;
}
.key:hover { color: var(--chalk); border-color: var(--brass); }
.key:active { transform: translateY(2px); box-shadow: none; }
.key[aria-pressed="true"] { color: var(--on-gold); background: var(--gold); border-color: var(--outline); }

/* The rubber stamp that slams down on a raise */
.stamp {
  position: absolute; inset: 0; display: grid; place-items: center;
  pointer-events: none; opacity: 0; z-index: 2;
}
.stamp span {
  font-family: var(--ff-display); font-size: clamp(34px, 5vw, 54px); line-height: 1;
  color: var(--neon);
  padding: 10px 22px;
  border: 5px double var(--neon);
  border-radius: 10px;
  background: rgb(7 15 10 / 0.72);
  text-shadow: 3px 3px 0 var(--outline);
  transform: rotate(-9deg);
}
.stamp.is-on { animation: slam 950ms cubic-bezier(.2,1.5,.4,1) forwards; }
@keyframes slam {
  0%   { opacity: 0; transform: scale(2.2) rotate(6deg); }
  22%  { opacity: 1; transform: scale(1) rotate(0); }
  78%  { opacity: 1; transform: scale(1) rotate(0); }
  100% { opacity: 0; transform: scale(1.05) rotate(0); }
}

/* --- ticker --------------------------------------------------------------- */

.ticker { position: relative; border-block: 3px solid var(--outline); background: #050a07; overflow: hidden; padding-block: 13px; }
.ticker::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgb(0 0 0 / 0.38) 0 1px, transparent 1px 3px);
}
.ticker__track { display: flex; width: max-content; animation: roll 48s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__set { display: flex; flex-shrink: 0; }
.ticker__set span {
  font-family: var(--ff-mono); font-size: 13px; font-weight: 700;
  color: var(--gold); text-shadow: 0 0 8px color-mix(in srgb, var(--gold) 60%, transparent);
  padding-inline: 26px; white-space: nowrap;
}
.ticker__set span::before { content: "♠"; color: var(--neon); margin-right: 26px; }
@keyframes roll { to { transform: translateX(-50%); } }

/* --- features ------------------------------------------------------------- */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.card {
  border: 2px solid var(--line-soft); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--felt-2));
  padding: 26px 24px 28px;
  display: grid; gap: 12px; align-content: start;
  transition: border-color 160ms ease-out, transform 160ms ease-out;
}
.card:hover { border-color: var(--brass); transform: translateY(-3px); }
.card:hover .card__no { color: var(--copper); }
.card__no { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--brass); transition: color 160ms; }
.card__t { font-family: var(--ff-body); font-weight: 800; font-size: 20px; line-height: 1.2; color: var(--chalk); }
.card p { color: var(--smoke); font-size: 15.5px; }

.keys { margin-top: 26px; border: 2px solid var(--line-soft); border-radius: var(--r-lg); background: var(--felt-deep); padding: 26px 24px; display: grid; gap: 18px; }
.keys__t { font-weight: 800; font-size: 19px; }
.keys__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(184px, 1fr)); gap: 10px 22px; margin: 0; }
.keys__list div { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--smoke); padding-block: 5px; }
kbd {
  font-family: var(--ff-mono); font-size: 12px; font-weight: 700; color: var(--chalk);
  background: var(--panel-2); border: 2px solid var(--line); border-bottom-width: 3px; border-radius: 5px;
  padding: 3px 8px; min-width: 34px; text-align: center; flex-shrink: 0;
}

/* --- head to head --------------------------------------------------------- */

.vs-wrap { overflow-x: auto; border: var(--bd); border-radius: var(--r-lg); background: var(--felt-deep); box-shadow: var(--sticker-lg); }
.vs { width: 100%; min-width: 680px; border-collapse: collapse; }
.vs th, .vs td { padding: 17px 20px; text-align: left; vertical-align: top; border-bottom: 2px solid var(--line-soft); }
.vs tbody tr:last-child td { border-bottom: none; }
.vs tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--panel) 45%, transparent); }
.vs thead th { font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); background: var(--panel); border-bottom: 3px solid var(--outline); }
.vs thead th:nth-child(2) { color: var(--gold); }
.vs th .who { display: flex; align-items: center; gap: 10px; text-transform: none; letter-spacing: 0; font-family: var(--ff-body); font-weight: 800; font-size: 15px; }
.vs th:nth-child(2) .who { color: var(--gold); }
.vs th:nth-child(3) .who { color: var(--smoke); }
.vs td:first-child { font-weight: 700; color: var(--chalk); width: 27%; font-size: 15.5px; }
.vs td:nth-child(2) { color: var(--chalk); font-size: 15.5px; }
.vs td:nth-child(3) { color: var(--smoke); font-style: italic; font-size: 15.5px; }
.vs .c { display: inline-flex; align-items: center; gap: 10px; }
.tick, .cross {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: inline-grid; place-items: center;
  font-family: var(--ff-mono); font-weight: 700; font-size: 13px; line-height: 1;
  border: 2px solid var(--outline);
}
.tick { background: var(--gold); color: var(--on-gold); }
.cross { background: transparent; color: var(--muted); border-color: var(--line); }
.who svg { width: 30px; height: 30px; }

/* --- it talks dirty ------------------------------------------------------- */

.sound { background: var(--felt-deep); border-block: 3px solid var(--outline); }
.sound__head { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.sound__head .head { margin-bottom: 0; }
.advisory {
  display: grid; justify-items: center; gap: 3px;
  padding: 12px 18px; background: #0a0a0a; color: #fff;
  border: 3px solid #fff; border-radius: 6px;
  font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px;
  transform: rotate(-4deg); box-shadow: var(--sticker);
}
.advisory b { font-family: var(--ff-display); font-weight: 800; font-size: 15px; letter-spacing: 0; }
.lines { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.line {
  border: var(--bd); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--felt-2));
  box-shadow: var(--sticker);
  padding: 22px 22px 20px;
  display: grid; gap: 16px; align-content: start;
}
.line__top { display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; }
.line__when { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.line__q { font-size: 17.5px; line-height: 1.45; font-weight: 500; font-style: italic; color: var(--chalk); }
.line__q::before { content: "“"; color: var(--neon); font-family: var(--ff-display); font-weight: 800; font-size: 1.5em; line-height: 0; margin-right: 3px; vertical-align: -0.2em; font-style: normal; }
.line__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; border-top: 2px solid var(--line-soft); padding-top: 14px; }
.line__n { font-family: var(--ff-mono); font-size: 12px; color: var(--muted); }
.line__draw { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.play {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 13px;
  border: var(--bd); border-radius: 999px;
  background: var(--neon); color: #14060a;
  font-family: var(--ff-body); font-weight: 800; font-size: 14px;
  cursor: pointer; box-shadow: var(--sticker-sm);
  transition: transform 90ms ease-out, box-shadow 90ms ease-out;
}
.play:hover { background: #ff5c85; transform: translate(-1px, -1px); box-shadow: var(--sticker); }
.play:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--outline); }
.play__ic { width: 0; height: 0; border-left: 11px solid #14060a; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.play.is-playing .play__ic { width: 11px; height: 13px; border: none; border-left: 4px solid #14060a; border-right: 4px solid #14060a; }
.bars { display: none; gap: 2px; align-items: flex-end; height: 14px; }
.play.is-playing .bars { display: inline-flex; }
.bars i { width: 3px; background: #14060a; animation: bar 520ms ease-in-out infinite alternate; }
.bars i:nth-child(2) { animation-delay: 130ms; }
.bars i:nth-child(3) { animation-delay: 260ms; }
.bars i:nth-child(4) { animation-delay: 90ms; }
@keyframes bar { from { height: 3px; } to { height: 14px; } }
.bag__pips { display: flex; flex-wrap: wrap; gap: 5px; }
.bag__pips i { width: 10px; height: 10px; border-radius: 50%; background: var(--brass); display: block; opacity: 0.85; transition: background 160ms, transform 160ms, opacity 160ms; }
.bag__pips i.is-drawn { background: var(--neon); opacity: 1; transform: scale(1.35); }
.bag__pips i.is-last { box-shadow: 0 0 0 3px color-mix(in srgb, var(--neon) 40%, transparent); }
.draw__out { font-family: var(--ff-mono); font-size: 12px; color: var(--smoke); line-height: 1.5; }
.draw__out b { color: var(--neon); font-weight: 700; }

/* --- anatomy -------------------------------------------------------------- */

.anat { overflow-x: auto; }
.anat svg { display: block; width: 100%; min-width: 820px; height: auto; }
.anat .lbl { font-family: var(--ff-body); font-weight: 800; font-size: 17px; fill: var(--chalk); }
.anat .quip { font-family: var(--ff-body); font-weight: 400; font-size: 14px; fill: var(--smoke); }
.anat .lead { stroke: var(--gold); stroke-width: 2; fill: none; }
.anat .dot { fill: var(--neon); stroke: var(--outline); stroke-width: 2; }

/* --- regulars ------------------------------------------------------------- */

.regulars { position: relative; overflow: hidden; }
.carpet { position: absolute; inset: 0; opacity: 0.11; pointer-events: none; }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; position: relative; }
.quote {
  background: var(--chalk); color: #131a12;
  border: var(--bd); border-radius: 18px; padding: 22px 22px 20px;
  box-shadow: var(--sticker); display: grid; gap: 14px; align-content: start;
}
.quote:nth-child(2) { transform: rotate(1.1deg); }
.quote:nth-child(3) { transform: rotate(-0.8deg); }
.quote p { font-size: 17px; font-weight: 500; line-height: 1.45; }
.quote footer { display: flex; align-items: center; gap: 11px; border-top: 2px dashed #b9b3a2; padding-top: 13px; }
.quote__who { font-weight: 800; font-size: 14px; color: #131a12; }
.quote__what { font-size: 12.5px; color: #5c6357; font-family: var(--ff-mono); }
.pfp { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--outline); background: var(--felt-2); flex-shrink: 0; overflow: hidden; display: grid; place-items: center; }
.pfp svg { width: 100%; height: 100%; display: block; }
.disclaim { margin-top: 22px; font-family: var(--ff-mono); font-size: 12px; color: var(--muted); position: relative; }

/* --- pricing -------------------------------------------------------------- */

.price__grid {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(28px, 5vw, 60px); align-items: center;
  border: var(--bd); border-radius: 26px;
  background: linear-gradient(150deg, var(--panel-2), var(--felt-2) 70%);
  box-shadow: var(--sticker-lg);
  padding: clamp(28px, 4vw, 46px);
}
.chipwrap { perspective: 900px; animation: wobble 7s ease-in-out infinite; display: grid; justify-items: center; gap: 10px; }
.chip {
  position: relative;
  width: clamp(190px, 22vw, 236px); aspect-ratio: 1; border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 750ms cubic-bezier(.3,1.3,.4,1);
  cursor: pointer;
  border: none; padding: 0; background: none;
}
.chipwrap:hover .chip, .chip:focus-visible { transform: rotateY(180deg); }
.chip__face {
  position: absolute; inset: 0; border-radius: 50%;
  backface-visibility: hidden;
  display: grid; place-items: center;
  background: repeating-conic-gradient(from 15deg, var(--neon) 0 45deg, var(--chalk) 45deg 60deg);
  border: 4px solid var(--outline);
  box-shadow: var(--sticker), inset 0 0 0 7px color-mix(in srgb, var(--outline) 45%, transparent);
}
.chip__face--back { transform: rotateY(180deg); background: repeating-conic-gradient(from 15deg, var(--gold) 0 45deg, var(--chalk) 45deg 60deg); }
.chip__in {
  width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, var(--panel-2), var(--felt-deep));
  border: 3px dashed color-mix(in srgb, var(--gold) 55%, transparent);
  display: grid; place-content: center; justify-items: center; gap: 3px;
}
.chip__amt { font-family: var(--ff-mono); font-weight: 700; font-size: clamp(30px, 4vw, 40px); color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.chip__per { font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.24em; color: var(--muted); }
.chip__back { font-family: var(--ff-display); font-weight: 800; font-size: clamp(15px, 2vw, 19px); color: var(--chalk); line-height: 1.1; text-align: center; letter-spacing: -0.02em; }
.chip__suit { font-size: 22px; color: var(--neon); line-height: 1; }
.chip__hint { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
@keyframes wobble { 0%, 100% { transform: rotate(-2.5deg); } 50% { transform: rotate(2.5deg); } }

.incl { display: grid; gap: 9px; margin: 22px 0 26px; padding: 0; list-style: none; }
.incl li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 15.5px; color: var(--smoke); }
.incl li b { color: var(--chalk); font-weight: 700; }
.incl svg { margin-top: 4px; }
.fine { font-family: var(--ff-mono); font-size: 11.5px; color: var(--muted); margin-top: 14px; }

/* --- roadmap -------------------------------------------------------------- */

.road { display: grid; gap: 10px; }
.road__row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 18px; align-items: center;
  padding: 18px 22px; border: 2px solid var(--line-soft); border-radius: var(--r); background: var(--panel);
}
.road__n { font-weight: 800; font-size: 17.5px; }
.road__n span { color: var(--smoke); font-weight: 400; font-size: 15.5px; }
.road__s { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); border: 2px solid var(--line); border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.road__bar { grid-column: 1 / -1; height: 8px; border: 2px solid var(--outline); border-radius: 999px; background: var(--felt-deep); overflow: hidden; }
.road__bar i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--brass), var(--gold)); }

/* --- faq ------------------------------------------------------------------ */

.faq__grid { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: clamp(26px, 4vw, 54px); align-items: start; }
details { border-bottom: 2px solid var(--line-soft); padding-block: 4px; }
summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 700; font-size: 17.5px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 15px; font-family: var(--ff-mono); font-size: 24px; color: var(--brass); line-height: 1; }
details[open] summary::after { content: "–"; }
details p { color: var(--smoke); padding-bottom: 20px; max-width: 66ch; font-size: 15.5px; }

/* --- footer --------------------------------------------------------------- */

.foot { border-top: 3px solid var(--outline); background: var(--felt-deep); padding-block: 48px 36px; }
.foot__grid { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; justify-content: space-between; }
.foot__cols { display: flex; flex-wrap: wrap; gap: 44px; }
.foot__col { display: grid; gap: 9px; align-content: start; }
.foot__h { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.foot__col a { color: var(--smoke); text-decoration: none; font-size: 14.5px; }
.foot__col a:hover { color: var(--gold); }
.rules { margin: 0; padding: 0 0 0 18px; color: var(--smoke); font-size: 14px; display: grid; gap: 5px; max-width: 30ch; }
.rules li::marker { color: var(--brass); font-family: var(--ff-mono); font-weight: 700; }
.foot__base { margin-top: 40px; padding-top: 22px; border-top: 2px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 13px; color: var(--muted); }

/* --- modal ---------------------------------------------------------------- */

.scrim { position: fixed; inset: 0; z-index: 90; background: rgb(3 8 5 / 0.78); backdrop-filter: blur(3px); display: grid; place-items: center; padding: 20px; overflow-y: auto; }
.scrim[hidden] { display: none; }
.modal { width: min(100%, 420px); background: linear-gradient(180deg, var(--panel-2), var(--felt-2)); border: var(--bd); border-radius: 22px; box-shadow: var(--sticker-lg); padding: 26px 26px 24px; position: relative; }
.modal__x { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--line); background: var(--felt-2); color: var(--smoke); font-size: 17px; cursor: pointer; line-height: 1; }
.modal__x:hover { color: var(--chalk); border-color: var(--brass); }
.modal__head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.modal__t { font-family: var(--ff-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.tabs { display: flex; gap: 6px; background: var(--felt-deep); border: 2px solid var(--line-soft); border-radius: 10px; padding: 4px; margin: 18px 0; }
.tab { flex: 1; padding: 9px 10px; border: none; border-radius: 7px; background: transparent; color: var(--smoke); font-family: var(--ff-body); font-weight: 700; font-size: 14px; cursor: pointer; }
.tab[aria-selected="true"] { background: var(--gold); color: var(--on-gold); }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input { font-family: var(--ff-body); font-size: 15px; padding: 12px 14px; border-radius: 10px; border: 2px solid var(--line); background: var(--felt-deep); color: var(--chalk); }
.field input::placeholder { color: #56685c; }
.field input:focus { border-color: var(--gold); outline: none; }
.demo-note { margin-top: 16px; font-family: var(--ff-mono); font-size: 11.5px; line-height: 1.5; color: var(--muted); border-top: 2px dashed var(--line-soft); padding-top: 14px; }
.demo-note b { color: var(--brass); }
.said { margin-top: 14px; padding: 12px 14px; border: 2px solid var(--brass); border-radius: 10px; background: color-mix(in srgb, var(--brass) 12%, transparent); color: var(--chalk); font-size: 14.5px; font-weight: 500; }
.said[hidden] { display: none; }

/* --- mascot motion ---------------------------------------------------------
   Sal lives in <defs> and is drawn through <use>, so the only way to reach
   his parts from the page is through inherited custom properties:
     --px / --py  pupil offset, follows the cursor
     --brow       right eyebrow lift, on hover
     --drag       cigar cherry scale, when poked
   ------------------------------------------------------------------------- */
.pupil { transform: translate(var(--px, 0px), var(--py, 0px)); transition: transform 120ms ease-out; }
.brow { transform-box: fill-box; transform-origin: center; transition: transform 220ms cubic-bezier(.2,1.4,.4,1); }
.brow--l { transform: rotate(-7deg); }
.brow--r { transform: rotate(6deg) translateY(var(--brow, 0px)); }
.stage:hover .mascot { --brow: -8px; }
.mascot.is-poked { --drag: 1.55; }

.wisp { animation: puff 5.5s ease-in infinite; transform-box: fill-box; }
.wisp--2 { animation-duration: 6.4s; animation-delay: 1.6s; }
.wisp--3 { animation-duration: 7.1s; animation-delay: 3.2s; }
@keyframes puff {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.6); }
  22%  { opacity: 0.5; }
  100% { opacity: 0; transform: translate(-14px, -78px) scale(1.7); }
}
.cherry { transform-box: fill-box; transform-origin: center; transform: scale(var(--drag, 1)); transition: transform 260ms cubic-bezier(.2,1.6,.4,1); animation: ember 2.6s ease-in-out infinite; }
@keyframes ember { 0%, 100% { opacity: 0.72; } 50% { opacity: 1; } }
.lid { transform-box: fill-box; transform-origin: top center; transform: scaleY(0); animation: blink 6.2s ease-in-out infinite; }
.lid--2 { animation-delay: 0.04s; }
@keyframes blink { 0%, 92%, 100% { transform: scaleY(0); } 95%, 97% { transform: scaleY(1); } }
.fan { transform-box: fill-box; transform-origin: 60% 100%; animation: sway 5.8s ease-in-out infinite; }
@keyframes sway { 0%, 100% { transform: rotate(-1.6deg); } 50% { transform: rotate(2.4deg); } }

/* Big puffs when he's poked — these live in the hero document tree */
.bigpuff { opacity: 0; transform-box: fill-box; transform-origin: center; }
.mascot.is-poked .bigpuff { animation: bigpuff 1100ms ease-out forwards; }
.mascot.is-poked .bigpuff--2 { animation-delay: 120ms; }
.mascot.is-poked .bigpuff--3 { animation-delay: 240ms; }
@keyframes bigpuff {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.4); }
  20%  { opacity: 0.55; }
  100% { opacity: 0; transform: translate(-20px, -110px) scale(2.2); }
}

/* --- hero load sequence (runs immediately, never waits on scroll) ---------- */
.in { animation: rise 620ms cubic-bezier(.16,1,.3,1) backwards; }
.in--1 { animation-delay: 60ms; }
.in--2 { animation-delay: 150ms; }
.in--3 { animation-delay: 240ms; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 980px) {
  .hero__grid, .sound__grid, .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .price__grid { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; }
  .price__grid .incl li { text-align: left; }
  .price__grid .head { justify-items: center; }
  .stage { order: -1; padding-top: 130px; }
  .mascot { width: min(78%, 340px); }
  .lamp { width: 260px; height: 260px; }
  .faq__grid .head { max-width: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__in { gap: 10px; }
  .mark__a { font-size: 12px; }
  .mark__b { display: none; }
  .btn--sm { padding: 9px 12px; font-size: 13px; }
  .nav__menu { display: inline-flex; }
  .nav__links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--felt-deep); border-bottom: 3px solid var(--outline);
    padding: 6px 20px 12px;
  }
  .nav__links a { padding: 11px 0; border-top: 1px solid var(--line-soft); font-size: 16px; }
  .nav__links .only-m { display: block; }
  .nav.is-open .nav__links { display: flex; }
  .nav__signin { display: none; }
  .bag__row { grid-template-columns: 1fr auto; }
  .bag__pips { grid-column: 1 / -1; }
  .road__row { grid-template-columns: 1fr; }
  .clock__ctrls { flex-wrap: wrap; }
  .neon { top: 6px; transform: rotate(3deg) scale(0.85); transform-origin: top right; }
  .shout { top: 150px; max-width: 180px; font-size: 14px; }
}

@media (max-width: 520px) {
  /* Two-line wordmark so the icon, the CTA and the menu all fit at 375px */
  .mark__a { white-space: normal; max-width: 96px; line-height: 1.05; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .ticker__track { animation: none; }
  .ticker { overflow-x: auto; }
  .lid { transform: scaleY(0); }
  .wisp { opacity: 0.35; }
  .lamp, .neon, .chipwrap { animation: none; }
  .neon { opacity: 1; }
}

/* --- inner pages ---------------------------------------------------------- */

.chip { display: block; text-decoration: none; }
.pg { padding-block: clamp(40px, 6vw, 72px) clamp(64px, 8vw, 108px); }
.pg__head { display: grid; gap: 12px; max-width: 60ch; margin-bottom: 34px; }
.pg__head .display { font-size: clamp(30px, 4.2vw, 50px); }
.banner {
  display: flex; gap: 14px; align-items: flex-start;
  border: 3px solid var(--gold); border-radius: var(--r);
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  padding: 14px 16px; font-size: 14.5px; color: var(--chalk); max-width: 76ch; margin-bottom: 30px;
}
.banner b { color: var(--gold); font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap; padding-top: 3px; }

.auth { display: grid; grid-template-columns: minmax(0, 440px); justify-content: center; }
.auth--wide { grid-template-columns: minmax(0, 500px) minmax(0, 380px); gap: 24px; align-items: start; }
.panel { border: var(--bd); border-radius: 22px; background: linear-gradient(180deg, var(--panel-2), var(--felt-2)); box-shadow: var(--sticker-lg); padding: 28px 26px 24px; }
.panel__head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.panel__head svg { width: 64px; flex-shrink: 0; }
.panel__t { font-family: var(--ff-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; margin: 4px 0 0; }
.panel__sub { color: var(--smoke); font-size: 15px; margin: 10px 0 20px; }
.field select, .field textarea { font-family: var(--ff-body); font-size: 15px; padding: 12px 14px; border-radius: 10px; border: 2px solid var(--line); background: var(--felt-deep); color: var(--chalk); }
.field textarea { min-height: 130px; resize: vertical; }
.field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--smoke); margin-bottom: 14px; line-height: 1.4; }
.check input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.links { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 16px; font-size: 14px; }
.links a { color: var(--smoke); }
.links a:hover { color: var(--gold); }
.step { display: flex; align-items: center; gap: 10px; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin: 22px 0 12px; }
.step::after { content: ""; flex: 1; height: 2px; background: var(--line-soft); }
.paybox { border: 3px dashed var(--line); border-radius: 14px; padding: 16px 18px; color: var(--smoke); font-size: 14.5px; display: grid; gap: 6px; margin-bottom: 18px; }
.paybox b { color: var(--chalk); }
.paybox .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.paybox .badges span { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.12em; border: 2px solid var(--line); border-radius: 6px; padding: 3px 8px; color: var(--muted); }

.summary { border: 2px solid var(--line-soft); border-radius: 22px; background: var(--felt-deep); padding: 24px 24px 22px; display: grid; gap: 14px; }
.summary__plan { display: flex; align-items: center; gap: 14px; }
.summary__chip { width: 64px; height: 64px; border-radius: 50%; background: repeating-conic-gradient(from 15deg, var(--neon) 0 45deg, var(--chalk) 45deg 60deg); border: 3px solid var(--outline); display: grid; place-items: center; flex-shrink: 0; }
.summary__chip i { width: 70%; height: 70%; border-radius: 50%; background: var(--felt-deep); border: 2px dashed color-mix(in srgb, var(--gold) 55%, transparent); display: block; }
.summary__name { font-weight: 800; font-size: 17px; }
.summary__price { font-family: var(--ff-mono); font-size: 13px; color: var(--gold); }
.summary .incl { margin: 4px 0 0; }
.summary .incl li { font-size: 14.5px; }
.total { display: flex; justify-content: space-between; border-top: 2px solid var(--line-soft); padding-top: 12px; font-family: var(--ff-mono); font-size: 13px; color: var(--smoke); }
.total b { color: var(--chalk); font-size: 16px; }

.dash { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.dash .panel { padding: 24px 24px 22px; display: grid; gap: 14px; align-content: start; box-shadow: var(--sticker); }
.dash .panel--wide { grid-column: 1 / -1; }
.panel__k { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }
.status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.status::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #3fbe7c; box-shadow: 0 0 10px #3fbe7c; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 14.5px; margin: 0; }
.kv dt { color: var(--muted); font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.08em; padding-top: 2px; }
.kv dd { margin: 0; color: var(--chalk); }
.row-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.dl { display: grid; gap: 8px; }
.dl__row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; border: 2px solid var(--line-soft); border-radius: var(--r); background: var(--felt-deep); }
.dl__os { font-weight: 700; }
.dl__meta { font-family: var(--ff-mono); font-size: 11.5px; color: var(--muted); }
.code { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.code code { font-family: var(--ff-mono); font-size: 15px; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); background: var(--felt-deep); border: 2px solid var(--line); border-radius: 8px; padding: 9px 12px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.stat { border: 2px solid var(--line-soft); border-radius: var(--r); background: var(--felt-deep); padding: 12px 14px; display: grid; gap: 2px; }
.stat b { font-family: var(--ff-mono); font-size: 22px; font-weight: 700; color: var(--chalk); font-variant-numeric: tabular-nums; }
.stat span { font-size: 12.5px; color: var(--muted); }
.plea { border: var(--bd); border-radius: 16px; background: var(--chalk); color: #10160f; padding: 16px 18px; display: grid; gap: 12px; box-shadow: var(--sticker); }
.plea[hidden] { display: none; }
.plea p { font-weight: 600; }
.panel.danger { border-color: color-mix(in srgb, var(--neon) 45%, var(--outline)); }
.btn--danger { --btn-bg: transparent; --btn-ink: var(--neon); border-color: var(--neon); box-shadow: none; }
.btn--danger:hover { background: color-mix(in srgb, var(--neon) 14%, transparent); color: var(--neon); transform: none; box-shadow: none; }
.note { color: var(--smoke); font-size: 14.5px; }

.doc { max-width: 70ch; display: grid; gap: 10px; }
.doc h2 { font-family: var(--ff-body); font-weight: 800; font-size: 20px; margin-top: 22px; color: var(--chalk); scroll-margin-top: 100px; }
.doc h2 span { font-family: var(--ff-mono); font-size: 12px; color: var(--brass); letter-spacing: 0.12em; margin-right: 10px; }
.doc p, .doc li { color: var(--smoke); font-size: 15.5px; }
.doc ul { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.doc li::marker { color: var(--brass); }
.doc li b { color: var(--chalk); }
.doc .meta { font-family: var(--ff-mono); font-size: 12px; color: var(--muted); }
.toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.toc a { font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--smoke); text-decoration: none; border: 2px solid var(--line-soft); border-radius: 999px; padding: 5px 11px; }
.toc a:hover { border-color: var(--brass); color: var(--gold); }

.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: 24px; align-items: start; }
.aside { display: grid; gap: 14px; }
.aside .panel { box-shadow: var(--sticker); padding: 22px 22px 20px; display: grid; gap: 8px; }
.aside p { color: var(--smoke); font-size: 14.5px; }

.lost { display: grid; justify-items: center; text-align: center; gap: 16px; padding-block: clamp(30px, 6vw, 70px); }
.lost__n { font-family: var(--ff-display); font-weight: 900; font-size: clamp(90px, 18vw, 200px); line-height: 0.9; letter-spacing: -0.05em; color: var(--chalk); }
.lost__n span { color: var(--neon); }
.lost svg { width: 180px; }

@media (max-width: 900px) {
  .auth--wide, .contact { grid-template-columns: minmax(0, 1fr); }
}
