:root {
  --bg: #ffffff;
  --ink: #0a0a0b;
  --muted: #5f5f66;
  --faint: #9a9aa2;
  --line: #e6e6ea;
  --panel: #f6f6f4;
  --panel-2: #efeff0;
  --blue: #2b38ff;
  --blue-soft: rgba(43, 56, 255, 0.07);
  --lime: #c9f74a;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
section { scroll-margin-top: 72px; }
.kicker {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue); font-weight: 700;
}
h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; }

/* ---------- logo (text only) ---------- */
.logo {
  font-family: var(--display); font-weight: 800; font-size: 1.02rem;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
.logo .slash { color: var(--blue); margin: 0 0.14em; }

/* ---------- header ---------- */
.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink);
}
.site__inner {
  max-width: 1080px; margin: 0 auto; padding: 0.85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site__nav { display: flex; gap: 1.6rem; }
.site__nav a {
  color: var(--ink); font-weight: 600; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.site__nav a:hover, .site__nav a.active { color: var(--blue); }

/* ---------- hero ---------- */
.hero { padding: 4.5rem 0 3.5rem; }
.hero h1 { font-size: clamp(2.5rem, 6.5vw, 4.6rem); line-height: 1.02; margin: 1rem 0 0; max-width: 15ch; }
.hero__sub { margin: 1.35rem 0 0; max-width: 42ch; font-size: 1.08rem; color: var(--muted); }
.hero__stats { margin-top: 2.75rem; display: flex; gap: 3.5rem; flex-wrap: wrap; }
.hstat__num { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.hstat__bar { display: block; height: 3px; width: 2.5rem; background: var(--blue); margin: 0.6rem 0; }
.hstat__label { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }

/* ---------- clients slider (full-width black band, no label) ---------- */
.clients-band { background: var(--ink); color: #fff; padding: 1.5rem 0; }
.marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap;
  animation: marquee 48s linear infinite; will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* each client name approximates its real wordmark's font, and hovers to its
   brand colour (colours are close approximations). */
.cl { color: rgba(255,255,255,0.8); font-size: 1.4rem; font-weight: 700; line-height: 1; transition: color 0.18s; cursor: default; }
.cl--cursor { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 600; letter-spacing: -0.03em; }
.cl--cursor:hover { color: #ffffff; }
.cl--polymarket { font-family: "Space Grotesk", var(--sans); }
.cl--polymarket:hover { color: #4d7cff; }
.cl--kalshi { font-family: "Poppins", var(--sans); font-weight: 600; }
.cl--kalshi:hover { color: #14d99a; }
.cl--perplexity { font-family: "Space Grotesk", var(--sans); font-weight: 500; }
.cl--perplexity:hover { color: #20c9d6; }
.cl--abacus { font-family: var(--sans); font-weight: 700; }
.cl--abacus:hover { color: #7c6cff; }
.cl--vertus { font-family: "Poppins", var(--sans); font-weight: 600; }
.cl--vertus:hover { color: #ff4665; }
.cl--invideo { font-family: "Poppins", var(--sans); font-weight: 600; text-transform: lowercase; }
.cl--invideo:hover { color: #ff4d94; }
.cl--higgsfield { font-family: var(--display); font-weight: 800; }
.cl--higgsfield:hover { color: #c6f542; }
.cl--stake { font-family: var(--display); font-weight: 800; font-style: italic; }
.cl--stake:hover { color: #4a90ff; }
.cl--kimi { font-family: "Poppins", var(--sans); font-weight: 500; }
.cl--kimi:hover { color: #a78bfa; }
.cl--rainbet { font-family: "Pacifico", cursive; font-weight: 400; font-size: 1.7rem; }
.cl--rainbet:hover { color: #b06cff; }

/* ---------- directory ---------- */
.directory { padding: 4rem 0 4.5rem; }
.directory h2 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.03; margin: 0.8rem 0 0; max-width: 16ch; }
.directory__sub { margin: 1.1rem 0 2.4rem; max-width: 46ch; color: var(--muted); font-size: 1.02rem; }

/* standalone /search tool page */
.tool { padding: 3rem 0 4.5rem; }
.tool h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.03; margin: 0.8rem 0 0; max-width: 16ch; }
.tool__sub { margin: 1.1rem 0 2.4rem; max-width: 54ch; color: var(--muted); font-size: 1.02rem; }

/* ---------- form ---------- */
form { max-width: 720px; }
.field { margin-bottom: 1.05rem; }
.field:last-of-type { margin-bottom: 0; }
label {
  display: block; margin-bottom: 0.4rem; font-size: 0.74rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 700;
}
.opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--faint); }
input[type="text"], textarea, select {
  width: 100%; background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 0.8rem 0.95rem; font: inherit; font-size: 0.98rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft);
}
textarea { resize: vertical; min-height: 2.7rem; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235f5f66' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.95rem center;
  padding-right: 2.2rem; cursor: pointer;
}
.demos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.demos--adv { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
@media (max-width: 560px) { .demos { grid-template-columns: 1fr; } }
.actions { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
button.go {
  background: var(--ink); color: #fff; border: 0; border-radius: 10px;
  padding: 0.85rem 1.8rem; font: inherit; font-weight: 700; font-size: 0.98rem;
  cursor: pointer; transition: background 0.15s;
}
button.go:hover { background: var(--blue); }
button.go:disabled { opacity: 0.5; cursor: default; }
.hint { color: var(--faint); font-size: 0.85rem; }
.count {
  display: inline-flex; align-items: center; gap: 0.45rem; margin: 0;
  color: var(--muted); font-size: 0.85rem; text-transform: none; letter-spacing: 0; font-weight: 400;
}
.count select { width: auto; padding: 0.4rem 1.9rem 0.4rem 0.7rem; font-size: 0.9rem; background-position: right 0.6rem center; }

/* ---------- results ---------- */
#status { min-height: 1.2rem; margin: 1.6rem 0 1.1rem; color: var(--muted); font-size: 0.92rem; }
.understood {
  background: var(--blue-soft); border: 1px solid rgba(43,56,255,0.2);
  border-radius: 12px; padding: 0.9rem 1.1rem; margin-bottom: 1.5rem;
  font-size: 0.94rem; color: var(--ink); max-width: 720px;
}
.understood b { color: var(--blue); font-weight: 700; }
.understood .cats { margin-top: 0.3rem; }
.chip {
  display: inline-block; margin: 0.2rem 0.3rem 0 0; padding: 0.18rem 0.6rem;
  border: 1px solid var(--line); border-radius: 999px; font-size: 0.76rem;
  color: var(--muted); background: #fff;
}
.chip--cat { border-color: rgba(43,56,255,0.3); color: var(--blue); }
#results { max-width: 720px; }
.card {
  position: relative; cursor: pointer; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.15rem 1.3rem;
  margin-bottom: 0.85rem; transition: border-color 0.15s, box-shadow 0.15s;
}
.card:hover { border-color: var(--blue); }
.card.sel { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.card__name { font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.card__link { display: inline-flex; align-items: center; margin-left: 0.5rem; color: var(--faint); vertical-align: -0.05em; }
.card__link:hover { color: var(--blue); }
.card__link svg { width: 0.8em; height: 0.8em; }
.card__right { display: flex; align-items: center; gap: 0.9rem; }
.card__reach { color: var(--blue); font-weight: 700; white-space: nowrap; font-size: 0.98rem; }
.card__cpm { color: var(--ink, #111); background: #eef2ff; border-radius: 999px; padding: 2px 9px; font-weight: 700; white-space: nowrap; font-size: 0.78rem; }
.card__check { width: 1.2rem; height: 1.2rem; accent-color: var(--blue); cursor: pointer; flex: none; }
.card__reason { margin: 0.5rem 0 0.65rem; color: var(--ink); font-size: 0.96rem; }
.card__meta { color: var(--faint); font-size: 0.83rem; }
.card__chips { margin-top: 0.5rem; }
.rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; margin-right: 0.6rem; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 0.76rem; font-weight: 700; vertical-align: middle;
}
.skeleton {
  height: 92px; border-radius: 14px; max-width: 720px; margin-bottom: 0.85rem;
  background: linear-gradient(90deg, #f5f5f2 25%, #ececea 50%, #f5f5f2 75%);
  background-size: 200% 100%; animation: sh 1.3s infinite;
}
@keyframes sh { to { background-position: -200% 0; } }
.note { color: var(--faint); font-size: 0.85rem; margin-top: 1.5rem; }
.err { color: #d1453b; }

/* ---------- stats ---------- */
.stats { margin-top: 2.75rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; } }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 2.8rem); line-height: 1; letter-spacing: -0.02em; }
.stat__bar { height: 3px; background: var(--blue); margin: 0.7rem 0; width: 100%; }
.stat__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); font-weight: 700; }
.stat__sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.1rem; }

/* ---------- about page ---------- */
.page { padding: 4rem 0 3rem; }
.page h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.03; margin: 1rem 0 0; max-width: 18ch; }
.prose { max-width: 60ch; margin-top: 1.8rem; }
.prose p { color: var(--muted); margin: 0 0 1.1rem; font-size: 1.06rem; }
.prose b { color: var(--ink); font-weight: 600; }
.motto-band { background: var(--blue); color: #fff; padding: 3.25rem 0; margin: 3rem 0; }
.motto-band p { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 2.8rem); line-height: 1.08; letter-spacing: -0.02em; margin: 0; max-width: 20ch; }
.mediums { margin-top: 2.5rem; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.mediums h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); font-weight: 700; margin: 0 0 0.8rem; }
.mediums p { color: var(--ink); font-size: 1.05rem; max-width: 60ch; margin: 0; }

/* ---------- contact (blue band) + footer ---------- */
.contact { background: var(--blue); color: #fff; padding: 4.5rem 0; }
.contact .kicker { color: rgba(255,255,255,0.85); }
.contact h2 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.03; margin: 1rem 0 1rem; max-width: 16ch; }
.contact__sub { max-width: 42ch; margin: 0 0 1.9rem; color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.contact__methods { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.contact__btn {
  display: inline-flex; align-items: center; gap: 0.5rem; background: #fff;
  color: var(--blue); border-radius: 10px; padding: 0.8rem 1.4rem; font-weight: 700;
  font-size: 0.96rem; transition: transform 0.12s;
}
.contact__btn:hover { transform: translateY(-2px); color: var(--blue); }
/* booking is the highest-intent action on the page, so it reads as the
   primary button while the messaging options stay equal to each other */
.contact__btn--call { background: var(--blue); color: #fff; }
.contact__btn--call:hover { color: #fff; }
.contact__note { margin-top: 1.4rem; font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.foot { background: var(--ink); color: #8f8f98; padding: 1.9rem 0; }
.foot__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
.foot .logo { color: #fff; }
.foot span { color: #8f8f98; font-size: 0.84rem; }
.foot a { color: #cfcfd6; }

/* ---------- enquiry bar + toast ---------- */
.enquirebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(255,255,255,0.97); border-top: 1px solid var(--ink); backdrop-filter: blur(10px);
  /* keep the bar clear of the iPhone home indicator */
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.enquirebar__inner { max-width: 1080px; margin: 0 auto; padding: 0.85rem 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.enquirebar__count { color: var(--muted); font-size: 0.92rem; white-space: nowrap; }
.enquirebar__count b { color: var(--ink); }
.enquirebar__btns { display: flex; gap: 0.6rem; flex-wrap: wrap; flex: 1; }
.enq {
  border: 1px solid var(--ink); background: #fff; color: var(--ink);
  border-radius: 10px; padding: 0.6rem 1rem; font: inherit; font-size: 0.9rem;
  font-weight: 700; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.enq:hover { background: var(--ink); color: #fff; }
.enq--wa:hover { background: #25d366; border-color: #25d366; color: #05270f; }
.enq--tg:hover { background: #29abe2; border-color: #29abe2; color: #04222e; }
.enq--em:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.enq--copy { border-color: var(--line); color: var(--muted); }
.enq--copy:hover { background: var(--panel-2); border-color: var(--ink); color: var(--ink); }
.enquirebar__clear { background: none; border: 0; color: var(--faint); cursor: pointer; font: inherit; font-size: 0.85rem; }
.enquirebar__clear:hover { color: var(--ink); }
.toast {
  position: fixed; bottom: 5.5rem; left: 50%; transform: translateX(-50%) translateY(10px);
  display: inline-flex; align-items: center; gap: 0.9rem; background: var(--ink); color: #fff;
  padding: 0.75rem 1.15rem; border-radius: 10px; font-size: 0.92rem; font-weight: 600; z-index: 60;
  opacity: 0; transition: opacity 0.25s, transform 0.25s; box-shadow: 0 10px 34px rgba(0,0,0,0.28); max-width: 92vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast__action { color: #8b93ff; font-weight: 800; text-decoration: none; white-space: nowrap; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 0.9rem; }
.toast__action:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .site__nav { gap: 1.1rem; }
  /* phone enquiry bar: count + Clear on the top row, buttons in a 2-col grid
     below (an odd last button spans the full width). Fixed heights and no
     wrapping surprises, so nothing clips off-screen. */
  .enquirebar__inner { padding: 0.7rem 0.9rem; gap: 0.55rem; }
  .enquirebar__count { order: 0; }
  .enquirebar__clear { order: 1; margin-left: auto; padding: 0; }
  .enquirebar__btns { order: 2; flex: none; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .enq { padding: 0.65rem 0.4rem; font-size: 0.84rem; text-align: center; white-space: nowrap; }
  .enquirebar__btns .enq:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* The pricing note under the search results. Folded away by default: it
   answers a question people only ask once, and it should not sit between
   somebody and their results. */
.pricing-note {
  margin: 1.75rem 0 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  max-width: 72ch;
}
.pricing-note > summary {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.pricing-note > summary::-webkit-details-marker { display: none; }
.pricing-note > summary::before {
  content: "+ ";
  color: var(--muted);
  font-weight: 400;
}
.pricing-note[open] > summary::before { content: "– "; }
.pricing-note[open] > summary { margin-bottom: 0.6rem; }
.pricing-note p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}
.pricing-note p:last-child { margin-bottom: 0; color: var(--ink); }
