/* ============================================================
   SIGNAL — product site
   Five greys, zero hue. Borders, not shadows. One easing curve.
   ============================================================ */

:root {
  --g0: #050505;   /* page */
  --g1: #0b0b0b;   /* band */
  --g2: #121212;   /* panel */
  --g3: #6f6f6f;   /* muted text */
  --g4: #f2f2f2;   /* text */
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.07);
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--g0);
  color: var(--g4);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: var(--g4); color: var(--g0); }

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ---------- type ---------- */
.label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: 20px;
}
.title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.1px var(--g4);
}
.sub {
  color: var(--g3);
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.02rem;
}
.head { max-width: 880px; margin-bottom: clamp(44px, 6vw, 76px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--g4);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
}
.btn-solid { background: var(--g4); color: var(--g0); border-color: var(--g4); }
.btn-solid:hover { background: transparent; color: var(--g4); }
.btn-ghost:hover { background: var(--g4); color: var(--g0); border-color: var(--g4); }
.btn-wide { width: 100%; margin-top: 8px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { text-decoration: none; color: inherit; line-height: 1.1; }
.brand-mark {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.42em;
  color: transparent;
  -webkit-text-stroke: 1px var(--g4);
}
.brand-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--g3);
  margin-top: 3px;
}
.nav-links { margin-left: auto; display: flex; gap: 28px; }
.nav-links a {
  color: var(--g3);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--g4); }
.nav-cta { padding: 10px 20px; font-size: 0.8rem; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px clamp(20px, 5vw, 56px) 90px;
  text-align: center;
}
.hero-inner { max-width: 820px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g3);
}
.tick { width: 28px; height: 1px; background: var(--g3); display: inline-block; }
.hero-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3.6rem, 14vw, 9rem);
  line-height: 0.94;
  letter-spacing: 0.06em;
  margin: 26px 0 6px;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--g4);
}
.hero-tag {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--g3);
}
.hero-sub {
  color: var(--g3);
  font-size: 1.06rem;
  max-width: 620px;
  margin: 30px auto 0;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero-facts {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
  margin-top: clamp(50px, 8vw, 84px);
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.hero-facts b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--g4);
}
.hero-facts span {
  display: block;
  margin-top: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g3);
}

/* ---------- sections ---------- */
section { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 56px); }
.band, .screens, .pricing { position: relative; z-index: 1; background: var(--g0); }
.band { background: var(--g1); border-top: 1px solid var(--line-soft); }

/* not-a-CRM split */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  max-width: 1200px;
}
.col { background: var(--g1); padding: clamp(28px, 4vw, 44px); }
.col-head {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: 24px;
}
.list { list-style: none; }
.list li {
  padding: 13px 0 13px 32px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-size: 0.98rem;
}
.list li:last-child { border-bottom: 0; }
.list li::before {
  position: absolute;
  left: 0;
  top: 13px;
  font-size: 0.9rem;
  color: var(--g3);
}
.list-no li { color: var(--g3); }
.list-no li::before { content: "×"; }
.list-yes li::before { content: "→"; color: var(--g4); }

/* screens */
.screen {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: 1400px;
  margin-bottom: clamp(60px, 9vw, 128px);
}
.screen:last-child { margin-bottom: 0; }
.screen-flip .screen-copy { order: 2; }
.screen-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.1px var(--g3);
}
.screen-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  margin: 14px 0 16px;
}
.screen-copy p { color: var(--g3); max-width: 440px; }
kbd {
  font-family: var(--display);
  font-size: 0.82em;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 7px;
  color: var(--g4);
}
.screen-shot {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--g2);
  transition: border-color 0.4s;
}
.screen-shot:hover { border-color: rgba(255, 255, 255, 0.32); }
.chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}
.chrome i {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.chrome span {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--g3);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 3px 12px;
}
.screen-shot img { transition: transform 1.2s var(--ease); }
.screen-shot:hover img { transform: scale(1.03); }

/* vault grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  max-width: 1200px;
}
.cell { background: var(--g1); padding: clamp(28px, 3.5vw, 42px); transition: background 0.35s; }
.cell:hover { background: var(--g2); }
.cell-num { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--g3); }
.cell h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 600; margin: 18px 0 12px; }
.cell p { color: var(--g3); font-size: 0.95rem; }
.warn {
  max-width: 1200px;
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--g3);
  font-size: 0.94rem;
}
.warn b { color: var(--g4); }

/* pricing */
.price-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(24px, 3vw, 44px);
  max-width: 1120px;
  align-items: start;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(30px, 4vw, 46px);
  background: var(--g1);
}
.price-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g3);
}
.price-figure {
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1;
  margin: 14px 0 6px;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--g4);
}
.price-figure span { font-size: 0.42em; vertical-align: 0.5em; margin-right: 4px; }
.price-note { color: var(--g3); font-size: 0.9rem; }
.price-list { list-style: none; margin-top: 28px; border-top: 1px solid var(--line-soft); }
.price-list li {
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-size: 0.95rem;
  color: var(--g3);
}
.price-list li::before { content: "→"; position: absolute; left: 0; color: var(--g4); }

.buy-btn { margin-top: 30px; }
.price-fine {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--g3);
  text-align: center;
  line-height: 1.5;
}

/* form */
.form-head {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-lead { color: var(--g3); font-size: 0.9rem; margin-bottom: 24px; }
.form {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: clamp(26px, 3.5vw, 40px);
  background: var(--g1);
}
.hp { position: absolute; left: -9999px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--g4);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.field select { appearance: none; cursor: pointer; }
.field option { background: var(--g1); color: var(--g4); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}
.field ::placeholder { color: #4a4a4a; }
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.8rem; color: var(--g3); text-align: center; }

/* faq */
.faq { max-width: 900px; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #fff; }
.mark {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 13px; height: 13px;
  margin-top: -6px;
}
.mark::before, .mark::after {
  content: "";
  position: absolute;
  background: var(--g3);
  transition: transform 0.35s var(--ease);
}
.mark::before { left: 0; top: 6px; width: 13px; height: 1px; }
.mark::after { left: 6px; top: 0; width: 1px; height: 13px; }
.faq-item[open] .mark::after { transform: scaleY(0); }
.faq-item p { color: var(--g3); padding-bottom: 24px; max-width: 700px; font-size: 0.97rem; }

/* ---------- legal pages ---------- */
.legal {
  position: relative;
  z-index: 1;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 56px) clamp(70px, 9vw, 110px);
}
.legal-inner { max-width: 720px; }
.legal-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.legal-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g3);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-lead {
  font-size: 1.02rem;
  color: var(--g4);
  margin: 30px 0 8px;
  line-height: 1.75;
}
.legal h2 {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  margin: 42px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.legal p { color: var(--g3); margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.legal p strong { color: var(--g4); font-weight: 600; }
.legal a { color: var(--g4); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: #fff; }
.legal-list { list-style: none; margin: 6px 0 18px; }
.legal-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: var(--g3);
  font-size: 0.95rem;
  line-height: 1.75;
  border-bottom: 1px solid var(--line-soft);
}
.legal-list li:last-child { border-bottom: 0; }
.legal-list li::before { content: "—"; position: absolute; left: 0; color: var(--g3); }
.legal-list li strong { color: var(--g4); font-weight: 600; }
.legal-foot {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
}

/* ---------- post-purchase steps ---------- */
.step-block {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  margin: 38px 0;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.step-n {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--g3);
}
.step-h {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}
/* `.legal a` sets a link colour and out-specifies `.btn-solid`, which would
   leave white text on a white button. Restate it for buttons inside prose. */
.legal a.btn-solid { color: var(--g0); text-decoration: none; }
.legal a.btn-solid:hover { color: var(--g4); }
.dl-btn { margin: 18px 0 12px; }
.dl-note { font-size: 0.8rem; line-height: 1.7; color: var(--g3); }
.legal code {
  font-family: var(--display);
  font-size: 0.88em;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  padding: 2px 7px;
  color: var(--g4);
}
@media (max-width: 560px) {
  .step-block { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- activation code ----------
   The one thing on this page that has to be transcribed without error, so it
   gets the display face, wide tracking, and a dashed border that reads as
   "copy this out" rather than as another panel. */
.act-code {
  font-family: var(--display);
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--g4);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 20px 14px;
  margin: 18px 0 14px;
  text-align: center;
  word-break: break-all;
  user-select: all;
}
.act-copy { margin-bottom: 6px; }
.act-note { font-size: 0.82rem; line-height: 1.7; margin-top: 14px; }
.act-wait { color: var(--g3); font-size: 0.9rem; margin: 18px 0; }
/* Same weight as the note it replaces. A failure here is not an alarm — it is
   an instruction to email someone, and it should read like one. */
.act-error {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}

/* ---------- terms gate at checkout ---------- */
.terms-gate {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--g3);
  cursor: pointer;
  transition: border-color 0.3s var(--ease);
}
.terms-gate:hover { border-color: var(--line); }
.terms-gate input {
  margin-top: 3px;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  accent-color: var(--g4);
  cursor: pointer;
}
.terms-gate a { color: var(--g4); text-decoration: underline; text-underline-offset: 3px; }
.terms-gate a:hover { color: #fff; }

/* The buy button stays visibly inert until the box is ticked. */
.buy-btn[aria-disabled="true"] {
  opacity: 0.34;
  cursor: not-allowed;
  pointer-events: none;
}

/* footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--g0);
  border-top: 1px solid var(--line-soft);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 5vw, 56px) 40px;
}
.footer-top { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; }
.footer-mark { font-size: 1.5rem; -webkit-text-stroke: 1.2px var(--g4); }
.footer-tag { color: var(--g3); font-size: 0.84rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--g3);
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--g3); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--g4); }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 900px) {
  .screen { grid-template-columns: 1fr; }
  .screen-flip .screen-copy { order: 0; }
  .hero-facts { gap: 24px; }
}

/* ---------- email capture ---------- */
.lead {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.lead.is-open { opacity: 1; pointer-events: auto; }
.lead-scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(6px);
}
.lead-panel {
  position: relative;
  width: min(430px, 100%);
  background: var(--g1);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(30px, 5vw, 44px);
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.5s var(--ease);
}
.lead.is-open .lead-panel { transform: none; }
.lead-x {
  position: absolute;
  top: 10px; right: 13px;
  background: transparent;
  border: 0;
  color: var(--g3);
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.3s;
}
.lead-x:hover { color: var(--g4); }
.lead-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g3);
}
/* hollow numerals, same as the hero facts */
.lead-amount {
  font-family: var(--display);
  font-size: clamp(3rem, 11vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  margin: 14px 0 4px;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--g4);
}
.lead-title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 14px;
}
.lead-sub {
  color: var(--g3);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 330px;
  margin: 0 auto;
}
.lead-form { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
/* `display:flex` out-specifies the [hidden] attribute's display:none, so the
   form would stay on screen after submitting. Restate it. */
.lead-form[hidden], .lead-done[hidden] { display: none; }
.lead-form input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--g4);
  font-family: var(--body);
  font-size: 0.95rem;
  text-align: center;
  transition: border-color 0.3s;
}
.lead-form input:focus { outline: none; border-color: rgba(255, 255, 255, 0.45); }
.lead-form input::placeholder { color: #4a4a4a; }
.lead-done-lead { color: var(--g3); font-size: 0.88rem; margin: 26px 0 14px; }
.lead-code {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--g4);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 16px 12px;
  user-select: all;
}
.lead-copy { margin-top: 14px; }
.lead-fine { margin-top: 16px; font-size: 0.72rem; color: #5f5f5f; }

/* ---- corner reminder ----
   Shown once the panel has been closed without an address, and it stays there
   for good until the code is claimed. Under the panel's z-index so the two can
   never fight, and only ever on screen while the panel is closed. */
.lead-tab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 290;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--g2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--g4);
  font-family: var(--body);
  font-size: 0.82rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
              background 0.3s, border-color 0.3s;
}
/* inline-flex out-specifies the [hidden] attribute's display:none */
.lead-tab[hidden] { display: none; }
.lead-tab.is-in { opacity: 1; transform: none; }
.lead-tab:hover { background: var(--g1); border-color: rgba(255, 255, 255, 0.32); }
.lead-tab-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g4);
  animation: leadPulse 2.6s var(--ease) infinite;
}
@keyframes leadPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}
.lead-tab-amount {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lead-tab-text { color: var(--g3); }
/* on a phone the sentence would run half the width — the amount carries it */
@media (max-width: 520px) {
  .lead-tab { right: 14px; bottom: 14px; padding: 12px 17px; }
  .lead-tab-text { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lead-tab { transition: none; }
  .lead-tab-dot { animation: none; }
}
.lead-hp { position: absolute; left: -9999px; }
.lead-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .lead, .lead-panel { transition: none; }
}
