/* Deskhand — marketing site.
   Dark by default and on purpose: the owner's eyes are light-sensitive.

   Two rules that drive every color below:
   - Never pure black (#000) as a background.
   - Never pure white (#fff) as body text.
   Pure white on pure black causes halation — the glow-smear around glyphs that
   makes sensitive eyes ache. Near-black + off-white reads identically at a
   glance and is far kinder over a long page. */

:root {
  /* Surfaces — near-black, stepped, never #000 */
  --bg: #0a0d12;
  --bg-2: #0d1117;
  --surface: #141a23;
  --surface-2: #1a222d;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);

  /* Light blue — the one accent */
  --blue: #5eb3f6;
  --blue-bright: #8ccbff;
  --blue-deep: #2b7fc4;
  --blue-soft: rgba(94, 179, 246, 0.12);
  --blue-glow: rgba(94, 179, 246, 0.28);

  /* Text — off-white, never #fff */
  --ink: #e3ebf4;
  --ink-2: #9db0c6;
  /* The faintest ink has to clear AA on the LIGHTEST thing it sits on, which is
     --surface-2 (demo chrome bars, table headers), not the page background.
     Measured against --bg alone the old #6b7d93 looked fine at 4.61 — but it
     was 4.49 on tinted bands, 4.14 on cards and 3.80 on --surface-2, so most of
     the faint text on the page was actually below AA while the README claimed
     otherwise. This value measures 6.03 / 5.87 / 5.42 / 4.97 across
     bg / bg-2 / surface / surface-2 — AA on all four.
     If you darken it, re-check against --surface-2, not --bg. And don't put
     faint text on --blue-soft pills or in a tfoot: that lands ~4.4 even now. */
  --ink-3: #7f91a7;

  --good: #4ec98a;
  --warn: #f0a338;

  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-head: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); }
::selection { background: var(--blue-glow); color: #fff; }

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

.container { width: min(1120px, 92%); margin-inline: auto; }
.narrow { width: min(760px, 92%); margin-inline: auto; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 13, 18, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.03em; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; display: block; }
/* Matches the hero's "a deskhand" treatment — the wordmark splits the same way */
.brand-desk { color: var(--blue); }
.nav-links { display: flex; gap: 1.6rem; font-size: 0.92rem; }
.nav-links a { color: var(--ink-2); font-weight: 500; }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: inherit; font-weight: 600; font-size: 0.95rem; cursor: pointer;
  padding: 0.7rem 1.3rem; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: transparent; color: var(--ink);
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); border-color: var(--blue); color: var(--ink); }
.btn-primary {
  background: var(--blue); border-color: var(--blue); color: #06101a; font-weight: 700;
}
.btn-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: #06101a; box-shadow: 0 8px 26px var(--blue-glow); }
.btn-lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.87rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(4rem, 11vw, 8rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(94, 179, 246, 0.13), transparent 62%);
  filter: blur(20px);
}
.hero-inner { position: relative; max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  border: 1px solid rgba(94, 179, 246, 0.22);
  padding: 0.4rem 0.9rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); font-weight: 800; margin-bottom: 1.3rem; }
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: clamp(1.05rem, 2.1vw, 1.3rem); color: var(--ink-2); max-width: 40em; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-note { font-size: 0.88rem; color: var(--ink-3); margin-top: 1.6rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tint { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; margin-bottom: 0.9rem; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; }
.kicker { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 0.7rem; }

/* ---------- Problem ---------- */
.problem { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.problem-copy p { color: var(--ink-2); font-size: 1.06rem; margin-bottom: 1rem; }
.problem-copy p strong { color: var(--ink); font-weight: 600; }
.clock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.clock-time { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; }
.clock-day { color: var(--ink-3); font-size: 0.9rem; margin-bottom: 1.3rem; }
.todo { list-style: none; display: grid; gap: 0.55rem; }
.todo li {
  display: flex; align-items: center; gap: 0.7rem; font-size: 0.94rem; color: var(--ink-2);
  padding: 0.6rem 0.8rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.todo li::before { content: '☐'; color: var(--ink-3); font-size: 1.05rem; }

/* ---------- Feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.card-icon {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--blue-soft); border: 1px solid rgba(94, 179, 246, 0.22);
  color: var(--blue); margin-bottom: 1rem;
}
.card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-2); font-size: 0.94rem; }

/* ---------- Demo ---------- */
.demo-shell {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.demo-bar {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.1rem;
  background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.demo-bar span { margin-left: 0.6rem; font-size: 0.8rem; color: var(--ink-3); font-family: ui-monospace, monospace; }
.demo-body { display: grid; grid-template-columns: 340px 1fr; min-height: 430px; }
.demo-left { border-right: 1px solid var(--line); padding: 1.4rem; background: var(--bg-2); }
.demo-right { padding: 1.4rem 1.6rem; }
.demo-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.9rem; }

.msg { display: flex; gap: 0.7rem; margin-bottom: 1rem; opacity: 0; animation: rise 0.45s var(--ease) forwards; }
.msg-avatar { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; color: var(--ink-2); }
.msg-body { background: var(--surface); border: 1px solid var(--line); border-radius: 4px 12px 12px 12px; padding: 0.7rem 0.9rem; font-size: 0.9rem; color: var(--ink); }
.msg-time { font-size: 0.72rem; color: var(--ink-3); margin-top: 0.3rem; }
.msg.out .msg-body { background: var(--blue-soft); border-color: rgba(94, 179, 246, 0.25); border-radius: 12px 4px 12px 12px; }

@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 1.2rem; }

.fake {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1rem; font-size: 0.88rem; opacity: 0; animation: rise 0.45s var(--ease) 0.12s forwards;
}
.fake + .fake { margin-top: 0.7rem; }
.fake-head { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 0.7rem; }
.fake-head strong { font-size: 0.92rem; }
.fake-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; border-top: 1px solid var(--line); color: var(--ink-2); }
.fake-row span:last-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.pill {
  display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 0.18rem 0.6rem;
  border-radius: 999px; background: var(--blue-soft); color: var(--blue); border: 1px solid rgba(94, 179, 246, 0.22);
}
.pill.good { background: rgba(78, 201, 138, 0.12); color: var(--good); border-color: rgba(78, 201, 138, 0.25); }
.mono { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.82rem; color: var(--ink-2); }
.draft { border-left: 2px solid var(--blue); padding-left: 0.9rem; color: var(--ink-2); font-size: 0.9rem; }
.draft strong { color: var(--ink); }

.demo-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.4rem; border-top: 1px solid var(--line); background: var(--surface-2); flex-wrap: wrap; }
.steps { display: flex; gap: 0.4rem; }
.step-dot { width: 26px; height: 4px; border-radius: 2px; background: var(--line-2); border: 0; padding: 0; cursor: pointer; transition: background 0.25s; }
.step-dot.active { background: var(--blue); }
.step-dot:hover { background: var(--blue-deep); }
.demo-nav { display: flex; gap: 0.5rem; align-items: center; }
.demo-count { font-size: 0.82rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* ---------- Replaces table ---------- */
.replaces { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.replaces table { width: 100%; border-collapse: collapse; }
.replaces th, .replaces td { padding: 0.95rem 1.2rem; text-align: left; }
.replaces thead th { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); background: var(--surface-2); font-weight: 700; }
.replaces tbody tr { border-top: 1px solid var(--line); }
.replaces td:last-child, .replaces th:last-child { text-align: right; white-space: nowrap; }
.replaces .price { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.replaces .sub { display: block; font-size: 0.8rem; color: var(--ink-3); font-weight: 400; }
.replaces tfoot td { border-top: 2px solid var(--blue); background: var(--blue-soft); font-weight: 800; font-size: 1.05rem; }
.replaces tfoot .price { color: var(--blue); font-size: 1.25rem; }
.replaces-note { margin-top: 1.2rem; color: var(--ink-3); font-size: 0.86rem; }

.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; align-items: center; margin-top: 2rem; }
.versus-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.versus-card.win { border-color: var(--blue); background: linear-gradient(180deg, var(--blue-soft), transparent); }
.versus-num { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; }
.versus-card.win .versus-num { color: var(--blue); }
.versus-label { color: var(--ink-3); font-size: 0.86rem; margin-top: 0.3rem; }
.versus-mid { color: var(--ink-3); font-weight: 700; font-size: 0.9rem; }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; }
.tier {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; height: 100%;
}
.tier.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 20px 50px rgba(94, 179, 246, 0.1); position: relative; }
.tier-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #06101a; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 999px; white-space: nowrap;
}
.tier h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.tier-who { color: var(--ink-3); font-size: 0.85rem; margin-bottom: 1.3rem; min-height: 2.6em; }
.tier-price { display: flex; align-items: baseline; gap: 0.3rem; }
.tier-price .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; }
.tier.featured .tier-price .num { color: var(--blue); }
.tier-price .per { color: var(--ink-3); font-size: 0.9rem; }
.tier-setup { color: var(--ink-2); font-size: 0.88rem; margin: 0.4rem 0 1.4rem; }
.tier-setup strong { color: var(--ink); }
.tier ul { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.6rem; flex-grow: 1; }
.tier li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-2); align-items: flex-start; }
.tier li svg { flex-shrink: 0; margin-top: 0.28rem; color: var(--blue); }
.tier li.muted { color: var(--ink-3); }
.tier li.muted svg { color: var(--ink-3); opacity: 0.5; }

.price-notes { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.price-note { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--ink-2); }
.price-note strong { color: var(--ink); display: block; margin-bottom: 0.2rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.7rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary { cursor: pointer; padding: 1.05rem 1.3rem; font-weight: 600; font-size: 0.98rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--blue); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; transition: transform 0.25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq p { padding: 1.05rem 1.3rem; color: var(--ink-2); font-size: 0.94rem; }

/* ---------- CTA ---------- */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(94, 179, 246, 0.12), transparent 60%);
}
.cta-inner { position: relative; }
.cta h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.cta p { color: var(--ink-2); font-size: 1.08rem; max-width: 34em; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 2.5rem 0; color: var(--ink-3); font-size: 0.88rem; }
/* The full logo lives here and in the share card — the two places with room for
   the desk, the plant and the hairline strokes. Anywhere smaller uses mark.svg,
   which is built to survive 16px. */
.footer-logo { display: flex; justify-content: center; padding-bottom: 2.2rem; }
.footer-logo img { width: 200px; height: auto; opacity: 0.9; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer a { color: var(--ink-2); }

/* ---------- The embedded dashboard ---------- */
/* The iframe holds the REAL hub, served from /demo/ and same-origin, which is
   what lets the tour buttons drive its tabs. Don't sandbox it: dropping
   allow-same-origin would cut that off, and it's our own page. */
.hq { display: grid; gap: 1.1rem; }

/* Wider than the rest of the page, deliberately. The hub is a real desktop app:
   its four KPI tiles are `repeat(auto-fit, minmax(200px, 1fr))` beside a 250px
   sidebar, so the frame needs 4×200 + 3×16 gaps + 64 padding + 250 = 1162px or
   they wrap to 3+1 and the dashboard reads as broken rather than dense.
   At 94% that means a viewport of ~1236px; below it we stop pretending the
   desktop layout fits (see the 1236px breakpoint). */
#hq .container { width: min(1300px, 94%); }

.hq-tour { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.hq-stop {
  font: inherit; font-size: 0.88rem; font-weight: 600; cursor: pointer;
  padding: 0.5rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: transparent; color: var(--ink-2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.hq-stop:hover { color: var(--ink); border-color: var(--blue-deep); }
.hq-stop[aria-selected="true"] {
  color: var(--bg); background: var(--blue); border-color: var(--blue);
}
.hq-stop:disabled { opacity: 0.45; cursor: default; }

/* Tall enough to land the whole money shot without scrolling: banner, the four
   tiles on one row, and both charts. The tabs scroll inside from there. */
.hq-stage { position: relative; height: 720px; background: var(--bg-2); }
.hq-stage iframe { display: block; width: 100%; height: 100%; border: 0; }

/* Full-screen tap target — mobile only, where the frame is look-don't-touch */
.hq-tap { display: none; }

.hq-caption {
  text-align: center; color: var(--ink-2); font-size: 0.95rem;
  min-height: 2.8em; max-width: 60ch; margin-inline: auto;
}
.hq-caption strong { color: var(--ink); font-weight: 600; }
.hq-foot { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hq-note { color: var(--ink-3); font-size: 0.85rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
/* Without JS nothing ever gets .visible — show everything rather than a blank page */
html:not(.js) .reveal { opacity: 1; transform: none; }
/* ...and the demo shell would be an empty box, so swap in the <noscript> version */
html:not(.js) #demoShell { display: none; }
/* The hub renders itself from JS, so the frame would be a blank box too */
html:not(.js) #hqBlock { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .problem { grid-template-columns: 1fr; gap: 2rem; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier.featured { order: -1; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-left { border-right: 0; border-bottom: 1px solid var(--line); }
}
/* Under ~1236px the frame drops below 1162px and the hub reflows its tiles to
   3+1. That's not a bug to paper over — it's the real app's own responsive
   behaviour, and it's exactly what an owner sees on a window this size. Give it
   a shorter stage so it reads as a deliberate layout rather than a clipped one. */
@media (max-width: 1236px) {
  .hq-stage { height: 660px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .versus { grid-template-columns: 1fr; gap: 0.8rem; }
  .versus-mid { text-align: center; }
  .replaces th, .replaces td { padding: 0.8rem 0.9rem; font-size: 0.9rem; }
  .demo-foot { justify-content: center; }

  /* A scrolling dashboard inside a scrolling page is a trap: you try to scroll
     past it and it eats the gesture. So on a phone the frame becomes a live
     preview — the hub's own mobile layout, real and current, but inert — and the
     whole thing is one big tap target through to the full-screen demo. */
  .hq-stage { height: 480px; }
  .hq-stage iframe { pointer-events: none; }
  .hq-tour { display: none; }
  .hq-caption { display: none; }
  .hq-tap {
    display: flex; position: absolute; inset: 0; align-items: flex-end;
    justify-content: center; padding: 1rem;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 13, 18, 0.92));
    text-decoration: none;
  }
  .hq-tap span {
    font-size: 0.9rem; font-weight: 600; color: var(--ink);
    background: var(--surface-2); border: 1.5px solid var(--line-2);
    border-radius: 999px; padding: 0.55rem 1.1rem;
  }
}
