/* QWTF Play design system: cold teal ink, signal cyan, act-gold. */
@font-face { font-family: 'IBM Plex Mono'; src: url('/assets/fonts/IBMPlexMono-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('/assets/fonts/IBMPlexMono-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'IBM Plex Sans'; src: url('/assets/fonts/IBMPlexSans-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'IBM Plex Sans'; src: url('/assets/fonts/IBMPlexSans-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --ink: #0A1418; --panel: #0F1D23; --line: #1C333B;
  --cyan: #46E6E6; --cyan-dim: #2E9FA3; --gold: #D9A94E;
  --text: #CFE0E2; --muted: #7E959B;
  --team-blue: #4E9CFF; --team-red: #FF5C49;
  --mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body { background: var(--ink); color: var(--text); font: 400 1.0625rem/1.65 var(--sans); }
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.skip-link { position: fixed; top: 0.75rem; left: 0.75rem; z-index: 100;
  padding: 0.65rem 0.9rem; background: var(--gold); color: #14100a;
  border-radius: 3px; font: 600 0.85rem var(--mono);
  transform: translateY(calc(-100% - 1rem)); transition: transform 120ms ease; }
.skip-link:focus-visible { transform: translateY(0); }

.nav { position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between;
  align-items: center; padding: 0.75rem 1.5rem; background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.wordmark { font: 600 1.1rem var(--mono); color: var(--text); letter-spacing: 0.02em;
  white-space: nowrap; }
.wordmark:hover { text-decoration: none; color: var(--cyan); }
.nav-links { display: flex; gap: 1.4rem; }
.nav-links a { display: inline-flex; align-items: center; min-height: 2.75rem;
  font: 400 0.85rem var(--mono); color: var(--muted); }
.nav-links a:hover { color: var(--cyan); text-decoration: none; }

.hero { min-height: 58vh; display: grid; align-items: center;
  background:
    linear-gradient(180deg, rgba(10,20,24,0.55) 0%, rgba(10,20,24,0.82) 62%, var(--ink) 100%),
    url('/assets/gen/hero.jpg') center / cover no-repeat var(--ink); }
.hero-inner { max-width: 1080px; margin: 0 auto; padding: 4.5rem 1.5rem 3.5rem; width: 100%; text-align: center; }
.hero-inner .lede { margin-inline: auto; }
.hero-inner .cta-row { justify-content: center; }
h1 { font: 600 clamp(2.4rem, 6vw, 4.2rem)/1.08 var(--mono); letter-spacing: -0.02em; margin: 0.6rem 0 1.1rem; }
.lede { max-width: 39rem; color: var(--text); }
.eyebrow { font: 400 0.85rem var(--mono); color: var(--cyan-dim); letter-spacing: 0.04em; }
.cta-row { display: flex; gap: 0.9rem; margin: 1.6rem 0 0.8rem; flex-wrap: wrap; }
.hero-note { font: 400 0.8rem var(--mono); color: var(--muted); }

.btn { display: inline-block; padding: 0.75rem 1.4rem; font: 600 0.95rem var(--mono);
  border: 1px solid var(--line); border-radius: 3px; }
.btn:hover { text-decoration: none; }
.btn-gold { background: var(--gold); color: #14100a; border-color: var(--gold); }
.btn-gold:hover { filter: brightness(1.08); }
.btn-ghost { color: var(--cyan); border-color: var(--cyan-dim); }
.btn-ghost:hover { border-color: var(--cyan); background: rgba(70,230,230,0.06); }
.btn-disabled { color: var(--muted); border-color: var(--line); cursor: default; pointer-events: none; }

.section { max-width: 1080px; margin: 0 auto; padding: 3.5rem 1.5rem 0; }
h2 { font: 600 clamp(1.5rem, 3vw, 2.1rem)/1.2 var(--mono); margin: 0.5rem 0 1rem; letter-spacing: -0.01em; }
.section > p { max-width: 44rem; }

/* Storytelling sections center their narrative; grids inside stay left. */
.section-center .eyebrow, .section-center h2, .section-center > .prose,
.section-center .stat-provenance { text-align: center; }
.section-center .prose, .section-center > p { margin-inline: auto; }
.section-center .stat { text-align: center; }
.section-center figure, .section-center .community-grid,
.section-center .tl-item { text-align: left; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.2rem 0 1.4rem;
  display: grid; gap: 0.55rem; }
.steps li { counter-increment: step; display: flex; gap: 0.8rem; align-items: baseline; }
.steps li::before { content: counter(step, decimal-leading-zero);
  font: 600 0.95rem var(--mono); color: var(--gold); }

.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 0.8rem 0 0.6rem; }
.dl-card { display: grid; grid-template-columns: 1fr auto; gap: 0.25rem 1rem; align-items: center;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 4px; padding: 1.1rem 1.2rem; color: var(--text); }
.dl-card:hover { text-decoration: none; border-color: var(--gold); background: #12232a; }
.dl-label { grid-column: 1; font: 600 1.02rem var(--mono); color: var(--gold); }
.dl-meta { grid-column: 1; font: 400 0.85rem var(--mono); color: var(--muted); }
.dl-sha { grid-column: 1; font: 400 0.75rem var(--mono); color: var(--muted); }
.dl-hint { grid-column: 1; font: 400 0.75rem var(--mono); color: var(--gold); }
.dl-action { grid-column: 2; grid-row: 1 / -1; align-self: center; white-space: nowrap;
  font: 600 0.82rem var(--mono); color: var(--cyan); }
.dl-card:hover .dl-action { color: var(--gold); }
.empty-note { font: 400 0.9rem var(--mono); color: var(--muted); padding: 1rem 0; }
.fineprint { font-size: 0.85rem; color: var(--muted); max-width: 44rem; }
.backlog-row:empty { display: none; }
.backlog-row { font: 400 0.8rem var(--mono); color: var(--muted); margin-top: 0.6rem; }
.backlog-label { color: var(--muted); }
.backlog-link { color: var(--cyan-dim); }
.backlog-link:hover { color: var(--cyan); }
.dl-meter { margin-top: 1.1rem; max-width: 30rem; }
.dl-total { font: 600 1.05rem var(--mono); color: var(--text); }
.dl-total #dl-count { color: var(--gold); }
.milestone-track { height: 6px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 3px; margin: 0.5rem 0 0.3rem; overflow: hidden; }
.milestone-fill { height: 100%; width: 0; background: var(--gold);
  transition: width 700ms ease; }
.milestone-label { font: 400 0.78rem var(--mono); color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .milestone-fill { transition: none; } }

.play-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; margin-top: 0.4rem;
  align-items: start; }

/* \watch\ is a Twitch-style theater: one persistent big player (#watch-hero)
   plus a real grid of thumbnail cards below (hub.quakeworld.nu-style),
   never an internal scrollbar strip. The grid wraps naturally with the
   page's own vertical scroll on wide viewports; on narrow ones it becomes
   a snap-scrolling flick row with the native scrollbar hidden (see the
   (max-width: 720px) block below), relying on motion instead of a visible OS
   scrollbar, never a static list. */
.watch-hero { margin-top: 1.1rem; }
.watch-hero-frame { aspect-ratio: 16/10; background: var(--ink);
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.watch-hero-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.watch-hero-frame .empty-note { display: grid; place-items: center; height: 100%; margin: 0; }
.watch-hero-note { display: flex; align-items: stretch; gap: 0.45rem; margin-top: 0.6rem;
  font: 600 1.05rem var(--mono); flex-wrap: wrap; }
.watch-hero-note:empty { display: none; }
.watch-hero-map, .watch-hero-stat, .watch-meta-item { display: grid; gap: 0.12rem;
  padding: 0.4rem 0.55rem; border-left: 1px solid var(--line); }
.watch-hero-map { min-width: 9rem; color: var(--text); align-content: center;
  border-left: 2px solid var(--cyan); }
.watch-hero-stat { font: 400 0.82rem var(--mono); color: var(--text); }
.watch-hero-note small, .watch-hero-bio small { font: 400 0.58rem var(--mono);
  letter-spacing: 0.1em; color: var(--muted); }
.watch-hero-bio { display: flex; flex-wrap: wrap; gap: 0.45rem;
  font: 400 0.76rem var(--mono); color: var(--muted); margin: 0.35rem 0 0; }
.watch-meta-item { min-width: 12rem; }
.watch-achievement { color: var(--gold); border-left-color: rgba(217,169,78,0.55); }
.watch-hero-bio:empty { display: none; }
.watch-grid-heading { font: 600 0.95rem var(--mono); color: var(--muted);
  margin: 1.8rem 0 0; text-transform: uppercase; letter-spacing: 0.04em; }
.watch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 1rem; margin-top: 0.9rem; }
.watch-card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.watch-card.watch-card-playable { cursor: pointer; }
.watch-card.watch-card-playable:hover { border-color: var(--cyan-dim);
  transform: translateY(-3px); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.55); }
.watch-card.watch-card-playable:hover .watch-thumb-img { transform: scale(1.045); }
.watch-card.watch-card-playable:hover .watch-play-overlay { opacity: 1; }
.watch-card.watch-card-live { border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(217,169,78,0.35); }
.watch-thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; background:
  radial-gradient(120% 140% at 15% 0%, rgba(70,230,230,0.10), transparent 55%), var(--ink); }
.watch-thumb-static { width: 100%; height: 100%; position: relative; display: flex;
  flex-direction: column; justify-content: space-between; padding: 0.7rem; overflow: hidden; }
.watch-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; transition: transform 0.4s ease; }
/* Legibility scrim over a real screenshot, serving the same purpose as the gradient hub.quakeworld.nu
   uses under its own live scoreboard overlay. Present even with no image (just a flat tint
   over the ink background then) so the two states share one rule. */
.watch-thumb-static::before { content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,20,24,0.6) 0%, rgba(10,20,24,0.15) 40%,
    rgba(10,20,24,0.85) 100%); }
.watch-badge-row, .watch-thumb-mid, .watch-thumb-foot { position: relative; z-index: 2; }
.watch-badge-row { display: flex; gap: 0.4rem; align-items: flex-start; flex-wrap: wrap; }
.watch-badge { align-self: flex-start; font: 600 0.7rem var(--mono); color: var(--gold);
  background: rgba(217,169,78,0.18); border: 1px solid rgba(217,169,78,0.5);
  border-radius: 3px; padding: 0.15rem 0.5rem; backdrop-filter: blur(3px); }
.watch-caps { font: 600 0.68rem var(--mono); color: var(--cyan);
  background: rgba(10,20,24,0.72); border: 1px solid rgba(70,230,230,0.35);
  border-radius: 3px; padding: 0.16rem 0.45rem; backdrop-filter: blur(3px); }
.watch-views { font: 600 0.68rem var(--mono); color: var(--cyan);
  background: rgba(10,20,24,0.72); border: 1px solid rgba(70,230,230,0.35);
  border-radius: 3px; padding: 0.16rem 0.45rem; backdrop-filter: blur(3px); }
.watch-thumb-missing .watch-thumb-static { background:
  linear-gradient(135deg, rgba(70,230,230,0.07), transparent 48%),
  repeating-linear-gradient(0deg, rgba(70,230,230,0.025) 0 1px, transparent 1px 7px),
  var(--ink); }
.watch-thumb-mid { display: grid; place-items: center; flex: 1; }
.watch-map-big { font: 600 1.25rem var(--mono); color: var(--text); text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.watch-score-big { font: 400 0.95rem var(--mono); color: var(--text); text-align: center;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.watch-thumb-foot { display: flex; justify-content: space-between; font: 400 0.72rem var(--mono);
  color: rgba(207,224,226,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.7); }
/* A quiet play glyph fades in on hover instead of a heavy gold button sitting on every
   card at rest. The live card gets a permanent "now playing" pip instead. */
.watch-play-overlay { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  opacity: 0; transition: opacity 0.18s ease; pointer-events: none;
  background: radial-gradient(circle at center, rgba(10,20,24,0.35), transparent 60%); }
.watch-play-overlay::before { content: '▶'; font-size: 1.6rem; color: var(--text);
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%;
  background: rgba(10,20,24,0.65); border: 1px solid rgba(207,224,226,0.35); }
.watch-card-live .watch-play-overlay { opacity: 1; pointer-events: none; }
.watch-card-live .watch-play-overlay::before { content: '●'; font-size: 0.9rem; color: var(--gold);
  width: auto; height: auto; padding: 0.25rem 0.6rem; border-radius: 3px;
  background: rgba(10,20,24,0.75); border-color: rgba(217,169,78,0.5); }
.watch-card-body { padding: 0.65rem 0.75rem 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.watch-play-btn { display: flex; align-items: center; justify-content: space-between; width: 100%;
  font: 600 0.78rem var(--mono); color: var(--muted); background: none;
  border: 1px solid var(--line); border-radius: 3px; padding: 0.35rem 0.6rem; cursor: pointer;
  text-align: left; transition: color 0.15s ease, border-color 0.15s ease; }
.watch-card-playable:hover .watch-play-btn { color: var(--cyan); border-color: var(--cyan-dim); }
.watch-play-btn[disabled] { color: var(--muted); cursor: default; }
.pick-actions { display: flex; gap: 0.75rem; align-items: center; }
.pick-copy { font: 400 0.72rem var(--mono); color: var(--muted); background: none;
  border: 1px solid var(--line); border-radius: 3px; padding: 0.2rem 0.5rem; cursor: pointer; }
.pick-copy:hover { color: var(--cyan); border-color: var(--cyan-dim); }
.pick-dl { font: 400 0.72rem var(--mono); color: var(--muted); }
.pick-dl:hover { color: var(--cyan); }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; margin-top: 1.2rem;
  align-items: start; }

.timeline { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid;
  grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.tl-item { display: grid; gap: 0.35rem; align-content: start;
  border-top: 2px solid var(--line); padding-top: 0.7rem; }
.tl-year { font: 600 1rem var(--mono); color: var(--gold); }
.tl-text { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 4px;
  padding: 1rem 1.1rem; display: grid; gap: 0.3rem; align-content: start; }
.stat-value { font: 600 1.7rem var(--mono); color: var(--gold); letter-spacing: -0.01em; }
.stat-label { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.stat-provenance { font: 400 0.78rem var(--mono); color: var(--muted); margin-top: 0.6rem; }

.archive-line { font: 400 0.9rem var(--mono); color: var(--cyan); margin-bottom: 0.9rem; }
.archive-line:empty { display: none; }

.figure-banner { margin-top: 1.6rem; }
.figure-banner img { width: 100%; height: auto; border-radius: 2px; }

.shots-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.6rem; align-items: start; }
.shots-row img { border: 1px solid var(--line); border-radius: 3px; }
.shots-row img { width: 100%; height: auto; }
/* Bots telemetry figures are raw lab plots (some white-background): mount them
   on panel "mats" so mixed palettes and heights read as intentional prints. */
.figure-banner { background: var(--panel); border: 1px solid var(--line);
  border-radius: 4px; padding: 0.85rem 0.85rem 0.7rem; }
figcaption { font: 400 0.8rem var(--mono); color: var(--muted); margin-top: 0.45rem; line-height: 1.5; }

.console { background: #081117; border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--mono); margin-top: 1.4rem; }
.console-head { padding: 0.8rem 1.1rem; border-bottom: 1px solid var(--line); color: var(--text); font-size: 0.95rem; }
.prompt { color: var(--cyan); margin-right: 0.15rem; }
.cursor::after { content: '▍'; color: var(--cyan); animation: blink 1.1s steps(1) infinite; margin-left: 0.2rem; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .cursor::after { animation: none; }
  html { scroll-behavior: auto; }
}
.console-foot { padding: 0.55rem 1.1rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.75rem; min-height: 1.9rem;
  display: flex; justify-content: space-between; align-items: baseline; }
.fleet-stats { color: var(--muted); }
.pulse { color: var(--cyan-dim); }
.fleet-sleeping { padding: 1.6rem 1.1rem; color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
.fleet-sleeping span { font-size: 0.82rem; }

/* Region grouping (2026-07-10, once the fleet passed one region): plain
   <details>/<summary>, no JS needed for expand/collapse, and it's free
   keyboard/screen-reader support. widgets.js opens the visitor's
   guessed-nearest region by default and collapses the rest.

   IMPORTANT: display:flex must NOT go directly on <summary> (.srv-region-head),
   because Chrome/Firefox both retain <summary>'s implicit list-item marker box even
   once its display is overridden, which fights a flex layout and left the
   name text floating mid-row instead of flush left (confirmed live 2026-07-11:
   "Lab" and "Sydney" rendered at two different x-offsets instead of both
   starting at the row's left edge). Fix: <summary> stays plain display:block
   (list-style:none suppresses its marker the standards way, not just the
   legacy ::-webkit-details-marker); .srv-region-head-inner is an ordinary
   div with no special browser semantics to fight, so it's the actual flex container. */
.srv-region { border-bottom: 1px solid var(--line); }
.srv-region:last-child { border-bottom: 0; }
.srv-region-head { display: block; list-style: none; cursor: pointer; user-select: none;
  transition: background-color 0.12s ease; }
.srv-region-head::-webkit-details-marker { display: none; }
.srv-region-head:hover { background: color-mix(in srgb, var(--panel) 60%, transparent); }
.srv-region-head-inner { display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.8rem 1.1rem; }
.srv-region-name { font: 600 0.85rem var(--mono); color: var(--text); letter-spacing: 0.02em; }
.srv-region-name::before { content: '▸'; color: var(--cyan-dim); margin-right: 0.65rem;
  display: inline-block; transition: transform 0.15s ease; }
.srv-region[open] > .srv-region-head .srv-region-name::before { transform: rotate(90deg); }
.srv-region-meta { font: 400 0.78rem var(--mono); color: var(--muted); white-space: nowrap; }
.srv-region-head:hover .srv-region-name { color: var(--cyan); }
.srv-region-body .srv:first-child { border-top: 1px solid color-mix(in srgb, var(--line) 55%, transparent); }

/* Region health dot, using the same traffic-light read as the blue/red frag dots
   below, so a collapsed region's status is visible without doing the
   fraction math on "5/7 up". */
.region-dot { display: inline-block; width: 0.5em; height: 0.5em; border-radius: 50%;
  margin-right: 0.5em; vertical-align: middle; }
.region-dot-ok { background: var(--cyan); box-shadow: 0 0 5px color-mix(in srgb, var(--cyan) 65%, transparent); }
.region-dot-warn { background: var(--gold); }
.region-dot-down { background: var(--team-red); }

.srv { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 0.8rem; align-items: baseline;
  padding: 0.85rem 1.1rem; border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent);
  font-size: 0.92rem; transition: background-color 0.12s ease; }
.srv:hover { background: color-mix(in srgb, var(--panel) 45%, transparent); }
/* The wide connect track is applied to every row once ANY server in the
   batch has a connect (widgets.js decides this once per render, not
   per-row). A mix of connect and no-connect UP rows is real production
   shape now that internal-only servers are correctly de-listed from
   public_addr without being hidden entirely. A no-connect row still gets
   this class; it just has nothing to render in the 5th cell.
   The 5th track is a FIXED length, not minmax(16.5rem, auto): each .srv is
   its own independent grid, so an auto-sized track resolves against THAT
   row's own content. A real "sydney.playqwtf.com:PORT + connect button"
   cell measures ~19rem and grows the track, while an empty cell (no
   connect) collapses to the minmax minimum, leaving the row's 1-3 fr
   columns with a different remaining width and visibly misaligned map/pop/
   frags columns row to row (confirmed live 2026-07-10, playqwtf.com). A
   fixed track makes every row's non-fr space identical regardless of
   content, which is what actually keeps columns 1-4 pixel-aligned. Safe
   because the content here is a known, bounded format (a DNS host + fixed
   5-digit port + a constant-text button): 19.5rem comfortably fits the
   longest real value (measured ~19.07rem) with margin. */
.srv-has-join { grid-template-columns: 1.2fr 1fr 1fr auto 19.5rem; }
.srv:last-child { border-bottom: 0; }
.srv-name { color: var(--text); font-weight: 600; }
.srv-map { color: var(--cyan); }
.srv-pop { color: var(--muted); white-space: nowrap; }
.srv-frags { color: var(--text); white-space: nowrap; }
.srv-down .srv-name { color: var(--muted); font-weight: 400; }
.srv-note { color: var(--muted); font-size: 0.82rem; }
.dot { display: inline-block; width: 0.55em; height: 0.55em; border-radius: 50%; margin: 0 0.45em; }
.dot-blue { background: var(--team-blue); }
.dot-red { background: var(--team-red); }

.srv-join { display: inline-flex; gap: 0.55rem; align-items: baseline; }
.srv-addr { font: 400 0.8rem var(--mono); color: var(--muted); background: none;
  border: 1px dashed var(--line); border-radius: 3px; padding: 0.15rem 0.5rem; cursor: copy; }
.srv-addr:hover { color: var(--cyan); border-color: var(--cyan-dim); }
.btn-connect { font: 600 0.8rem var(--mono); color: #14100a; background: var(--gold);
  border-radius: 3px; padding: 0.2rem 0.7rem; }
.btn-connect:hover { text-decoration: none; filter: brightness(1.08); }

/* The five-column desktop row stops being comfortably readable before the
   phone layout takes over. Give the connection controls their own line on
   laptop/tablet widths instead of squeezing population text into a wrap. */
@media (max-width: 1050px) and (min-width: 641px) {
  .srv-has-join { grid-template-columns: 1.2fr 1fr auto auto; }
  .srv-has-join .srv-join { grid-column: 1 / -1; justify-self: end; }
}

.rotation-row { display: flex; gap: 0.7rem; align-items: baseline; margin-top: 0.9rem; flex-wrap: wrap; }
.rot-label { font: 400 0.8rem var(--mono); color: var(--muted); }
.chips { display: inline-flex; gap: 0.45rem; flex-wrap: wrap; }
.chip { font: 400 0.8rem var(--mono); color: var(--muted); border: 1px solid var(--line);
  border-radius: 3px; padding: 0.15rem 0.55rem; }
.chip:hover { color: var(--cyan); border-color: var(--cyan-dim); text-decoration: none; }
.chip-live { color: var(--cyan); border-color: var(--cyan-dim); }

.prose { max-width: 44rem; display: grid; gap: 0.9rem; }

.footer { border-top: 1px solid var(--line); margin-top: 3.5rem; padding-bottom: 3rem; }
.footer-h { font-size: 1.2rem; }
.credits { list-style: none; padding: 0; margin: 1rem 0; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 0.7rem 2rem; font-size: 0.92rem; color: var(--muted); }
.credits strong { color: var(--text); }
.legal { font-size: 0.8rem; color: var(--muted); max-width: 44rem; margin-top: 1rem; }
.eof { font: 400 0.8rem var(--mono); color: var(--cyan-dim); margin-top: 2.2rem; }

@media (max-width: 900px) {
  .steps { gap: 0.5rem; }
  .shots-row { grid-template-columns: 1fr 1fr; }
  .play-grid, .community-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 0.9rem; }
  .tl-item { border-top: 0; border-left: 2px solid var(--line); padding: 0 0 0 0.9rem; }
  .stat-band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .shots-row, .dl-grid, .credits { grid-template-columns: 1fr; }
  .dl-card { grid-template-columns: 1fr auto; }
  .srv { grid-template-columns: 1fr auto; }
  .srv-map { order: 3; } .srv-pop { order: 4; }
  .srv-join { order: 5; grid-column: 1 / -1; }
  .nav { gap: 0.9rem; padding: 0.45rem 1rem; overflow: hidden; }
  .wordmark { font-size: 0.95rem; }
  .nav-links { flex: 1; justify-content: flex-end; gap: 0.8rem; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { flex: 0 0 auto; min-height: 2.75rem; font-size: 0.75rem; }
  .hero { min-height: 64vh; }
  /* three spans (time / fleet-stats / pulse) interleave their wrapped
     fragments under space-between at phone widths, so stack them instead */
  .console-foot { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
}

.qwtf-live-card { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin: 1.2rem 0 0.6rem; padding: 1rem 1.2rem; background: var(--panel);
  border: 1px solid var(--line); border-radius: 4px;
  transition: transform 120ms ease, border-color 120ms ease; }
.qwtf-live-card:hover { transform: translateY(-2px); border-color: var(--cyan-dim); }
.qwtf-live-activity { font: 400 0.85rem var(--mono); color: var(--muted); }

.matches-list { display: grid; gap: 0.4rem; margin: 0.8rem 0; max-height: 26rem; overflow-y: auto; }
.match-row { display: grid; grid-template-columns: 5.5rem 1fr auto; gap: 0.8rem;
  font: 400 0.85rem var(--mono); color: var(--muted); padding: 0.5rem 0.7rem;
  background: var(--panel); border: 1px solid var(--line); border-radius: 4px;
  transition: border-color 120ms ease, transform 120ms ease; }
.match-row:hover { border-color: var(--cyan-dim); transform: translateX(2px); text-decoration: none; }
.match-map { color: var(--cyan-dim); }
.match-score { color: var(--text); }
.matches-more { display: block; width: 100%; font: 400 0.8rem var(--mono); color: var(--muted);
  background: none; border: 1px dashed var(--line); border-radius: 4px; padding: 0.5rem;
  cursor: pointer; margin-bottom: 0.7rem; }
.matches-more[hidden] { display: none; }
.matches-more:hover { color: var(--cyan); border-color: var(--cyan-dim); }
.matches-link { display: inline-block; font-size: 0.85rem; margin-bottom: 1.2rem; }

.own-discord-note { font: 400 0.85rem var(--mono); color: var(--muted); margin-top: 1.6rem; }
.btn-small { font-size: 0.8rem; padding: 0.5rem 0.9rem; margin-left: 0.4rem; }

@media (max-width: 640px) {
  .match-row { grid-template-columns: 1fr; gap: 0.15rem; }
  .qwtf-live-card { flex-direction: column; align-items: flex-start; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  /* Narrow viewports: a snap-scrolling flick row reads better than a tall
     stack, but never as a visible OS scrollbar; hidden here, motion instead. */
  .watch-grid { grid-template-columns: none; grid-auto-flow: column;
    grid-auto-columns: 85%; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none; }
  .watch-grid::-webkit-scrollbar { display: none; }
  .watch-card { scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}

/* 2026 relaunch: proof-first product story, same QWTF signal language. */
body {
  background:
    radial-gradient(circle at 15% 12%, rgba(46,159,163,0.07), transparent 28rem),
    radial-gradient(circle at 90% 28%, rgba(217,169,78,0.045), transparent 30rem),
    var(--ink);
}
main { overflow: clip; }

.nav { min-height: 4rem; padding-block: 0.35rem; box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
.wordmark { display: inline-flex; align-items: center; gap: 0.45rem; }
.wordmark-mark { color: var(--gold); letter-spacing: -0.22em; transform: translateX(-0.08em); }
.nav-links a { position: relative; padding-inline: 0.15rem; }
.nav-links a::after { content: ''; position: absolute; left: 0.15rem; right: 0.15rem; bottom: 0.2rem;
  height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform 160ms ease; }
.nav-links a:hover::after, .nav-links a[aria-current="true"]::after { transform: scaleX(1); }
.nav-links a[aria-current="true"] { color: var(--text); }
.nav-links .nav-play { color: var(--gold); }
.nav-links .nav-play::after { background: var(--gold); }
.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transform: scaleX(0); transform-origin: left; will-change: transform; }

.hero { min-height: min(54rem, calc(100svh - 4rem)); position: relative; isolation: isolate;
  background:
    linear-gradient(90deg, rgba(10,20,24,0.98) 0%, rgba(10,20,24,0.90) 48%, rgba(10,20,24,0.62) 100%),
    linear-gradient(180deg, rgba(10,20,24,0.12), var(--ink) 100%),
    url('/assets/gen/hero.jpg') center / cover no-repeat var(--ink); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0.18;
  background-image: linear-gradient(rgba(70,230,230,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70,230,230,0.08) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero-inner { max-width: 1220px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(27rem, 1.08fr);
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; padding: 4.5rem 1.5rem 5.5rem; text-align: left; }
.hero-inner .lede { margin-inline: 0; }
.hero-inner .cta-row { justify-content: flex-start; }
.hero-copy { min-width: 0; }
.hero h1 { font-size: clamp(3.25rem, 6.4vw, 5.8rem); line-height: 0.9; margin: 0.8rem 0 1rem;
  letter-spacing:-.055em; text-wrap:balance; }
.hero h1 span { color: var(--gold); }
.hero-thesis { margin:0 0 1.35rem; font:600 clamp(1rem,1.45vw,1.25rem) var(--mono);
  color:var(--cyan); letter-spacing:-.02em; }
.hero .lede { max-width: 36rem; font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.65; color: #d7e7e9; }
.hero .cta-row { margin-top: 2rem; }
.hero .btn { min-height: 3.25rem; display: inline-flex; align-items: center; justify-content: center; }
.hero-watch-shortcut { display:none!important; }
.btn-watch { gap: 0.55rem; }
.hero-note { letter-spacing: 0.01em; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 40rem;
  border-top: 1px solid rgba(126,149,155,0.25); margin-top: 2.2rem; padding-top: 1rem; }
.hero-stat { display: grid; gap: 0.05rem; padding-right: 1rem; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(126,149,155,0.2); padding-left: 1rem; }
.hero-stat strong { font: 600 1.25rem var(--mono); color: var(--text); }
.hero-stat span { font: 400 0.69rem/1.4 var(--mono); color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.04em; }

.hero-actions { min-width:0; display:grid; grid-template-rows:minmax(22rem,1fr) minmax(9.5rem,.42fr);
  gap:.8rem; }
.hero-visual { min-width: 0; min-height:22rem; position: relative; display: block; overflow: hidden;
  border: 1px solid rgba(70,230,230,0.28); border-radius: 8px; color: var(--text);
  background: var(--panel); box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(70,230,230,0.05);
  transition: transform 220ms ease, border-color 220ms ease; }
.hero-visual:hover { transform: translateY(-3px); border-color: rgba(217,169,78,0.65);
  text-decoration: none; }
.hero-visual img { position:absolute; inset:0; width: 100%; height:100%; object-fit:cover; }
.hero-visual-shade { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,17,23,0.05) 35%, rgba(8,17,23,0.94) 100%); }
.hero-live { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.6rem; border: 1px solid rgba(70,230,230,0.45); border-radius: 3px;
  background: rgba(8,17,23,0.82); backdrop-filter: blur(6px);
  font: 600 0.7rem var(--mono); color: var(--cyan); text-transform: uppercase; letter-spacing: 0.04em; }
.hero-live i { width: 0.48rem; height: 0.48rem; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan); animation: live-pulse 1.8s ease-in-out infinite; }
.hero-visual-copy { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.1rem; display: grid; gap: 0.15rem; }
.hero-visual-copy small { font: 600 0.7rem var(--mono); color: var(--gold); letter-spacing: 0.06em; }
.hero-visual-copy strong { font: 600 clamp(1.1rem, 2vw, 1.45rem) var(--mono); }
.hero-visual-copy > span { font: 400 0.8rem var(--mono); color: var(--muted); }
.hero-card-index { position:absolute; top:.75rem; right:.9rem; z-index:1;
  font:600 .68rem var(--mono); color:rgba(207,224,226,.48); letter-spacing:.08em; }
.hero-watch-card { min-width:0; min-height:9.5rem; position:relative; display:block;
  overflow:hidden; border:1px solid rgba(126,149,155,.22); border-radius:8px;
  color:var(--text); background:var(--panel); transition:transform 220ms ease,border-color 220ms ease; }
.hero-watch-card:hover { transform:translateY(-3px); border-color:rgba(70,230,230,.55);
  text-decoration:none; }
.hero-watch-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:center 42%; filter:saturate(.82); }
.hero-watch-shade { position:absolute; inset:0; background:
  linear-gradient(90deg,rgba(8,17,23,.96) 0%,rgba(8,17,23,.78) 58%,rgba(8,17,23,.28) 100%); }
.hero-watch-copy { position:absolute; z-index:1; left:1.2rem; right:3rem; top:50%;
  transform:translateY(-50%); display:grid; gap:.16rem; }
.hero-watch-copy small { font:600 .68rem var(--mono); color:var(--cyan); letter-spacing:.06em; }
.hero-watch-copy strong { font:600 clamp(1rem,1.8vw,1.3rem) var(--mono); }
.hero-watch-copy > span { font:400 .76rem var(--mono); color:var(--muted); }
@keyframes live-pulse { 50% { opacity: 0.45; box-shadow: 0 0 4px var(--cyan); } }

.section { max-width: 1180px; padding-top: clamp(5rem, 8vw, 7.5rem); position: relative;
  scroll-margin-top: 5rem; }
.section::before { content: ''; position: absolute; left: 1.5rem; right: 1.5rem; top: 2.25rem;
  height: 1px; background: linear-gradient(90deg, var(--line), transparent 86%); }
.section-heading { max-width: 48rem; margin-bottom: 2rem; }
.section-heading h2 { margin-bottom: 0.8rem; }
.section-heading-split { max-width: none; display: grid; grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
  gap: clamp(2rem, 7vw, 6rem); align-items: end; }
.section-intro { color: var(--muted); max-width: 44rem; }
div.section-intro { display: grid; gap: 0.85rem; }
.section h2 { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -0.035em; }
.section h3 { font: 600 1.15rem/1.25 var(--mono); color: var(--text); }

.experience-chips { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.experience-chips span { padding: 0.22rem 0.55rem; border: 1px solid var(--line); border-radius: 999px;
  font: 400 0.7rem var(--mono); color: var(--cyan-dim); }
.watch-hero { margin-top: 2rem; padding: 0.7rem; border: 1px solid var(--line); border-radius: 9px;
  background: rgba(15,29,35,0.72); box-shadow: 0 28px 60px rgba(0,0,0,0.24); }
.watch-hero-frame { border-radius: 5px; border-color: rgba(70,230,230,0.2); }
.watch-caption { padding: 0.3rem 0.35rem 0.1rem; }
.watch-library-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-top: 3rem; }
.watch-library-head h3 { font-size: 1.35rem; margin-top: 0.25rem; }
.watch-library-head > p { max-width: 31rem; color: var(--muted); font-size: 0.92rem; }
.watch-library-tools { display: grid; grid-template-columns: minmax(14rem, 1fr) auto auto;
  gap: 0.65rem; align-items: center; margin-top: 1.15rem; padding: 0.65rem;
  border: 1px solid var(--line); border-radius: 5px; background: rgba(7,17,22,0.68); }
.watch-search { min-width: 0; display: flex; align-items: center; gap: 0.55rem; padding: 0 0.7rem;
  min-height: 2.4rem; border: 1px solid var(--line); border-radius: 3px; color: var(--cyan); }
.watch-search:focus-within { border-color: var(--cyan-dim); }
.watch-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent;
  color: var(--text); font: 400 0.78rem var(--mono); }
.watch-search input::placeholder { color: var(--muted); opacity: 0.8; }
.watch-sort-label { display: flex; align-items: center; gap: 0.5rem; min-height: 2.4rem;
  padding: 0 0.65rem; border: 1px solid var(--line); border-radius: 3px;
  font: 400 0.7rem var(--mono); color: var(--muted); }
.watch-sort-label select { border: 0; outline: 0; background: var(--ink); color: var(--text);
  font: 400 0.75rem var(--mono); cursor: pointer; }
.watch-random { min-height: 2.4rem; padding: 0 0.8rem; border: 1px solid var(--cyan-dim);
  border-radius: 3px; background: rgba(70,230,230,0.04); color: var(--cyan);
  font: 600 0.75rem var(--mono); cursor: pointer; white-space: nowrap; }
.watch-random:hover { border-color: var(--cyan); background: rgba(70,230,230,0.08); }
.watch-results { grid-column: 1 / -1; padding-inline: 0.15rem; font: 400 0.66rem var(--mono);
  color: var(--cyan-dim); text-align: right; }
.watch-archive-expand { margin-top: .8rem; min-height: 3rem; color: var(--cyan);
  border-color: var(--cyan-dim); background: rgba(70,230,230,.035); font-weight: 600; }
.watch-archive-expand:hover { background: rgba(70,230,230,.075); }
.watch-grid { grid-template-columns: repeat(3, 1fr); }
.watch-card { border-radius: 6px; background: linear-gradient(180deg, var(--panel), #0c1a20); }
.watch-card-body { border-top: 1px solid rgba(70,230,230,0.06); padding:.75rem;
  gap:.65rem; }
.watch-card .watch-play-btn { min-height: 2.6rem; padding:.5rem .7rem; color:var(--text);
  background:rgba(70,230,230,.025); }
.watch-card-live .watch-play-btn { color: var(--gold); border-color: rgba(217,169,78,0.45); }
.watch-card .watch-thumb-static { padding:.65rem .75rem; }
.watch-card .watch-thumb-static::before { background:
  linear-gradient(180deg,rgba(10,20,24,.18) 0%,rgba(10,20,24,.05) 35%,rgba(10,20,24,.92) 100%); }
.watch-card .watch-badge-row { justify-content:flex-end; min-height:1.4rem; }
.watch-card .watch-views { font-size:.62rem; padding:.12rem .35rem; color:var(--muted);
  border-color:rgba(126,149,155,.25); background:rgba(8,17,23,.72); }
.watch-card .watch-thumb-mid { align-content:end; justify-items:start; place-items:unset;
  padding-bottom:.2rem; }
.watch-card .watch-map-big { font-size:1.35rem; line-height:1; }
.watch-card .watch-score-big { font-size:.78rem; color:var(--muted); margin-top:.38rem; }
.watch-card .watch-thumb-foot { font-size:.61rem; letter-spacing:.045em; color:rgba(207,224,226,.64); }
.watch-card-facts { display:flex; flex-wrap:wrap; gap:.4rem 1rem; min-height:2.25rem;
  align-items:start; }
.watch-card-facts span { display:grid; grid-template-columns:auto 1fr; align-items:baseline;
  column-gap:.28rem; font:400 .7rem var(--mono); color:var(--muted); }
.watch-card-facts small { grid-column:1/-1; font:400 .54rem var(--mono);
  letter-spacing:.08em; color:var(--cyan-dim); }
.watch-card-facts b { color:var(--gold); font-weight:600; }
.watch-card .pick-actions { padding-top:.15rem; gap:.6rem; font-size:.64rem; }
.watch-card .pick-actions > span { margin-right:auto; color:rgba(126,149,155,.55);
  text-transform:uppercase; letter-spacing:.06em; }
.watch-card .pick-copy, .watch-card .pick-dl { font-size:.65rem; color:var(--muted); }
.watch-no-results { grid-column: 1 / -1; padding: 3rem 1rem; text-align: center; }
.conversion-bar { display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  margin-top: 2rem; padding: 1.2rem 1.3rem; border: 1px solid rgba(217,169,78,0.32); border-radius: 6px;
  background: linear-gradient(90deg, rgba(217,169,78,0.10), rgba(15,29,35,0.7)); }
.conversion-bar > div { display: grid; }
.conversion-kicker { font: 400 0.72rem var(--mono); color: var(--gold); text-transform: uppercase; }
.conversion-bar strong { font: 600 1rem var(--mono); }

.play-layout { display: grid; grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.steps { margin: 0; gap: 0.7rem; }
.steps li { align-items: stretch; gap: 1rem; padding: 1rem; border: 1px solid var(--line);
  border-radius: 5px; background: rgba(15,29,35,0.64); }
.steps li::before { min-width: 1.7rem; }
.steps li > span { display: grid; gap: 0.16rem; }
.steps strong { font: 600 0.95rem var(--mono); color: var(--text); }
.steps small { font: 400 0.9rem/1.5 var(--sans); color: var(--muted); }
.live-proof { display: inline-flex; align-items: center; gap: 0.5rem; font: 600 0.82rem var(--mono);
  color: var(--cyan); }
.live-proof span { font-size: 0.65rem; text-shadow: 0 0 10px var(--cyan); }
.download-panel { min-width: 0; }
.download-panel .dl-grid { margin-top: 0; }
.dl-card { min-height: 8.5rem; transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.dl-card:hover { transform: translateY(-2px); }
.dl-action { display: inline-flex; align-items: center; min-height: 2.1rem; padding: 0 0.65rem;
  border: 1px solid var(--cyan-dim); border-radius: 3px; }
.dl-meter { max-width: none; }

.feature-section .section-heading { max-width: 50rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.feature-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 7px;
  background: rgba(15,29,35,0.76); transition: border-color 180ms ease, transform 180ms ease; }
.feature-card:hover { border-color: var(--cyan-dim); transform: translateY(-3px); }
.feature-card img { width: 100%; height: auto; border-bottom: 1px solid var(--line); }
.feature-copy { padding: 1.2rem 1.25rem 1.35rem; }
.feature-copy h3 { margin: 0.35rem 0 0.55rem; }
.feature-copy > p:last-child { color: var(--muted); font-size: 0.93rem; }
.feature-wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: center; }
.feature-wide img { border-bottom: 0; border-right: 1px solid var(--line); }

.console { overflow: hidden; box-shadow: 0 22px 50px rgba(0,0,0,0.2); }
.console-head { color: var(--cyan); background: rgba(70,230,230,0.025); }
.bots-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
  gap: clamp(2.5rem, 8vw, 7rem); align-items: end; }
.bots-layout .prose { margin-top: 1.35rem; }
.bot-status-grid { display: grid; gap: 0.65rem; }
.bot-status-grid > div { display: grid; gap: 0.2rem; padding: 1rem 1.1rem; border-left: 2px solid var(--cyan-dim);
  background: linear-gradient(90deg, rgba(46,159,163,0.09), transparent); }
.bot-status-grid span { font: 400 0.68rem var(--mono); color: var(--cyan-dim); text-transform: uppercase; }
.bot-status-grid strong { font: 600 0.9rem var(--mono); color: var(--text); }
.bots-section .figure-banner { margin-top: 2.5rem; padding: 0; overflow: hidden; border-radius: 7px; }
.bot-carousel-stage { position: relative; background: #071116; }
.bot-slide { position: relative; }
.bot-slide[hidden] { display: none; }
.bot-slide img { width: 100%; height: auto; border: 0; }
.bot-slide::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(4, 12, 15, 0.92), rgba(4, 12, 15, 0.05) 58%, rgba(4, 12, 15, 0.15)); }
.bot-slide-copy { position: absolute; z-index: 1; left: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 1.7rem); max-width: 47rem; }
.bot-slide-copy > span { display: block; font: 400 0.7rem var(--mono); color: var(--cyan); letter-spacing: 0.07em; text-transform: uppercase; }
.bot-slide-copy h3 { margin: 0.2rem 0 0.25rem; font: 600 clamp(1.15rem, 2.4vw, 1.7rem) var(--mono); color: var(--text); }
.bot-slide-copy p { margin: 0; font: 400 clamp(0.76rem, 1.4vw, 0.9rem)/1.5 var(--mono); color: #b2c9cc; }
.bot-carousel-controls { display: flex; min-height: 3.45rem; align-items: center; gap: 0.6rem; padding: 0.55rem 0.75rem; border-top: 1px solid var(--line); background: rgba(7,17,22,0.96); }
.bot-carousel-arrow, .bot-carousel-pause, .bot-carousel-dots button { font: 400 0.8rem var(--mono); color: var(--muted); background: none; border: 1px solid var(--line); cursor: pointer; }
.bot-carousel-arrow { width: 2rem; height: 2rem; border-radius: 3px; color: var(--cyan); font-size: 1rem; }
.bot-carousel-arrow:hover, .bot-carousel-pause:hover { border-color: var(--cyan-dim); color: var(--text); }
.bot-carousel-dots { display: flex; align-items: center; gap: 0.42rem; }
.bot-carousel-dots button { width: 0.7rem; height: 0.7rem; border-radius: 50%; padding: 0; }
.bot-carousel-dots button[aria-selected="true"] { background: var(--gold); border-color: var(--gold); }
.bot-carousel-pause { margin-left: auto; border-radius: 3px; padding: 0.38rem 0.6rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.community-lead { max-width: 53rem; margin-inline: auto; text-align: center; }
.community-lead .prose { max-width: 49rem; margin: 1.25rem auto 0; }
.community-lead h2 { margin-top: 0.6rem; }
.timeline { margin-top: 3rem; }
.tl-item { position: relative; }
.tl-item::before { content: ''; position: absolute; width: 0.55rem; height: 0.55rem; border-radius: 50%;
  top: -0.36rem; left: 0; background: var(--gold); box-shadow: 0 0 0 4px var(--ink); }
.stat-band { margin-top: 2.5rem; }
.stat { border-radius: 6px; background: linear-gradient(145deg, rgba(15,29,35,0.95), rgba(15,29,35,0.55)); }
.community-grid { margin-top: 3rem; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem; }
.community-join, .recent-panel { border: 1px solid var(--line); border-radius: 7px;
  padding: 1.4rem; background: rgba(15,29,35,0.6); }
.community-join h3 { font-size: 1.3rem; margin: 0.35rem 0 0.9rem; }
.community-join .qwtf-live-card { padding: 0; border: 0; background: none; }
.community-join .own-discord-note { line-height: 1.7; }
.play-times { margin: 1.25rem 0; border-block: 1px solid var(--line); padding: 1rem 0 0.85rem; }
.play-times-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem;
  margin-bottom: 0.65rem; }
.play-times-head h4 { margin: 0.18rem 0 0; font: 700 1rem var(--mono); color: var(--text); }
.play-times-kicker { font: 400 0.62rem var(--mono); color: var(--cyan); text-transform: uppercase;
  letter-spacing: 0.1em; }
.play-times-live { font: 400 0.6rem var(--mono); color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; white-space: nowrap; }
.play-times-live i { display: inline-block; width: 0.38rem; height: 0.38rem; margin-right: 0.35rem;
  border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px rgba(70,230,230,0.65); }
.play-time { display: grid; grid-template-columns: minmax(5.8rem, 0.75fr) auto minmax(4.5rem, 0.65fr);
  align-items: baseline; gap: 0.6rem; padding: 0.5rem 0; border-top: 1px solid rgba(70,230,230,0.08);
  font: 400 0.75rem var(--mono); }
.play-time-region { color: var(--text); font-weight: 700; }
.play-time strong { color: var(--gold); font-size: 0.8rem; white-space: nowrap; }
.play-time > span:nth-of-type(2) { color: var(--muted); }
.play-time-local { grid-column: 1 / -1; color: var(--cyan-dim); font: 400 0.63rem var(--mono); }
.play-time-local:empty { display: none; }
.play-times-note { margin: 0.55rem 0 0; color: var(--muted); font-size: 0.68rem; line-height: 1.55; }
.recent-panel-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.recent-panel-head h3 { margin-top: 0.35rem; }
.recent-panel .matches-list { max-height: 24rem; }
.recent-panel .matches-link { margin: 0; }

.final-cta { margin-top: 6rem; padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(217,169,78,0.48); border-radius: 10px;
  background:
    radial-gradient(circle at 88% 0%, rgba(70,230,230,0.09), transparent 33%),
    linear-gradient(120deg, rgba(217,169,78,0.12), rgba(15,29,35,0.96) 46%),
    var(--panel); overflow: hidden; }
.final-cta::before { inset: 0; height: auto; opacity: 0.12;
  background-image: linear-gradient(rgba(217,169,78,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,169,78,0.2) 1px, transparent 1px);
  background-size: 42px 42px; }
.final-cta > * { position: relative; }
.final-cta-head { display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: end; gap: 2rem; }
.final-cta h2 { max-width: 15ch; margin-top: 0.45rem;
  font-size: clamp(2.3rem, 5.5vw, 4.5rem); line-height: 1.02; }
.final-cta-head > div:first-child > p:last-child { max-width: 42rem; color: var(--muted); }
.final-readiness { display: grid; gap: 0.35rem; min-width: 13.5rem; padding: 0.9rem 1rem;
  border: 1px solid var(--line); border-radius: 5px; background: rgba(10,20,24,0.72);
  font: 400 0.68rem var(--mono); color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em; }
.final-readiness span:first-child { color: var(--cyan); }
.final-readiness i { display: inline-block; width: 0.45rem; height: 0.45rem; margin-right: 0.45rem;
  border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(70,230,230,0.09);
  animation: live-pulse 1.8s ease-in-out infinite; }
.deployment-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 0.8rem;
  margin-top: 2.6rem; }
.deployment-card { min-height: 18.5rem; display: flex; flex-direction: column; align-items: flex-start;
  padding: 1.5rem; border: 1px solid var(--line); border-radius: 7px;
  background: rgba(10,20,24,0.76); color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
    box-shadow 180ms ease; }
a.deployment-card:hover { transform: translateY(-4px); border-color: var(--cyan-dim);
  background: #12232a; box-shadow: 0 14px 30px -18px rgba(0,0,0,0.9); text-decoration: none; }
.deployment-card-primary { background: linear-gradient(145deg, #e3b452, var(--gold));
  border-color: var(--gold); color: #14100a; }
a.deployment-card-primary:hover { border-color: #f1ca74;
  background: linear-gradient(145deg, #efc467, #dca946); }
.deployment-kicker { font: 600 0.66rem var(--mono); color: var(--cyan-dim);
  text-transform: uppercase; letter-spacing: 0.08em; }
.deployment-card-primary .deployment-kicker { color: rgba(20,16,10,0.68); }
.deployment-card h3 { margin: 1.1rem 0 0.55rem; font: 600 clamp(1.45rem, 3vw, 2rem)/1.08 var(--mono); }
.deployment-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.55; }
.deployment-card-primary p { color: rgba(20,16,10,0.76); }
.deployment-action { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  width: 100%; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line);
  font: 600 0.83rem var(--mono); color: var(--cyan); }
a.deployment-action:hover { color: var(--gold); text-decoration: none; }
.deployment-action b { font-size: 1.15rem; transition: transform 180ms ease; }
a.deployment-card:hover .deployment-action b { transform: translateX(0.2rem); }
.deployment-card-primary .deployment-action { color: #14100a; border-color: rgba(20,16,10,0.25); }
.deployment-note { margin-top: 0.5rem; font: 400 0.65rem var(--mono); }
.final-afterline { display: flex; justify-content: flex-end; gap: 0.7rem; margin-top: 1.1rem;
  font: 400 0.74rem var(--mono); color: var(--muted); }
.final-afterline a { font-weight: 600; }

.site-footer { margin-top: clamp(5rem, 9vw, 8rem); border-top: 1px solid var(--line);
  background: #071014; }
.footer-rally { max-width: 1180px; margin: 0 auto; min-height: 5rem; padding: 0 1.5rem;
  display: grid; grid-template-columns: auto minmax(2rem, 1fr) auto minmax(2rem, 1fr) auto;
  align-items: center; gap: 1rem; font: 400 clamp(0.68rem, 1.4vw, 0.82rem) var(--mono);
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-rally strong { color: var(--gold); }
.footer-rally i { height: 1px; background: linear-gradient(90deg, var(--line), var(--cyan-dim), var(--line)); }
.footer { display: grid; grid-template-columns: minmax(13rem, 1.15fr) repeat(3, minmax(10rem, 1fr));
  gap: 2rem; padding-top: 3rem; padding-bottom: 3rem; border-top: 1px solid var(--line); }
.footer::before { display: none; }
.footer-brand { padding-right: 1.5rem; }
.footer-wordmark { font: 600 1.2rem var(--mono); color: var(--text); }
.footer-wordmark span { color: var(--gold); }
.footer-wordmark:hover { color: var(--cyan); text-decoration: none; }
.footer-brand p { margin-top: 0.8rem; color: var(--muted); font-size: 0.95rem; }
.footer h2 { margin: 0 0 0.9rem; font: 600 0.7rem var(--mono); color: var(--cyan-dim);
  text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0.45rem; }
.footer-links a { font-size: 0.85rem; color: var(--text); }
.footer-links a:hover { color: var(--cyan); }
.footer-foundation p { margin-bottom: 0.45rem; color: var(--muted); font-size: 0.77rem; line-height: 1.5; }
.footer-foundation strong { color: var(--text); }
.footer-floor { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr minmax(18rem, 1.5fr) auto;
  align-items: end; gap: 2rem; margin-top: 1.2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.footer-thanks { max-width: 30rem; color: var(--text); font-size: 0.78rem; }
.footer .legal { color: var(--muted); font-size: 0.68rem; line-height: 1.55; }
.footer .eof { font: 400 0.72rem var(--mono); color: var(--cyan-dim); white-space: nowrap; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-top: 4.5rem; }
  .hero-copy { max-width: 44rem; }
  .hero-actions { width:100%; max-width:44rem; grid-template-rows:minmax(21rem,1fr) minmax(9rem,.4fr); }
  .hero-visual { max-width: none; }
  .section-heading-split, .play-layout, .bots-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading-split { align-items: start; }
  .feature-wide { grid-template-columns: 1fr; }
  .feature-wide img { border-right: 0; border-bottom: 1px solid var(--line); }
  .community-grid { grid-template-columns: 1fr; }
  .final-cta { margin-inline: 1rem; }
  .final-cta-head { grid-template-columns: 1fr; }
  .final-readiness { grid-template-columns: repeat(3, auto); min-width: 0; justify-content: start;
    gap: 0.7rem 1.2rem; }
  .deployment-grid { grid-template-columns: 1fr 1fr; }
  .deployment-card-primary { grid-column: 1 / -1; min-height: 15rem; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 0.5rem; }
  .footer-floor { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 0.8rem; }
}

@media (max-width: 640px) {
  .nav { padding-inline: 0.85rem; }
  .wordmark { font-size: 0.85rem; }
  .wordmark-mark { display: none; }
  .nav-links { gap: 0.7rem; }
  .nav-links a { font-size: 0.7rem; }
  .hero-inner { padding: 3.5rem 1rem 4.5rem; gap: 2.5rem; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 3.5rem); }
  .hero-thesis { font-size:.95rem; }
  .hero .lede { font-size: 1rem; }
  .hero .cta-row { align-items: stretch; }
  .hero .btn { flex: 1 1 100%; }
  .hero-watch-shortcut { display:inline-flex!important; }
  .hero-stats { gap: 0; }
  .hero-stat { padding-right: 0.55rem; }
  .hero-stat + .hero-stat { padding-left: 0.55rem; }
  .hero-stat strong { font-size: 0.95rem; }
  .hero-stat span { font-size: 0.58rem; }
  .hero-visual-copy > span { display: none; }
  .hero-actions { grid-template-rows:minmax(18rem,1fr) minmax(8.5rem,.45fr); }
  .hero-watch-copy { left:1rem; right:2.5rem; }
  .hero-watch-copy > span { display:none; }
  .section { padding-inline: 1rem; }
  .section::before { left: 1rem; right: 1rem; }
  .section h2 { font-size: clamp(1.9rem, 10vw, 2.65rem); }
  .watch-hero { padding: 0.35rem; }
  .watch-caption { padding-inline: 0.2rem; }
  .watch-library-head, .conversion-bar { align-items: flex-start; flex-direction: column; }
  .watch-library-head > p { font-size: 0.85rem; }
  .watch-library-tools { grid-template-columns: 1fr; }
  .watch-sort-label { justify-content: space-between; }
  .watch-random { width: 100%; }
  .watch-results { grid-column: 1; text-align: left; }
  .watch-grid { grid-template-columns: none; }
  .conversion-bar .btn { width: 100%; text-align: center; }
  .dl-card { min-height: 7.5rem; padding: 1rem; }
  .dl-action { border: 0; padding: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; }
  .bot-status-grid { margin-top: 0.5rem; }
  .bot-slide-copy { bottom: 0.8rem; }
  .bot-slide-copy p { display: none; }
  .bot-carousel-controls { gap: 0.4rem; }
  .bot-carousel-pause { font-size: 0.72rem; }
  .timeline { margin-top: 2rem; }
  .tl-item::before { top: 0.25rem; left: -0.34rem; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .community-join, .recent-panel { padding: 1rem; }
  .play-times-head { align-items: start; }
  .play-time { grid-template-columns: minmax(5.5rem, 1fr) auto minmax(4rem, 0.7fr); gap: 0.45rem; }
  .final-cta { margin-top: 4.5rem; padding: 2rem 1.25rem; }
  .final-cta h2 { font-size: clamp(2.45rem, 13vw, 3.6rem); }
  .final-readiness { grid-template-columns: 1fr; }
  .deployment-grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .deployment-card-primary { grid-column: auto; }
  .deployment-card { min-height: 15.5rem; }
  .final-afterline { justify-content: flex-start; flex-wrap: wrap; }
  .footer-rally { min-height: 4rem; grid-template-columns: auto 1fr auto; padding-inline: 1rem; }
  .footer-rally i:last-of-type, .footer-rally span:last-child { display: none; }
  .footer { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; padding-bottom: 2rem; }
  .footer > * { min-width: 0; }
  .footer h2 { font-size: 0.7rem; }
  .footer-foundation { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-live i { animation: none; }
  .hero-visual, .feature-card, .dl-card, .nav-links a::after,
  .deployment-card, .deployment-action b { transition: none; }
  .final-readiness i { animation: none; }
}

/* -- Browser-play section: the strongest CTA on the page (2026-07-11 spec:
   browser-play-public-cta). Mirrors the play-layout grid; the launch panel
   is deliberately the loudest single element below the hero. */
.browser-play-layout { display: grid; grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: 2.4rem; align-items: center; }
.browser-play-layout .steps { margin: 0; gap: 0.7rem; }
.launch-kicker { margin: 0; font: 600 0.72rem var(--mono); letter-spacing: 0.22em;
  color: var(--cyan-dim); }
.launch-kicker #launch-status { color: var(--cyan); font-weight: 600; letter-spacing: normal;
  text-transform: none; }
.launch-fineprint { margin: 0.2rem 0 0; font-size: 0.78rem; color: var(--muted, #7E959B); }

/* The embedded arena window itself (operator: "have the window there
   instead of the big yellow button... click theatre expand and it lets
   them go a bit bigger on frame or full screen"). Same visual grammar as
   the watch theatre's hero frame (aspect-ratio 16/9, bordered dark panel):
   one player, one look, everywhere it appears. */
.arena-wrap { display: grid; gap: 0.6rem; min-width: 0; }
.arena-toolbar { display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.8rem; flex-wrap: wrap; }
/* :not([hidden]), not a bare class rule: an author "display:flex" rule
   otherwise beats the browser's native [hidden]{display:none} at equal
   specificity (confirmed live 2026-07-11: the buttons rendered before the
   arena was even loaded), silently defeating the hidden attribute. */
.arena-controls:not([hidden]) { display: flex; gap: 0.5rem; }
.arena-controls button { font: 600 0.72rem var(--mono); color: var(--muted);
  background: var(--panel); border: 1px solid var(--line); border-radius: 3px;
  padding: 0.3rem 0.65rem; cursor: pointer; transition: color 0.15s ease, border-color 0.15s ease; }
.arena-controls button:hover { color: var(--cyan); border-color: var(--cyan-dim); }

.arena-frame { position: relative; aspect-ratio: 16/9; background: var(--ink);
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  box-shadow: 0 0 0 1px transparent; transition: box-shadow 0.2s ease; }
.arena-frame:has(.arena-poster:hover) { box-shadow: 0 0 0 1px var(--cyan-dim); }
.arena-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
/* "Bigger frame" mode: grow the frame and let it reclaim the steps column,
   short of true Fullscreen. The middle ground the operator asked for. */
.browser-play-layout:has(.arena-wrap.expanded) { grid-template-columns: 1fr; }
.browser-play-layout:has(.arena-wrap.expanded) .steps { display: none; }
.arena-wrap.expanded .arena-frame { aspect-ratio: auto; height: min(76vh, 44rem); }

.arena-poster { position: relative; width: 100%; height: 100%; display: block;
  padding: 0; margin: 0; border: 0; cursor: pointer; background: var(--ink); overflow: hidden; }
.arena-poster img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.55) saturate(0.9); }
.arena-poster:hover img { transform: scale(1.03); filter: brightness(0.65) saturate(1); }
.arena-poster-shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(10,20,24,0.35) 0%, rgba(10,20,24,0.12) 45%, rgba(10,20,24,0.92) 100%); }
.arena-play-glyph { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 4.2rem; height: 4.2rem; display: grid; place-items: center; border-radius: 50%;
  background: rgba(217,169,78,0.16); border: 1px solid rgba(217,169,78,0.55);
  color: var(--gold); font-size: 1.5rem; backdrop-filter: blur(2px);
  transition: transform 0.2s ease, background 0.2s ease; }
.arena-poster:hover .arena-play-glyph { transform: translate(-50%, -60%) scale(1.08);
  background: rgba(217,169,78,0.28); }
.arena-poster-copy { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1rem;
  display: grid; gap: 0.15rem; text-align: left; }
.arena-poster-copy strong { font: 600 1.1rem var(--mono); color: var(--text);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.arena-poster-copy span { font: 400 0.82rem var(--mono); color: var(--gold);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7); }

@media (max-width: 860px) {
  .browser-play-layout { grid-template-columns: 1fr; gap: 1.6rem; }
  .arena-wrap.expanded .arena-frame { height: min(70vh, 32rem); }
}

/* 2026-07-26 homepage refresh: make the front page a fast product doorway.
   The full feature depth remains in the client, theatre, guide and archive;
   the homepage now prioritises one action and compact, inspectable proof. */
.hero {
  min-height: auto;
}
.hero-inner {
  padding-block: clamp(3.5rem, 6vw, 5rem);
}
.hero-actions {
  grid-template-rows: minmax(19rem, 1fr) minmax(7.5rem, .36fr);
}
.section {
  padding-top: clamp(4rem, 6vw, 5.5rem);
}
.section::before {
  top: 1.75rem;
}
.section-heading {
  margin-bottom: 1.4rem;
}
.play-layout-compact {
  display: block;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(15,29,35,.58);
}
.proof-strip > div {
  min-width: 0;
  display: grid;
  gap: .25rem;
  padding: 1.1rem;
}
.proof-strip > div + div {
  border-left: 1px solid var(--line);
}
.proof-strip strong {
  font: 600 .86rem var(--mono);
  color: var(--gold);
}
.proof-strip span {
  font-size: .78rem;
  line-height: 1.4;
  color: var(--muted);
}
.fleet-details {
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(15,29,35,.58);
}
.fleet-details > summary {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font: 600 .86rem var(--mono);
  color: var(--text);
}
.fleet-details > summary::-webkit-details-marker {
  display: none;
}
.fleet-details > summary span:last-child {
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 400;
}
.fleet-details[open] > summary {
  border-bottom: 1px solid var(--line);
}
.fleet-details .console {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.fleet-details .rotation-row {
  margin: 0;
  padding: .85rem 1rem 1rem;
  border-top: 1px solid var(--line);
}
.bots-section .figure-banner {
  margin-top: 1.5rem;
}
.bot-slide {
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
}
.bot-slide img {
  height: auto;
}
.community-lead {
  max-width: 46rem;
}
.stat-band {
  margin-top: 1.6rem;
}
.community-grid {
  margin-top: 1.8rem;
}
.community-matches {
  align-self: start;
  padding: 0;
  overflow: hidden;
}
.community-matches > summary {
  min-height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font: 600 .86rem var(--mono);
  color: var(--text);
}
.community-matches > summary::-webkit-details-marker {
  display: none;
}
.community-matches > summary span {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 400;
}
.community-matches[open] > summary {
  border-bottom: 1px solid var(--line);
}
.community-matches > :not(summary) {
  margin-inline: 1.2rem;
}
.community-matches > .recent-panel-head {
  margin-top: 1.2rem;
}
.community-matches > .matches-more {
  width: calc(100% - 2.4rem);
  margin-bottom: 1.2rem;
}
.final-cta {
  margin-top: 4rem;
  padding: clamp(1.6rem, 3.5vw, 2.75rem);
}
.final-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}
.deployment-grid {
  margin-top: 1.6rem;
}
.deployment-card {
  min-height: 14.5rem;
  padding: 1.25rem;
}
.deployment-card h3 {
  margin-top: .75rem;
}
.site-footer {
  margin-top: 4rem;
}
.footer {
  padding-block: 2.25rem;
}

@media (max-width: 900px) {
  .hero-inner {
    gap: 2rem;
  }
  .hero-actions {
    grid-template-rows: minmax(18rem, 1fr) minmax(7rem, .35fr);
  }
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-strip > div:nth-child(3) {
    border-left: 0;
  }
  .proof-strip > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
  .deployment-card-primary {
    min-height: 12rem;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 2.75rem 1rem 3.25rem;
    gap: 1.5rem;
  }
  .hero .lede {
    line-height: 1.5;
  }
  .hero .cta-row {
    margin-top: 1.4rem;
  }
  .hero-stats {
    margin-top: 1.5rem;
  }
  .hero-watch-card {
    display: none;
  }
  .hero-actions {
    grid-template-rows: minmax(16rem, 1fr);
  }
  .section {
    padding-top: 3.75rem;
  }
  .section-heading {
    margin-bottom: 1.15rem;
  }
  .proof-strip {
    grid-template-columns: 1fr;
  }
  .proof-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .bot-slide {
    aspect-ratio: 1.478 / 1;
  }
  .community-grid {
    margin-top: 1.3rem;
  }
  .community-matches > summary {
    padding-inline: 1rem;
  }
  .final-cta {
    margin-top: 3.5rem;
  }
  .deployment-card {
    min-height: 12.75rem;
  }
}
