@font-face {
  font-family: NeueMontreal;
  src: url("../assets/fonts/ppneuemontreal-book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: NeueMontreal;
  src: url("../assets/fonts/ppneuemontreal-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1b1b1b;
  --paper: #f6f5f3;
  --white: #fff;
  --signal: #ff4500;
  --signal-dark: #d93c00;
  --lime: #e7f256;
  --muted: #7a7a7a;
  --line: #e4e3e0;
  --console: #161616;
  --header: 64px;
  --space: 8px;
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: NeueMontreal, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.skip,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s;
}

html.is-past-hero .site-header {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.header-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  height: var(--header);
}

.logo img {
  width: 136px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav a,
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.78;
}

.nav a:hover,
.mobile-nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--signal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--signal-dark);
}

.btn-order-sm {
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 7px;
}

html[data-track="geo"] .btn-order-sm,
html[data-track="geo"] .final .btn-primary,
html[data-track="geo"] .sticky-cta {
  background: var(--lime);
  color: var(--ink);
}

html[data-track="geo"] .btn-order-sm:hover,
html[data-track="geo"] .final .btn-primary:hover,
html[data-track="geo"] .sticky-cta:hover {
  background: #dce84a;
  color: var(--ink);
  filter: none;
}

.btn-ghost {
  color: #fff;
  border-color: #4a4a4a;
}

.btn-ink {
  background: var(--ink);
  color: #fff;
}

.btn-lg {
  height: 48px;
  padding: 0 20px;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
}

.menu-btn i {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 5px auto;
  background: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 24px 20px;
  background: var(--ink);
}

.hero {
  padding: 67px 0 85px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.lede {
  margin: 18px 0 0;
  max-width: 38ch;
  font-size: 18px;
  color: #555;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.price-chips li {
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.console {
  background: var(--console);
  color: #ececec;
  border-radius: var(--radius);
  overflow: hidden;
}

.console-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  background: #1c1c1c;
  border-bottom: 1px solid #2a2a2a;
}

.console-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
}

.console-bar span:first-child {
  background: #ff5f57;
}

.console-bar em {
  margin-left: 8px;
  font-style: normal;
  font-size: 12px;
  color: #8a8a8a;
}

.thread,
.comment {
  margin: 16px;
  padding: 16px;
  background: #1c1c1c;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
}

.thread-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}

.thread h2 {
  font-size: 18px;
  color: #fff;
}

.thread p,
.comment p {
  margin: 8px 0 0;
  color: #b8b8b8;
  font-size: 14px;
}

.chip {
  padding: 4px 8px;
  border-radius: 999px;
  background: #2a2a2a;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.chip-lime {
  background: rgba(231, 242, 86, 0.14);
  color: var(--lime);
}

.flow {
  margin: 0 16px;
  padding: 0;
  list-style: none;
}

.flow li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 32px;
  padding-left: 12px;
  border-left: 2px solid #333;
  font-size: 13px;
  color: #8d8d8d;
}

.flow li.on {
  border-left-color: var(--signal);
  color: #fff;
}

.flow li span {
  font-size: 11px;
  color: var(--signal);
  font-weight: 500;
}

.comment span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--lime);
}

.strip {
  background: var(--ink);
  color: #fff;
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  min-height: 64px;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.strip-row span {
  opacity: 0.78;
}

.section {
  padding: 56px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-head p,
.group-intro {
  margin: 10px 0 0;
  color: #555;
  max-width: 48ch;
}

.kicker {
  margin: 0 0 8px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker.lime {
  color: var(--lime);
}

.group-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.group-label-gap {
  margin-top: 48px;
}

.section-bento {
  padding: 56px 0 48px;
}

.section-proof {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header) + 32px) 0 48px;
}

@media (max-width: 960px) {
  .section-proof,
  html[data-track="geo"] .section-proof {
    justify-content: flex-start;
    min-height: 0;
    padding-top: calc(var(--header) + 28px);
  }
}

.section-bento .section-head {
  margin-bottom: 28px;
}

.section-proof .bento {
  gap: 28px;
}

html[data-track="geo"] .section-proof {
  background: var(--ink);
  color: #fff;
  padding: calc(var(--header) + 32px) 0 48px;
}

html[data-track="geo"] .section-proof .section-head {
  margin-bottom: 28px;
}

html[data-track="geo"] .section-proof .proof-geo {
  gap: 48px 56px;
}


.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bento article {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: #fff;
  border-radius: var(--radius);
}

.bento article:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

.bento-hit {
  margin: 0 0 16px;
  color: var(--signal);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.bento h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.bento h3 + p {
  margin: 0;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.45;
  color: #8a8a8a;
}

.plans {
  position: relative;
}

.price-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 0 1 420px;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
}

.switch-note {
  flex: 1 1 280px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.45;
  max-width: 42ch;
}

.plans > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.price-switch label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.plans:has(#plans-ready:checked) label[for="plans-ready"],
.plans:has(#plans-custom:checked) label[for="plans-custom"] {
  background: var(--ink);
  color: #fff;
}

.pane-custom {
  display: none;
}

.plans:has(#plans-custom:checked) .pane-custom {
  display: block;
}

.plans:has(#plans-custom:checked) .pane-ready {
  display: none;
}

.section-pricing {
  padding-top: 48px;
}

.section-pricing .cards {
  align-items: stretch;
}

.section-pricing .card {
  padding: 28px;
  min-height: 0;
  height: 100%;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.section-pricing .card.is-visible {
  opacity: 1;
  transform: none;
}

.section-pricing .card-body {
  display: flex;
  flex-direction: column;
}

.section-pricing .card-foot {
  margin-top: auto;
  padding-top: 20px;
}

.section-pricing .card h3 {
  margin-bottom: 8px;
}

.section-pricing .card p {
  margin: 0;
}

.section-pricing .card ul {
  margin-top: auto;
  padding-top: 16px;
}

.section-pricing .card li {
  padding: 8px 0 8px 16px;
}

.section-pricing .card li::before {
  top: 15px;
}

.section-pricing .card .badge {
  margin: 0 0 20px;
  align-self: flex-start;
}

.section-pricing .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 4px;
}

.section-pricing .price em {
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-pricing .card-managed .price em {
  color: #fff;
}

.section-pricing .card .offer {
  display: block;
  margin: 20px 0 0;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--signal);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink) !important;
}

.section-pricing .card-managed .offer {
  color: #fff !important;
  border-left-color: var(--signal);
}

.section-pricing .price-unit {
  margin: 0 0 4px;
  font-size: 13px;
  color: #888;
}

.section-pricing .offer-sub {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #c8c8c8 !important;
}

.section-backend .card {
  min-height: 0;
  padding: 28px 24px;
}

.section-backend .card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.section-backend .card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.section-backend .feature-row {
  margin-top: 24px;
}

.section-pricing .price span,
.section-pricing .units span {
  font-size: 40px;
}

.section-pricing .units {
  margin: 8px 0 0;
  gap: 12px;
}

.section-pricing .lead-line {
  font-size: 15px;
  margin: 0 0 4px;
}

.section-tight {
  padding: 48px 0 40px;
}

.section-how {
  padding: 64px 0 56px;
}

html[data-track="leads"] .section-how {
  padding: 56px 0 56px;
  background:
    radial-gradient(720px 280px at 8% 8%, rgba(255, 69, 0, 0.08), transparent 70%),
    var(--paper);
}

html[data-track="geo"] .section-how {
  padding: 56px 0 56px;
  background:
    radial-gradient(720px 280px at 8% 8%, rgba(231, 242, 86, 0.12), transparent 70%),
    var(--paper);
}

html[data-track="geo"] .section-how .section-head {
  max-width: 720px;
}

.section-how .section-head h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.04em;
}

html[data-track="geo"] .section-how h2.for-geo {
  white-space: nowrap;
}

html[data-track="geo"] .tl-leads::before,
html[data-track="geo"] .tl-leads-step:nth-child(odd)::after {
  color: rgba(140, 150, 40, 0.55);
}

html[data-track="geo"] .tl-leads-num {
  color: #6f780f;
}

html[data-track="geo"] .tl-leads-tags li {
  background: rgba(231, 242, 86, 0.22);
  border-color: rgba(140, 150, 40, 0.28);
  color: #5a620c;
}

html[data-track="geo"] .tl-leads-step.is-visible:hover {
  border-color: rgba(140, 150, 40, 0.4);
}

html[data-track="geo"] .tl-leads-step.is-visible:hover .tl-leads-icon {
  background: #1f2114;
  color: var(--lime);
  box-shadow: 0 6px 16px rgba(31, 33, 20, 0.28);
}

/* ===== Leads grid (how-we-work) ===== */
.tl-leads {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.tl-leads::before {
  content: "↓";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 69, 0, 0.32);
  pointer-events: none;
  z-index: 2;
}

.tl-leads-step {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 253px;
  padding: 20px 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(27, 27, 27, 0.04);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.tl-leads-step.is-visible {
  opacity: 1;
  transform: none;
}

.tl-leads-step.is-visible:hover {
  box-shadow: 0 12px 28px rgba(27, 27, 27, 0.07);
  border-color: rgba(255, 69, 0, 0.24);
}

.tl-leads-step:nth-child(odd)::after {
  content: "→";
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255, 69, 0, 0.32);
  pointer-events: none;
  z-index: 2;
}

.tl-leads-watermark {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
}

.tl-leads-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tl-leads-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tl-leads-step.is-visible:hover .tl-leads-icon {
  background: var(--signal);
  box-shadow: 0 6px 16px rgba(255, 69, 0, 0.28);
}

.tl-leads-title {
  min-width: 0;
}

.tl-leads-num {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--signal);
}

.tl-leads-step h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.tl-leads-step p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.55;
}

.tl-leads-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.tl-leads-tags li {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.06);
  border: 1px solid rgba(255, 69, 0, 0.12);
  font-size: 11px;
  font-weight: 500;
  color: #8a4a32;
}

.tl-leads-viz {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 2px;
}

.viz-brief {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.viz-win {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.viz-win-label {
  padding: 4px 7px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viz-win-body {
  display: grid;
  gap: 4px;
  padding: 7px;
  min-height: 42px;
}

.viz-win-body b {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.viz-win-body > i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: #ebe7e2;
}

.viz-win-body > i:nth-child(2) { width: 88%; }
.viz-win-body > i:nth-child(3) { width: 62%; }

.viz-win-chips,
.viz-win-subs {
  align-content: start;
  gap: 4px;
}

.viz-win-chips em,
.viz-win-subs em {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 2px 6px;
  border-radius: 999px;
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viz-win-chips em {
  background: rgba(255, 69, 0, 0.08);
  color: #8a4a32;
}

.viz-win-subs em {
  background: var(--ink);
  color: #fff;
}

.viz-win-subs--dense {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-content: start;
}

.viz-win-subs--dense em {
  padding: 2px 5px;
  font-size: 8px;
}

.viz-scan {
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.viz-scan span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
  padding: 6px 8px;
  border-radius: 9px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 500;
}

.viz-scan i {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  color: #666;
}

.viz-scan b {
  flex: 0 0 auto;
  color: var(--signal);
  font-weight: 700;
}

.viz-post {
  display: block;
}

.viz-comment {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.viz-comment-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-top: 2px;
}

.viz-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid var(--signal);
}

.viz-comment-rail b {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.viz-comment-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.viz-comment-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  font-size: 10px;
  line-height: 1;
}

.viz-avatar {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), #ff8a4c);
}

.viz-comment-meta em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

.viz-comment-meta i {
  font-style: normal;
  color: var(--muted);
}

.viz-comment-meta strong {
  margin-left: auto;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.1);
  color: var(--signal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.viz-comment-text {
  font-size: 11px;
  font-weight: 500;
  color: #555;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viz-url span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.viz-urls {
  display: grid;
  gap: 5px;
}

.viz-urls span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: #666;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ===== GEO how visuals ===== */
.viz-prompt,
.viz-cited,
.viz-place,
.viz-cycle {
  display: block;
}

/* tighten GEO chat/cycle to same footprint as leads visuals */
.viz-chat {
  display: grid;
  gap: 4px;
}

.viz-chat-user {
  justify-self: end;
  max-width: 90%;
  padding: 5px 9px;
  border-radius: 12px 12px 4px 12px;
  background: #1f2114;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

.viz-chat-ai {
  display: grid;
  gap: 2px;
  max-width: 94%;
  padding: 6px 9px;
  border-radius: 4px 12px 12px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.viz-chat-ai i {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f780f;
}

.viz-chat-ai b {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.viz-chat-ai em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: var(--signal);
}

.viz-cited {
  display: grid;
  gap: 2px;
}

.viz-cited-head,
.viz-cited-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px 28px;
  gap: 4px;
  align-items: center;
}

.viz-cited-head {
  padding: 0 2px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.viz-cited-head span:nth-child(2),
.viz-cited-head span:nth-child(3),
.viz-cited-row strong,
.viz-cited-row > i {
  text-align: center;
}

.viz-cited-row {
  padding: 3px 7px;
  border-radius: 8px;
  background: var(--paper);
}

.viz-cited-post {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.viz-cited-post em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  color: var(--signal);
  line-height: 1;
}

.viz-cited-post b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.viz-cited-row strong,
.viz-cited-row > i {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.viz-place-thread {
  display: grid;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.viz-place-meta {
  font-size: 10px;
  color: var(--muted);
}

.viz-place-meta em {
  font-style: normal;
  font-weight: 600;
  color: var(--signal);
}

.viz-place-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.viz-place-comment {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.viz-place-bubble {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 4px 12px 12px 12px;
  background: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.16);
  font-size: 11px;
  font-weight: 500;
  color: #444;
  line-height: 1.35;
}

.viz-place-bubble b {
  color: var(--ink);
}

.viz-place-bubble strong {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

html[data-track="geo"] .viz-place-bubble {
  background: rgba(231, 242, 86, 0.22);
  border-color: rgba(140, 150, 40, 0.24);
}

html[data-track="geo"] .viz-place-thread {
  padding: 12px 10px 14px;
}

html[data-track="geo"] .viz-cycle-stat {
  padding: 12px 10px;
}

html[data-track="geo"] .viz-cycle-bars {
  padding: 12px 10px;
}

.viz-cycle-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 5px;
  align-items: stretch;
}

.viz-cycle-stat {
  display: grid;
  gap: 1px;
  padding: 10px 10px;
  border-radius: 9px;
  background: var(--paper);
}

.viz-cycle-stat em {
  font-style: normal;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.viz-cycle-stat b {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.viz-cycle-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 10px 10px;
  border-radius: 9px;
  background: #1f2114;
  min-width: 52px;
}

.viz-cycle-bars i {
  display: block;
  width: 6px;
  border-radius: 2px 2px 0 0;
  background: var(--lime);
  opacity: 0.45;
}

.viz-cycle-bars i:nth-child(1) { height: 8px; }
.viz-cycle-bars i:nth-child(2) { height: 12px; opacity: 0.55; }
.viz-cycle-bars i:nth-child(3) { height: 16px; opacity: 0.75; }
.viz-cycle-bars i:nth-child(4) { height: 22px; opacity: 1; }
.viz-cycle-bars i:nth-child(5) { display: none; }

@media (max-width: 720px) {
  .tl-leads {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tl-leads::before,
  .tl-leads-step:nth-child(odd)::after {
    display: none;
  }

  .tl-leads-watermark {
    font-size: 56px;
    top: -6px;
    right: 8px;
  }

  .tl-leads-step {
    min-height: 0;
    padding: 18px 16px 16px;
  }

  .tl-leads-step h3 {
    font-size: 18px;
  }

  html[data-track="geo"] .section-how h2.for-geo {
    white-space: normal;
    font-size: clamp(26px, 7vw, 36px);
  }

  .viz-brief {
    grid-template-columns: 1fr 1fr;
  }

  .viz-brief .viz-win:last-child {
    grid-column: 1 / -1;
  }

  .viz-cycle-row {
    grid-template-columns: 1fr 1fr auto;
    align-items: stretch;
  }

  .viz-cycle-bars {
    grid-column: auto;
    justify-self: end;
    width: auto;
    min-width: 44px;
    min-height: 0;
    padding: 8px 8px;
    gap: 2px;
  }

  .viz-cycle-bars i {
    width: 5px;
  }
}

.steps,
.reasons {
  display: grid;
  gap: 12px;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.reasons {
  grid-template-columns: repeat(4, 1fr);
}

.steps article {
  display: flex;
  flex-direction: column;
  min-height: 160px;
  padding: 28px 24px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.steps .num,
.steps .step-n {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  line-height: 1;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  /* одна строка: обрезаем если не влезает */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.steps p:not(.num):not(.step-n) {
  margin: 0;
  flex: 1;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ===== Timeline (how-we-work) — geo variant ===== */
.tl {
  position: relative;
  margin-top: 56px;
}

.tl-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 32px;
  position: relative;
}

.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tl-n {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 1;
  position: relative;
}

html[data-track="geo"] .tl-n {
  background: #1f2114;
  color: var(--lime);
  border: 1px solid rgba(231,242,86,0.4);
}

.tl-line {
  flex: 1;
  width: 2px;
  background: var(--line);
  margin: 6px 0;
  min-height: 32px;
}

.tl-card {
  padding: 0 0 48px;
}

.tl-card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tl-card p {
  margin: 0 0 16px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 56ch;
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tl-tags li {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

html[data-track="geo"] .tl-tags li {
  background: #1c1c1c;
  border-color: #2d2d2d;
  color: #aaa;
}


/* scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal]:nth-child(1) { transition-delay: 0ms; }
[data-reveal]:nth-child(2) { transition-delay: 80ms; }
[data-reveal]:nth-child(3) { transition-delay: 160ms; }
[data-reveal]:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tl-leads-icon,
  .tl-leads-connector,
  .tl-leads-body,
  .tl-leads-body::before,
  .tl-leads-step,
  .section-pricing .card {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}


.section-why {
  padding: 8px 0 56px;
}

.why-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 8px 4px 24px;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-list article {
  padding: 22px 28px 22px 0;
  border-bottom: 1px solid var(--line);
}

.why-list article:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.why-list article:nth-child(even) {
  padding-left: 32px;
}

.why-list h3 {
  margin: 0 0 8px;
  padding-left: 12px;
  border-left: 2px solid var(--signal);
  font-size: 16px;
}

.why-list p {
  margin: 0;
  font-size: 14px;
  color: #555;
  max-width: 36ch;
}

.geo-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.geo-split .section-head {
  margin-bottom: 16px;
}

.geo-split .stat {
  font-size: clamp(56px, 7vw, 88px);
}

.geo-split .stat-label {
  font-size: 18px;
  max-width: 28ch;
}

.geo-points {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.geo-points li {
  padding: 10px 0;
  border-top: 1px solid #2d2d2d;
  color: #c9c9c9;
  font-size: 15px;
}

.geo-points li:last-child {
  border-bottom: 1px solid #2d2d2d;
}

.geo-points strong {
  color: #fff;
  font-weight: 700;
}

.geo-split .compare {
  margin-top: 0;
}

.geo-split .compare article {
  padding: 16px 18px;
  background: #1c1c1c;
  border: 1px solid #2c2c2c;
  color: #b8b8b8;
}

.geo-split .compare article h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 15px;
}

.geo-split .compare article p {
  margin: 0;
  color: #b8b8b8;
}

.geo-split .compare article:last-child {
  background: #1f2114;
  border-color: rgba(231, 242, 86, 0.45);
}

.geo-split .compare article:last-child h3 {
  color: var(--lime);
}

.proof-geo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
  align-items: start;
}

.proof-geo-left {
  margin-top: -16px;
}

.proof-geo-left .section-head {
  margin-bottom: 16px;
}

.proof-geo-left .section-head h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  max-width: 28ch;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.proof-geo-left .stat {
  margin-top: 8px;
  font-size: clamp(56px, 7vw, 88px);
}

.proof-geo-left .stat-label {
  font-size: 18px;
  max-width: 28ch;
}

.proof-geo-left .compare {
  margin-top: 32px;
}

.proof-geo-left .compare article {
  padding: 16px 18px;
  background: #1c1c1c;
  border: 1px solid #2c2c2c;
  color: #b8b8b8;
}

.proof-geo-left .compare article h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 15px;
}

.proof-geo-left .compare article p {
  margin: 0;
  color: #b8b8b8;
}

.proof-geo-left .compare article:last-child {
  background: #1f2114;
  border-color: rgba(231, 242, 86, 0.45);
}

.proof-geo-left .compare article:last-child h3 {
  color: var(--lime);
}

.cover {
  min-width: 0;
}

.cover-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 64px;
  column-gap: 12px;
  align-items: end;
  margin-bottom: 6px;
}

.cover-head p,
.cover-head span {
  padding-bottom: 6px;
  border-bottom: 1px solid #2d2d2d;
}

.cover-head p {
  margin: 0;
  color: #c9c9c9;
  font-size: 12px;
  font-weight: 600;
}

.cover-head span {
  align-self: end;
  color: #8a8a8a;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
}

.cover-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cover-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 64px;
  column-gap: 0;
  align-items: start;
  background: #fff;
  border: 1px solid #e6e5e3;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.cover-list li::before,
.cover-list li::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  background: #e6e5e3;
  width: 1px;
  z-index: 0;
  pointer-events: none;
}

.cover-list li::before {
  /* между колонкой поста и Retrievals */
  left: calc(100% - 52px - 64px);
}

.cover-list li::after {
  /* между Retrievals и % of prompts */
  left: calc(100% - 64px);
}

.cover-list .rd--sm {
  background: transparent;
  border: none;
  border-radius: 0;
}

.cover .rd {
  max-width: none;
  min-width: 0;
  color: var(--ink);
}

.rd--sm {
  padding: 6px 10px 6px;
  border-radius: 8px;
}

.rd--sm .rd-meta {
  font-size: 10px;
  line-height: 1;
  gap: 4px;
}

.rd--sm .rd-logo {
  width: 12px;
  height: 12px;
}

.rd--sm .rd-title {
  display: block;
  min-width: 0;
  margin-top: 3px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rd--sm .rd-text {
  display: none;
}

.rd--sm .rd-pills {
  margin-top: 5px;
  gap: 4px;
}

.rd--sm .rd-pill--sm {
  height: 16px;
  margin-top: 0;
  padding: 0 6px;
  font-size: 10px;
  gap: 3px;
}

.rd--sm .rd-pill--sm img {
  width: 8px;
  height: 8px;
}

.cover-list b,
.cover-list em {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  align-self: center;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  font-style: normal;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1;
  height: auto;
  color: var(--ink);
  font-size: 14px;
}

.cover-list b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cover-list em {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cards {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.cards-2 {
  grid-template-columns: 1fr 1fr;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.card-body {
  flex: 1 1 auto;
}

.card p,
.card li {
  color: #555;
}

.card h3 {
  margin: 0 0 12px;
}

.card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding: 8px 0 8px 16px;
  border-top: 1px solid #efeeec;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
}

.card-foot {
  margin-top: auto;
  padding-top: 20px;
}

.card-foot .btn {
  width: 100%;
}

.price {
  margin: 0 0 12px;
  font-size: 15px;
  color: #555;
}

.price span,
.units span {
  display: block;
  margin-bottom: 4px;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
}

.unit,
.note {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.card-foot .unit {
  margin: 0 0 12px;
}

.note.center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  margin: 0 0 10px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-quiet {
  background: #efeeec;
  color: #555;
}

.card-managed .badge-quiet {
  background: #2a2a2a;
  color: #d0d0d0;
}

.card-geo {
  border-color: var(--ink);
}

.card-custom {
  background: #fff;
  border-color: var(--signal);
  border-width: 2px;
}

.card-custom .btn-ink {
  background: var(--signal);
  color: #fff;
}

.card-custom .btn-ink:hover {
  background: var(--signal-dark);
}

.lead-line {
  font-size: 17px;
  color: var(--ink) !important;
  margin: 0 0 10px;
}

.units {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.card-managed {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.card-managed p,
.card-managed li {
  color: #c8c8c8;
}

.card-managed .price span,
.card-managed .lead-line,
.card-managed h3 {
  color: #fff;
}

.card-managed li {
  border-top-color: #2d2d2d;
}

.num {
  margin: 0 0 8px;
  color: var(--signal);
  font-weight: 500;
}

.feature-row,
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-row li,
.proof li {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.section-data {
  background: var(--ink);
  color: #fff;
  padding-bottom: 72px;
}

.section-cross {
  padding: 72px 0 56px;
}

.section-head.light p {
  color: #c9c9c9;
}

.data-panel {
  padding: 32px;
  border: 1px solid #2d2d2d;
  border-radius: var(--radius);
  background: #141414;
}

.stat {
  margin: 0;
  font-size: clamp(64px, 9vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--lime);
  font-weight: 500;
}

.stat-label {
  margin: 16px 0 0;
  font-size: 22px;
  max-width: 24ch;
  line-height: 1.25;
}

.stat-note {
  margin: 12px 0 0;
  color: #9a9a9a;
  max-width: 56ch;
  font-size: 14px;
}

.stat-why {
  margin: 14px 0 0;
  max-width: 40ch;
  color: #d8d8d8;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.geo-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.geo-flow > span {
  padding: 8px 12px;
  background: #1c1c1c;
  border: 1px solid #2c2c2c;
  border-radius: 999px;
  color: #e8e8e8;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.geo-flow > span:last-of-type {
  background: #1f2114;
  border-color: rgba(231, 242, 86, 0.45);
  color: var(--lime);
}

.geo-flow-arrow {
  width: 16px;
  flex: 0 0 auto;
}

.geo-flow-arrow::before {
  content: "→";
  color: rgba(231, 242, 86, 0.7);
  font-size: 13px;
}

.geo-how-lede {
  margin: 0;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.4;
  color: #c9c9c9;
}

.path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.path li {
  padding: 8px 12px;
  border-radius: 8px;
  background: #222;
  font-size: 13px;
  font-weight: 500;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.compare article {
  padding: 16px 18px;
  border-radius: 12px;
  background: #1c1c1c;
  border: 1px solid #2c2c2c;
  color: #b8b8b8;
}

.compare article h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
}

.compare article p {
  margin: 0;
  color: #b8b8b8;
}

.compare article:last-child {
  background: #1f2114;
  border-color: rgba(231, 242, 86, 0.4);
  color: #d7d7d7;
}

.compare article:last-child h3 {
  color: var(--lime);
}

.section-cross {
  padding: 72px 0 56px;
}

.cross {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cross p {
  margin: 8px 0 0;
  color: #555;
  max-width: 52ch;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote blockquote {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--ink);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.quote-ava {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.quote:nth-child(2) .quote-ava {
  background: var(--signal);
}

.quote:nth-child(3) .quote-ava {
  background: #1f2114;
  color: var(--lime);
}

.quote b,
.quote em {
  display: block;
}

.quote b {
  font-size: 14px;
  font-weight: 500;
}

.quote em {
  margin-top: 2px;
  font-style: normal;
  font-size: 13px;
  color: #7a7a7a;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--signal);
}

.faq p {
  margin: 0 0 18px;
  color: #555;
  max-width: 58ch;
}

.final {
  padding: 0 0 48px;
}

.final .wrap,
.final-split {
  padding: 40px 36px;
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
}

.final-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 28px;
  align-items: stretch;
  text-align: left;
}

.final-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.final-main h2 {
  max-width: 18ch;
}

.final p {
  color: #c9c9c9;
}

.final-main > p {
  margin: 12px 0 0;
  max-width: 42ch;
}

.final .hero-cta {
  justify-content: flex-start;
  margin-top: 22px;
}

.final .btn-ghost {
  border-color: #5a5a5a;
}

.final-prices {
  margin-top: 16px;
  font-size: 13px;
}

.final-switch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 16px;
  background: #1f2114;
  border: 1px solid rgba(231, 242, 86, 0.22);
}

.final-switch--leads {
  background: #241812;
  border-color: rgba(255, 69, 0, 0.28);
}

.final-switch-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.final-switch-stat {
  margin: 4px 0 0;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--lime);
}

.final-switch--leads .final-switch-stat {
  color: var(--signal);
}

.final-switch-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.final-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: #1b1b1b;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.final-switch--leads .final-switch-btn {
  background: var(--signal);
  color: #fff;
}

.final-switch-btn:hover {
  filter: brightness(1.05);
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 36px 0 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2c2c2c;
}

.footer-brand {
  flex: 0 0 auto;
}

.footer-brand img {
  width: 132px;
  margin: 0 0 10px;
}

.footer-brand p {
  margin: 0;
  max-width: 28ch;
}

.footer-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1 1 auto;
  max-width: 620px;
}

.contact-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  min-height: 64px;
  padding: 10px 14px;
  background: #242424;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  color: #fff !important;
}

.contact-link:hover {
  border-color: var(--signal);
}

.contact-link img {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
}

.contact-link span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.contact-link small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  max-width: 42ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-nav a {
  margin: 0;
  white-space: nowrap;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: none;
  align-items: center;
}

.sticky-cta.is-on {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .why-list {
    grid-template-columns: 1fr;
  }

  .why-list article:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }

  .why-list article:nth-child(even) {
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  main {
    display: flex;
    flex-direction: column;
  }

  #agencies { order: 1; }
  #how { order: 2; }
  #pricing { order: 3; }
  #testimonials { order: 4; }
  #faq { order: 5; }
  .final { order: 6; }

  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .logo img {
    width: 118px;
  }

  .nav,
  .header-actions .btn:not(.btn-order-sm) {
    display: none;
  }

  .header-actions .btn-order-sm {
    display: inline-flex;
  }

  .menu-btn {
    display: block;
  }

  .hero-grid,
  .cards-2,
  .cards-3,
  .quotes,
  .compare,
  .faq-grid,
  .footer-contacts,
  .cross,
  .units,
  .strip-row,
  .steps,
  .bento,
  .geo-split,
  .proof-geo {
    grid-template-columns: 1fr;
  }

  .quote {
    padding: 22px 20px;
  }

  .quote blockquote {
    font-size: 17px;
  }

  .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contacts {
    max-width: none;
    width: 100%;
  }

  .contact-link {
    min-width: 0;
  }

  .contact-link span {
    min-width: 0;
  }

  .contact-link small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .proof-geo-left {
    margin-top: 0;
  }

  .cover {
    grid-template-columns: minmax(0, 1fr) 44px 56px;
    column-gap: 8px;
  }

  .cover-list li {
    grid-template-columns: minmax(0, 1fr) 44px 56px;
  }

  .cover-list li::before {
    left: calc(100% - 44px - 56px);
  }

  .cover-list li::after {
    left: calc(100% - 56px);
  }

  .cover-list b,
  .cover-list em {
    font-size: 13px;
  }

  .cover-head span {
    font-size: 7px;
    letter-spacing: 0.02em;
  }

  .bento article,
  .bento article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .switch-row {
    flex-direction: column;
    align-items: stretch;
  }

  .price-switch {
    width: auto;
    max-width: none;
    flex: none;
  }

  .strip-row {
    padding: 16px 0;
    text-align: left;
  }

  .final .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .final .hero-cta .btn {
    width: 100%;
  }

  .final-prices {
    font-size: 12px;
    line-height: 1.45;
  }

  .site-footer {
    padding-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1120px, calc(100% - 32px));
  }

  .hero {
    padding: 36px 0 48px;
  }

  .section {
    padding: 44px 0;
  }

  .section-proof,
  html[data-track="geo"] .section-proof {
    justify-content: flex-start;
    min-height: 0;
    padding: calc(var(--header) + 28px) 0 40px;
  }

  .final .wrap,
  .final-split {
    padding: 28px 18px;
  }

  .final-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .final-main h2 {
    max-width: none;
    font-size: clamp(26px, 7vw, 34px);
  }

  .final-switch {
    padding: 18px 16px;
  }

  .final-switch-stat {
    font-size: clamp(36px, 10vw, 48px);
  }

  .cover {
    grid-template-columns: minmax(0, 1fr) 40px 48px;
    column-gap: 6px;
  }

  .cover-list li {
    grid-template-columns: minmax(0, 1fr) 40px 48px;
  }

  .cover-list li::before {
    left: calc(100% - 40px - 48px);
  }

  .cover-list li::after {
    left: calc(100% - 48px);
  }

  .rd--sm .rd-title {
    font-size: 13px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gate,
  .gate-panel {
    transition: none !important;
  }

  .site-header {
    transition: none !important;
  }
}

html.is-gate,
html.is-gate body {
  overflow: hidden;
  height: 100%;
  background: #111;
}

html.is-gate main,
html.is-gate .site-footer,
html.is-gate .sticky-cta {
  display: none !important;
}

html[data-track="leads"] .for-geo,
html[data-track="geo"] .for-leads {
  display: none !important;
}

html:not([data-track]) .for-geo,
html:not([data-track]) .for-leads {
  display: none !important;
}

.header-track {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-width: 132px;
  padding: 3px;
  border: 1px solid #4a4a4a;
  border-radius: 8px;
}

html[data-track] .header-track {
  display: grid;
}

.header-track button {
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

html[data-track="leads"] .header-track [data-choose="leads"],
html[data-track="geo"] .header-track [data-choose="geo"] {
  background: #fff;
  color: var(--ink);
}

.gate {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #111;
  color: #fff;
}

html.is-gate .gate {
  height: 100%;
  min-height: 100%;
}

@media (max-width: 960px) {
  html.is-gate,
  html.is-gate body {
    overflow: auto;
    height: auto;
    min-height: 100%;
    background: #111;
  }

  html.is-gate .gate {
    height: auto;
    min-height: 100dvh;
    background: #111;
  }
}

.gate-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
  padding: 0 28px;
  border-bottom: 1px solid #2a2a2a;
  flex: 0 0 auto;
}

.gate-bar img {
  width: 128px;
  height: auto;
}

.gate-bar p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.gate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  flex: 1 1 auto;
  min-height: 0;
  transition: grid-template-columns 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gate-split:has(.gate-panel--leads:hover) {
  grid-template-columns: 1.36fr 0.82fr;
}

.gate-split:has(.gate-panel--geo:hover) {
  grid-template-columns: 0.82fr 1.36fr;
}

.gate-panel {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  align-items: start;
  justify-items: start;
  min-width: 0;
  padding: 36px 36px 28px;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.gate-panel--leads {
  background: var(--paper);
  color: var(--ink);
}

.gate-panel--geo {
  background: #111;
  color: #f3f3f3;
  border-left: 1px solid #2a2a2a;
}

.gate-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gate-panel--leads .gate-kicker {
  color: var(--signal);
}

.gate-panel--geo .gate-kicker {
  color: var(--lime);
}

.gate-title {
  display: block;
  max-width: 11ch;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.gate-panel--geo .gate-title {
  max-width: 22ch;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.05;
}

.gate-sub {
  display: block;
  max-width: 34ch;
  margin-top: 12px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.gate-copy {
  display: block;
  max-width: 36ch;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.72;
}

.gate-visual {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  min-height: 0;
  margin-top: 22px;
}

.gate-visual .rd,
.gate-visual .gpt {
  flex: 1 1 auto;
  height: auto;
  min-height: 100%;
}

.rd,
.gpt {
  display: flex;
  width: 100%;
  max-width: 560px;
  min-height: 0;
  overflow: hidden;
  text-align: left;
  border-radius: 12px;
}

.rd {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 14px 16px 14px;
  background: #fff;
  border: 1px solid #e6e5e3;
}

.rd-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 28px;
  gap: 4px;
  padding-top: 2px;
  color: var(--signal);
}

.rd-vote img {
  display: block;
  width: 14px;
  height: 14px;
}

.rd-down {
  transform: rotate(180deg);
  opacity: 0.35;
}

.rd-vote b {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.rd-main {
  min-width: 0;
  flex: 1;
}

.rd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #787c7e;
  font-size: 12px;
  font-weight: 500;
}

.rd-logo {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.rd-sub {
  color: var(--signal);
}

.rd-title {
  display: block;
  margin-top: 6px;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.rd-text {
  display: block;
  margin-top: 6px;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.45;
}

.rd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.rd-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #1a1a1b;
  font-size: 13px;
  font-weight: 600;
}

.rd-pill img {
  width: 14px;
  height: 14px;
}

.rd-cmt-text {
  display: block;
}

.rd-pill--sm {
  display: flex;
  width: fit-content;
  height: 28px;
  margin-top: 8px;
  padding: 0 8px;
  font-size: 12px;
}

.rd-pill--sm img {
  width: 12px;
  height: 12px;
}

.rd-down {
  transform: rotate(180deg);
  opacity: 0.4;
}

.rd-cmt {
  display: block;
  margin-top: 12px;
  padding: 10px 12px;
  border-left: 2px solid #edeff1;
  background: #f6f7f8;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  line-height: 1.4;
  color: #1a1a1b;
}

.rd-cmt-meta {
  display: block;
  margin-bottom: 4px;
  color: #787c7e;
  font-size: 12px;
  font-weight: 500;
}

.gpt {
  flex-direction: column;
  background: #fff;
  color: #0d0d0d;
  border: 1px solid #e5e5e5;
}

.gpt-top {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid #ececec;
  color: #0d0d0d;
  font-size: 13px;
  font-weight: 600;
}

.gpt-user {
  display: block;
  align-self: flex-end;
  max-width: 92%;
  margin: 14px 14px 0;
  padding: 10px 14px;
  border-radius: 18px;
  background: #f4f4f4;
  font-size: 14px;
  line-height: 1.4;
}

.gpt-bot {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 14px 0;
}

.gpt-ava {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: #0d0d0d;
}

.gpt-msg {
  min-width: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #0d0d0d;
}

.gpt-msg--short {
  display: none;
}

.rd-cmt strong,
.rd-cmt-text strong,
.gpt-msg strong,
.gate-copy strong {
  font-weight: 700;
}

.gpt-ref {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 3px;
  border-radius: 4px;
  background: #ececec;
  color: #444;
  font-size: 10px;
  font-weight: 600;
  vertical-align: 2px;
}

.gpt-src {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: auto 14px 14px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
}

.gpt-src-label {
  flex: 0 0 auto;
  color: #6b6b6b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gpt-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #444;
  font-size: 12px;
  line-height: 1.2;
}

.gpt-chip img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.gpt-chip b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-size: 10px;
}

.gate-cta {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.gate-panel--leads .gate-cta {
  background: var(--signal);
  color: #fff;
}

.gate-panel--geo .gate-cta {
  background: var(--lime);
  color: var(--ink);
}

@media (max-width: 960px) {
  .gate-bar {
    display: none;
  }

  .gate {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    background: #111;
  }

  .gate-split {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .gate-split:has(.gate-panel--leads:hover),
  .gate-split:has(.gate-panel--geo:hover) {
    grid-template-columns: none;
  }

  .gate-split:hover .gate-panel,
  .gate-split:hover .gate-panel:hover {
    flex: none;
  }

  .gate-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-row: auto;
    grid-template-rows: none;
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
    padding: 22px 18px 18px;
  }

  .gate-panel--geo {
    flex: 1 1 auto;
    border-left: 0;
    border-top: 1px solid #2a2a2a;
  }

  .gate-kicker {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .gate-title,
  .gate-panel--geo .gate-title {
    max-width: none;
    font-size: clamp(24px, 6.4vw, 30px);
  }

  .gate-panel--geo .gate-title {
    font-size: clamp(22px, 5.8vw, 28px);
  }

  .gate-sub {
    max-width: none;
    margin-top: 8px;
    font-size: 15px;
  }

  .gate-copy {
    max-width: none;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
  }

  .gate-visual {
    display: flex;
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    margin-top: 12px;
  }

  .gate .rd,
  .gate .gpt {
    max-width: none;
    overflow: visible;
    height: auto;
    min-height: 0;
  }

  .gate .rd {
    padding: 12px 12px 12px;
  }

  .gate .rd-meta {
    font-size: 11px;
  }

  .gate .rd-logo {
    width: 16px;
    height: 16px;
  }

  .gate .rd-title {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.3;
  }

  .gate .rd-pills {
    margin-top: 8px;
    gap: 6px;
  }

  .gate .rd-pill {
    height: 28px;
    padding: 0 8px;
    font-size: 12px;
  }

  .gate .rd-cmt {
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .gate .rd-cmt-meta {
    font-size: 11px;
  }

  .gate .rd-pill--sm {
    height: 24px;
    margin-top: 6px;
    font-size: 11px;
  }

  .gate .gpt-top {
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .gate .gpt-user {
    margin: 10px 10px 0;
    padding: 8px 12px;
    font-size: 13px;
  }

  .gate .gpt-bot {
    gap: 8px;
    margin: 10px 10px 0;
  }

  .gate .gpt-ava {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .gate .gpt-msg--full {
    display: none;
  }

  .gate .gpt-msg--short {
    display: block;
    font-size: 12px;
    line-height: 1.35;
  }

  .gate .gpt-ref {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .gate .gpt-src {
    margin: 8px 10px 10px;
    padding-top: 8px;
    gap: 6px;
  }

  .rd-text {
    display: none;
  }

  .gate-cta {
    align-self: flex-end;
    margin-top: 14px;
  }

  .header-track {
    min-width: 112px;
  }
}
