/* ============================================================
   Reclever.ai — shared design system
   ============================================================ */

:root {
  --bg: #f7f9fb;
  --bg-soft: #eef2f7;
  --surface: #ffffff;
  --ink: #0c1626;
  --ink-soft: #4a5a70;
  --ink-faint: #8496ab;
  --line: #e3e9f1;
  --line-strong: #d0dae7;

  --brand: #0f766e;
  --brand-deep: #0b5d57;
  --brand-ink: #06342f;
  --violet: #5b6ef0;
  --amber: #c9862b;
  --red: #c0392b;

  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(12, 22, 38, .04), 0 4px 16px rgba(12, 22, 38, .05);
  --shadow-md: 0 8px 30px rgba(11, 45, 69, .10);
  --shadow-lg: 0 30px 70px rgba(11, 45, 69, .16);

  --maxw: 1140px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Space Grotesk', var(--font);
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.12;
}

.grad {
  background: linear-gradient(115deg, var(--brand) 0%, var(--brand-deep) 45%, var(--violet) 115%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--surface); color: var(--ink);
  padding: 12px 18px; border-radius: 0 0 10px 0; z-index: 100;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- Nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(247, 249, 251, .78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
header.nav.scrolled { border-color: var(--line); background: rgba(247, 249, 251, .94); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em;
}
.mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 60%, var(--brand-ink) 100%);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(15, 118, 110, .35);
  position: relative;
}
/* signal bars inside the logo mark */
.mark::before, .mark::after {
  content: ""; position: absolute; background: rgba(255, 255, 255, .95); border-radius: 1px;
}
.mark::before { width: 3px; height: 8px;  transform: translate(-5px, 3px); }
.mark::after  { width: 3px; height: 14px; transform: translate(0px, 0px); }
.mark i {
  position: absolute; width: 3px; height: 11px; border-radius: 1px;
  background: rgba(255, 255, 255, .6); transform: translate(5px, 1.5px);
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .92rem; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-cta {
  font-size: .9rem; font-weight: 600; color: var(--brand-deep) !important;
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface); box-shadow: var(--shadow-sm); transition: all .2s;
}
.nav-cta:hover { border-color: var(--line-strong); transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 64px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; top: -28%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 720px;
  background:
    radial-gradient(ellipse 50% 50% at 30% 30%, rgba(15, 118, 110, .16), transparent 60%),
    radial-gradient(ellipse 50% 50% at 72% 38%, rgba(91, 110, 240, .14), transparent 60%);
  filter: blur(10px);
}
.grid-fade {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11, 45, 69, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 45, 69, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 18%, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 18%, #000 0%, transparent 72%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 840px; margin: 0 auto; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 500; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px; box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .16);
}
.pill .dot.live { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(15, 118, 110, .18); }
  50%      { box-shadow: 0 0 0 6px rgba(15, 118, 110, .06); }
}

.hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); font-weight: 700; }
.hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft);
  max-width: 660px; margin: 22px auto 0; line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font); font-size: .98rem; font-weight: 600;
  padding: 13px 26px; border-radius: 12px; cursor: pointer;
  transition: all .22s ease;
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid transparent;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 8px 22px rgba(15, 118, 110, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15, 118, 110, .4); }
.btn-ghost { color: var(--ink); background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.btn .arrow { transition: transform .22s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Terminal / mock ---------- */
.mock {
  position: relative; z-index: 1; margin: 60px auto 0; max-width: 980px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mock-bar i:nth-child(1) { background: #ec6a5e; }
.mock-bar i:nth-child(2) { background: #f3bf4f; }
.mock-bar i:nth-child(3) { background: #62c554; }
.mock-bar span { margin-left: 10px; font-size: .78rem; color: var(--ink-faint); font-family: var(--mono); }

.panel { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 16px; min-width: 0; }
.panel h5 {
  font-family: var(--display); font-size: .82rem; font-weight: 600;
  color: var(--ink-soft); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}

/* terminal: query line separated from the response body */
.term { background: #0b1220; }
.term-q {
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  overflow-x: auto;
}
.term-q pre {
  margin: 0; font-family: var(--mono); font-size: .84rem; color: #c8d6e8;
}
.term-b { padding: 20px 22px; overflow-x: auto; }
.term-b pre {
  margin: 0; font-family: var(--mono); font-size: .76rem; line-height: 1.75; color: #c8d6e8;
}

/* languages-in strip under the terminal */
.mock-foot {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 20px; border-top: 1px solid var(--line); background: var(--bg-soft);
}
.mock-foot .fl {
  display: flex; align-items: center; gap: 7px; flex: none;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint);
}
.lang-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.lang-chip {
  font-family: var(--mono); font-size: .7rem; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 100px;
}
.lang-chip b { color: var(--brand-deep); font-weight: 600; }
.lang-chip.more { color: var(--ink-faint); background: transparent; border-style: dashed; }

/* code block */
.code {
  background: #0b1220; border-radius: 0; padding: 20px 22px;
  overflow-x: auto; font-family: var(--mono); font-size: .8rem; line-height: 1.7;
}
.code pre { margin: 0; color: #c8d6e8; }
/* syntax tokens — shared by .code and .term */
.c-key { color: #7dd3c8; }
.c-str { color: #f0b57d; }
.c-num { color: #a5b4fc; }
.c-com { color: #5b6b82; }
.c-fn  { color: #93c5fd; }
.c-punc { color: #64748b; }
.c-prompt { color: #4ade80; }

/* ---------- Live query ticker ---------- */
.dot-live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex: none;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .18);
  animation: pulse 2.4s ease-in-out infinite;
}
.ticker {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: flex; gap: 10px; width: max-content;
  animation: marquee 44s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tq {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-family: var(--mono); font-size: .76rem; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 100px;
}
.tq .t { color: var(--ink-faint); font-size: .7rem; }
.tq .d { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex: none; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.sec-head { text-align: center; max-width: 700px; margin: 0 auto 54px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; margin-top: 14px; }
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 16px; }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.features.two { grid-template-columns: repeat(2, 1fr); }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.feature .num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--mono); font-size: .72rem; color: var(--ink-faint);
}
.feature .icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(15, 118, 110, .12), rgba(91, 110, 240, .12));
  border: 1px solid var(--line);
}
.feature .icon svg {
  width: 24px; height: 24px; stroke: var(--brand-deep); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.feature h3 { font-size: 1.15rem; font-weight: 600; }
.feature p { color: var(--ink-soft); margin-top: 10px; font-size: .94rem; }
.feature .tag {
  display: inline-block; margin-top: 16px;
  font-size: .72rem; font-weight: 600; color: var(--brand-deep);
  background: var(--bg-soft); padding: 4px 11px; border-radius: 100px;
  font-family: var(--mono);
}

/* ---------- Stats band ---------- */
.stats { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  text-align: center; padding: 32px 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.stat .n {
  font-family: var(--display); font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .t { font-size: .88rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Steps ---------- */
.how { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; padding: 30px 26px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.step .num {
  font-family: var(--display); font-size: 2rem; font-weight: 700; color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  -webkit-background-clip: text; background-clip: text;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin: 8px 0 10px; }
.step p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Why / benefits ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.why-grid h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 700; }
.why-grid > div > p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 18px; }
.why-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.why-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.why-list .ck {
  flex: none; width: 24px; height: 24px; border-radius: 7px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: grid; place-items: center; margin-top: 2px;
}
.why-list .ck svg {
  width: 13px; height: 13px; stroke: #fff; stroke-width: 2.6; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.why-list li strong { font-weight: 600; display: block; }
.why-list li span { color: var(--ink-soft); }

.why-card {
  background: linear-gradient(150deg, var(--brand-deep), var(--brand-ink));
  border-radius: 20px; padding: 36px; color: #fff;
  box-shadow: 0 24px 50px rgba(6, 52, 47, .3);
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 110, 240, .5), transparent 70%);
}
.why-card .q {
  font-family: var(--display); font-size: 1.28rem; font-weight: 600;
  line-height: 1.45; position: relative;
}
.why-card .meta {
  margin-top: 24px; font-size: .78rem; color: rgba(255, 255, 255, .62);
  letter-spacing: .12em; text-transform: uppercase; position: relative;
}
.why-card .row { display: flex; gap: 28px; margin-top: 20px; position: relative; }
.why-card .row .n { font-family: var(--display); font-size: 1.7rem; font-weight: 700; }
.why-card .row .t { font-size: .76rem; color: rgba(255, 255, 255, .66); }

/* ---------- Cross-link band ---------- */
.band {
  background: linear-gradient(150deg, var(--brand-deep), var(--brand-ink));
  border-radius: 24px; padding: 48px 44px; color: #fff;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 36px; align-items: center;
}
.band::after {
  content: ""; position: absolute; bottom: -60px; left: -30px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 110, 240, .45), transparent 70%);
}
.band > * { position: relative; z-index: 1; }
.band .eyebrow { color: #7dd3c8; }
.band h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; margin-top: 12px; }
.band p { color: rgba(255, 255, 255, .74); margin-top: 14px; font-size: 1rem; }
.band .btn-onDark {
  background: #fff; color: var(--brand-ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}
.band .btn-onDark:hover { transform: translateY(-2px); }
.band-side { display: flex; flex-direction: column; gap: 10px; }
.band-q {
  font-family: var(--mono); font-size: .74rem; color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  padding: 9px 13px; border-radius: 9px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---------- Events ---------- */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s;
}
.event:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.event .loc {
  font-family: var(--mono); font-size: .68rem; color: var(--brand);
  text-transform: uppercase; letter-spacing: .08em;
}
.event h3 { font-size: 1.02rem; font-weight: 600; margin: 8px 0 10px; }
.event p { color: var(--ink-soft); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--ink);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-deep); }
.faq-item summary .chev {
  flex: none; width: 20px; height: 20px;
  stroke: var(--ink-faint); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s ease;
}
.faq-item[open] summary .chev { transform: rotate(180deg); stroke: var(--brand); }
.faq-item .ans { padding: 0 24px 22px; color: var(--ink-soft); font-size: .96rem; }
.faq-item .ans p + p { margin-top: 12px; }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact-card {
  max-width: 760px; margin: 0 auto; padding: 56px 40px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 24px; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(15, 118, 110, .08), transparent 70%);
}
.contact-card > * { position: relative; }
.contact-card h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
.contact-card p { color: var(--ink-soft); font-size: 1.06rem; margin: 16px auto 30px; max-width: 540px; }
.mail {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--brand-deep);
  padding: 14px 28px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--bg);
  transition: all .22s;
}
.mail:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.mail svg {
  width: 19px; height: 19px; stroke: var(--brand-deep); fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.foot-inner .brand { font-size: 1.05rem; }
.foot-nav { display: flex; gap: 22px; font-size: .88rem; color: var(--ink-soft); }
.foot-nav a:hover { color: var(--ink); }
.foot-meta { font-size: .86rem; color: var(--ink-faint); }
.foot-meta a { color: var(--ink-soft); }
.foot-meta a:hover { color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .events { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  section { padding: 64px 0; }
  .hero { padding: 60px 0 40px; }
  .features, .features.two, .steps, .why-grid, .events, .band {
    grid-template-columns: 1fr;
  }
  .why-grid { gap: 32px; }
  .band { padding: 36px 26px; }
  .contact-card { padding: 42px 24px; }
  .foot-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .stat-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .pill .dot.live { animation: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
