/* ============ fonts ============ */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/PlusJakartaSans-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/Inter-var.woff2') format('woff2');
}

/* ============ tokens ============ */
:root {
  --ink: #0B1220;
  --ink-2: #0F172A;
  --ink-3: #1E293B;
  --paper: #F7FAFD;
  --card: #FFFFFF;
  --blue: #0284C7;
  --blue-deep: #0369A1;
  --blue-tint: #E0F2FE;
  --gold: #22D3EE;
  --star: #F5BE23;
  --rose: #F43F5E;
  --rose-deep: #C81E4A;
  --rose-tint: #FCE7EB;
  --gold-deep: #0E7490;
  --gold-tint: #CFFAFE;
  --slate: #55617A;
  --slate-2: #8A94AB;
  --text: #14203A;
  --line: #E2E7F0;
  --line-ink: rgba(255,255,255,.10);
  --pos: #1F9D61;
  --pos-tint: #E4F5EC;
  --neg: #D64545;
  --neg-tint: #FBEAEA;
  --r-chip: 999px;
  --r-btn: 10px;
  --r-card: 18px;
  --display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --mono: ui-monospace, 'Cascadia Code', Consolas, monospace;
  --w: 1140px;
}

/* ============ base ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; }
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 24px; }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink); padding: 10px 18px;
  font-weight: 600; border-radius: 0 0 var(--r-btn) 0; z-index: 100;
}
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ============ shared bits ============ */
.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); }
.dark .eyebrow { color: var(--gold); }
.dark .eyebrow::before { background: var(--gold); }
h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.12; letter-spacing: -.01em; margin: 14px 0 18px;
}
.lede { font-size: 1.125rem; color: var(--slate); max-width: 60ch; }
.dark .lede { color: #B9C2D6; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-size: 1rem; font-weight: 600;
  padding: 13px 26px; border-radius: var(--r-btn);
  text-decoration: none; border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(135deg, #0369A1 0%, #0284C7 62%, #0EA5E9 100%); color: #fff; box-shadow: 0 12px 28px rgba(3,105,161,.24); }
.btn-gold:hover { background: linear-gradient(135deg, #075985 0%, #0369A1 62%, #0284C7 100%); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-deep); }
.btn-ghost { border-color: var(--line-ink); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,.35); }
.btn-outline { border-color: var(--line); color: var(--text); background: var(--card); }
.btn-outline:hover { border-color: var(--slate-2); }

.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; fill: var(--star); }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .02em;
  padding: 3px 11px; border-radius: var(--r-chip);
}
.chip-pos { background: var(--pos-tint); color: var(--pos); }
.chip-neg { background: var(--neg-tint); color: var(--neg); }
.chip-blue { background: var(--blue-tint); color: var(--blue); }
.chip-gold { background: var(--rose-tint); color: var(--rose-deep); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* scroll reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-card, .btn { animation: none !important; transition: none !important; }
}

/* ============ nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,23,42,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-ink);
}
.nav-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.wordmark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  color: #fff; text-decoration: none; letter-spacing: -.01em;
}
.wordmark svg, .wordmark img { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: #C6CEDF; text-decoration: none; font-size: .95rem; font-weight: 500;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .signin {
  color: #E7ECF6; text-decoration: none; font-size: .95rem; font-weight: 600;
  padding: 8px 18px; border: 1px solid rgba(231, 236, 246, .35); border-radius: var(--r-btn);
  transition: border-color .15s ease, color .15s ease;
}
.nav-cta .signin:hover { color: #fff; border-color: rgba(231, 236, 246, .7); }
.nav-cta .btn { padding: 9px 20px; font-size: .95rem; }
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 430px) {
  .nav-cta { gap: 8px; }
  .nav-cta .signin { font-size: .88rem; padding: 7px 12px; }
  .nav-cta .btn { padding: 8px 13px; font-size: .88rem; }
  .wordmark { font-size: 1.15rem; }
}

/* ============ hero ============ */
.hero {
  background: linear-gradient(145deg, #06101F 0%, #0F172A 52%, #111827 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-sky { position: absolute; inset: 0; pointer-events: none; }
.hero-sky span {
  position: absolute; border-radius: 50%; background: var(--gold);
  opacity: .5;
}
.hero-in {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 6.4fr) minmax(0, 5.6fr);
  gap: 56px; align-items: center;
  padding: 88px 0 100px;
}
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.06; letter-spacing: -.015em;
  margin: 20px 0 22px;
}
.hero h1 .goldline { color: var(--gold); }
.hero .lede { margin-bottom: 34px; }
.hero .lede strong { color: #E7ECF6; font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 18px; font-size: .875rem; color: var(--slate-2); }
.hero-note strong { color: #D7DEEC; font-weight: 600; }
.hero-note a { color: #D7DEEC; font-weight: 600; }
.hero-note a:hover { color: #fff; }

/* URL-entry signup form — enter your website, land on signup prefilled */
.url-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 540px; }
.url-form input {
  flex: 1 1 230px; min-width: 0;
  font-family: var(--body); font-size: 1rem; font-weight: 500; color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(231, 236, 246, .28);
  border-radius: var(--r-btn);
  padding: 12px 18px;
}
.url-form input::placeholder { color: #7E8DA8; }
.url-form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.url-form .btn { flex: 0 0 auto; }
.url-form.center { justify-content: center; margin-left: auto; margin-right: auto; }
.cta-alt { margin-top: 18px; font-size: .95rem; }
.cta-alt a { color: #C6CEDF; font-weight: 600; }
.cta-alt a:hover { color: #fff; }

/* hero product vignette — the 3-things explainer */
.hero-stack { position: relative; min-height: 935px; }
.hero-card {
  position: absolute;
  background: var(--card); color: var(--text);
  border-radius: var(--r-card);
  box-shadow: 0 24px 60px rgba(4,10,24,.55);
  padding: 22px 20px 18px;
  width: min(400px, 92%);
  opacity: 0;
  animation: rise .7s ease forwards;
  transition: box-shadow .4s ease;
}
.hero-card.live { box-shadow: 0 24px 60px rgba(4,10,24,.55), 0 0 0 3px var(--gold); z-index: 9 !important; }
@keyframes rise {
  from { opacity: 0; transform: translateY(30px) rotate(var(--tilt, 0deg)); }
  to   { opacity: 1; transform: translateY(0) rotate(var(--tilt, 0deg)); }
}
.pillar-tag {
  position: absolute; top: -12px; left: 16px;
  background: var(--gold); color: var(--ink);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 12px; border-radius: var(--r-chip);
}
.hc-lead { --tilt: -1.4deg; top: 0; left: 0; animation-delay: .15s; z-index: 3; }
.hc-ai   { --tilt: 1.3deg; top: 330px; right: 0; animation-delay: .4s; z-index: 4; width: min(380px, 90%); }
.hc-rev  { --tilt: -1deg; top: 670px; left: 6%; animation-delay: .65s; z-index: 5; width: min(360px, 86%); }
.hc-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.hc-src { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--slate); }
.hc-src .badge {
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  font-size: .7rem; font-weight: 700; color: #fff;
}
.badge-g { background: var(--blue); }
.badge-r { background: #FF4500; }
.badge-y { background: #E02424; }
.badge-fb { background: #1877F2; }
.hc-time { font-family: var(--mono); font-size: .7rem; color: var(--slate-2); }
.hc-body { font-size: .92rem; line-height: 1.55; }
.hc-body .who { font-weight: 600; }
.hc-reply {
  margin-top: 12px; padding: 11px 13px;
  background: var(--blue-tint); border-left: 3px solid var(--blue);
  border-radius: 8px; font-size: .85rem; line-height: 1.5;
}
.hc-reply .tag {
  display: flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 5px;
}
.hc-reply .tag svg { width: 11px; height: 11px; fill: var(--gold); }
.hc-actions { display: flex; gap: 8px; margin-top: 10px; }
.hc-actions .mini {
  font-size: .78rem; font-weight: 600; padding: 6px 14px;
  border-radius: 7px; border: 1px solid var(--line);
  background: var(--card); cursor: default;
}
.hc-actions .mini.go { background: var(--rose); color: #fff; border-color: var(--rose); }

/* AI rank leaderboard */
.rank-query {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: .74rem; color: var(--slate);
  background: var(--paper); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: var(--r-chip); margin-bottom: 12px;
}
.model-chips { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.model-chips .chip { background: var(--paper); border: 1px solid var(--line); color: var(--slate); }
.model-chips .chip .dot { width: 7px; height: 7px; }
.dot-gpt { background: #74AA9C !important; }
.dot-gem { background: #4285F4 !important; }
.dot-cla { background: #D97757 !important; }
.rank-rows { display: grid; gap: 7px; }
.rank-row {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 10px;
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px;
  font-size: .86rem;
}
.rank-row .pos { font-family: var(--display); font-weight: 800; color: var(--slate-2); font-variant-numeric: tabular-nums; }
.rank-row .nm { font-weight: 600; }
.rank-row .delta { font-family: var(--mono); font-size: .72rem; color: var(--slate-2); }
.rank-row.you { background: var(--gold-tint); border-color: var(--gold); }
.rank-row.you .pos { color: var(--gold-deep); }
.rank-row.you .delta { color: var(--pos); font-weight: 700; }
.rank-foot { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.rank-foot .pct { font-family: var(--display); font-weight: 800; font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.rank-foot .lbl { font-size: .78rem; color: var(--slate-2); }
.rank-foot .up { color: var(--pos); font-weight: 700; font-size: .82rem; }

@media (max-width: 1080px) {
  .hero-in { grid-template-columns: 1fr; padding: 64px 0 80px; }
  /* Below the fan breakpoint, drop the absolute collage and stack the cards
     in normal flow so each one is fully readable regardless of its height. */
  .hero-stack { min-height: 0; max-width: 440px; margin: 0 auto; }
  .hero-stack .hero-card {
    position: relative; top: auto; left: auto; right: auto;
    --tilt: 0deg; width: 100%; margin: 0 0 30px;
  }
  .hero-stack .hero-card:last-child { margin-bottom: 0; }
}

/* ============ stats strip ============ */
.stats { background: var(--ink); color: #fff; border-top: 1px solid var(--line-ink); }
.stats-in {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 34px 0 42px;
}
.stat .n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.1;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.stat .l { font-size: .85rem; color: var(--slate-2); margin-top: 4px; max-width: 26ch; }
.stat .l strong { color: #D7DEEC; font-weight: 600; }
@media (max-width: 860px) { .stats-in { grid-template-columns: repeat(2, 1fr); } }

/* ============ pillar sections ============ */
.section { padding: 96px 0; }
.section.alt { background: #EDF0F5; }
.pillar {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
}
.pillar.flip .p-visual { order: -1; }
.p-copy .feats { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.p-copy .feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.p-copy .feats svg { width: 20px; height: 20px; flex: none; margin-top: 3px; fill: var(--gold); }
.p-copy .feats strong { font-weight: 600; }
.p-copy .feats span { color: var(--slate); }
.p-visual { position: relative; }
.p-frame {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 22px;
  box-shadow: 0 18px 44px rgba(20,32,58,.10);
  display: grid; gap: 14px;
}
.feed-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  background: var(--card);
}
.feed-card .hc-head { margin-bottom: 6px; }
.feed-card .hc-body { font-size: .88rem; }
.trend {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px;
  background: linear-gradient(180deg, #F0F9FF, #fff);
}
.trend .big {
  font-family: var(--display); font-weight: 800; font-size: 2rem;
  font-variant-numeric: tabular-nums;
}
.trend .delta { color: var(--pos); font-weight: 600; font-size: .9rem; }
.trend .lbl { color: var(--slate-2); font-size: .8rem; margin-left: auto; }
@media (max-width: 920px) {
  .pillar { grid-template-columns: 1fr; gap: 40px; }
  .pillar.flip .p-visual { order: 0; }
}

/* ============ agency band ============ */
.dark { background: var(--ink); color: #fff; }
.agency-in {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px; align-items: center; padding: 88px 0;
}
.swatch-row { display: flex; gap: 10px; margin-top: 26px; align-items: center; }
.swatch { width: 34px; height: 34px; border-radius: 10px; border: 2px solid rgba(255,255,255,.25); }
.swatch-row .lbl { font-family: var(--mono); font-size: .72rem; color: var(--slate-2); margin-left: 8px; }
.agency-mock {
  background: var(--ink-2); border: 1px solid var(--line-ink);
  border-radius: var(--r-card); padding: 20px; display: grid; gap: 12px;
}
.am-bar { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line-ink); }
.am-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--gold); display: grid; place-items: center; font-weight: 800; font-size: .8rem; color: var(--ink); font-family: var(--display); }
.am-bar .nm { font-weight: 600; font-size: .9rem; }
.am-bar .sub { font-size: .72rem; color: var(--slate-2); }
.am-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--ink-3); border-radius: 10px; font-size: .85rem; }
.am-row .meta { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: .7rem; color: var(--slate-2); }
.am-row .meta b { color: var(--gold); font-weight: 700; }
@media (max-width: 920px) { .agency-in { grid-template-columns: 1fr; } }

/* ============ how it works ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.step {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 28px 26px;
}
.step .num {
  font-family: var(--display); font-weight: 800; font-size: 2.2rem;
  color: var(--blue); line-height: 1;
}
.step h3 { font-size: 1.15rem; font-weight: 600; margin: 14px 0 8px; }
.step p { font-size: .95rem; color: var(--slate); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ============ quote ============ */
.quote { padding: 88px 0; background: #EDF0F5; }
.quote-in { max-width: 820px; margin: 0 auto; text-align: center; }
.quote .stars { justify-content: center; margin-bottom: 22px; }
.quote .stars svg { width: 22px; height: 22px; }
blockquote {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.3; letter-spacing: -.01em;
}
.quote cite { display: block; margin-top: 20px; font-style: normal; color: var(--slate); font-size: .95rem; }

/* ============ pricing ============ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; align-items: stretch; }
.tier {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 0; position: relative;
}
.tier.pop { border-color: var(--blue); box-shadow: 0 18px 44px rgba(37,99,235,.14); }
.tier .flag {
  position: absolute; top: -13px; left: 26px;
  background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-chip);
}
.tier h3 { font-size: 1.05rem; font-weight: 600; }
.tier .for { font-size: .85rem; color: var(--slate-2); margin-top: 2px; }
.tier .price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.tier .price .n { font-family: var(--display); font-weight: 800; font-size: 2.6rem; font-variant-numeric: tabular-nums; }
.tier .price .per { color: var(--slate-2); font-size: .85rem; }
.tier ul { list-style: none; margin: 18px 0 26px; display: grid; gap: 10px; }
.tier ul li { display: flex; gap: 9px; font-size: .92rem; color: var(--slate); }
.tier ul svg { width: 17px; height: 17px; flex: none; margin-top: 3px; fill: var(--gold); }
.tier .btn { margin-top: auto; }
.pricing-note { margin-top: 22px; text-align: center; font-size: .85rem; color: var(--slate-2); }
@media (max-width: 920px) { .tiers { grid-template-columns: 1fr; } }

/* ============ faq ============ */
.faq-list { max-width: 780px; margin: 40px auto 0; display: grid; gap: 12px; }
details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 0 24px; overflow: hidden;
}
details[open] { border-color: var(--slate-2); }
summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 0; font-weight: 600; font-size: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary .ind {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  font-weight: 600; color: var(--slate); transition: transform .2s ease;
}
details[open] summary .ind { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--ink); }
details .a { padding: 0 0 20px; color: var(--slate); font-size: .97rem; max-width: 64ch; }

/* ============ final cta ============ */
.cta-final { background: var(--ink); color: #fff; text-align: center; padding: 104px 0; position: relative; overflow: hidden; }
.cta-final .stars { justify-content: center; margin-bottom: 24px; }
.cta-final .stars svg { width: 24px; height: 24px; }
.cta-final h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 21ch; margin-left: auto; margin-right: auto; }
.cta-final .lede { margin: 18px auto 36px; max-width: 52ch; }
.cta-final .hero-ctas { justify-content: center; }

/* ============ footer ============ */
footer { background: var(--ink); color: #C6CEDF; border-top: 1px solid var(--line-ink); }
.foot-in {
  display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.2fr 1fr; gap: 32px;
  padding: 56px 0 40px;
}
.foot-brand p { font-size: .9rem; color: var(--slate-2); margin-top: 14px; max-width: 30ch; }
.foot-col h3 { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { color: #C6CEDF; text-decoration: none; font-size: .92rem; }
.foot-col a:hover { color: #fff; }
.foot-legal {
  border-top: 1px solid var(--line-ink);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 16px;
  font-size: .82rem; color: var(--slate-2);
}
@media (max-width: 860px) { .foot-in { grid-template-columns: 1fr 1fr; } .foot-legal { flex-direction: column; } }

/* pillar "learn more" links */
.p-more { margin-top: 22px; }
.p-more a { font-weight: 600; color: var(--blue-deep); text-decoration: none; font-size: .98rem; }
.p-more a:hover { color: var(--blue); text-decoration: underline; }

/* ============ interior pages ============ */
.hero-page .hero-in { padding: 64px 0 76px; gap: 48px; }
.hero-page h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); }
.hero-in.one { display: block; max-width: 880px; }
.hero-in.one .lede { max-width: 62ch; }
.hero-card.solo {
  position: relative; top: auto; left: auto; right: auto; opacity: 1; animation: none;
  width: min(420px, 100%); justify-self: center;
  box-shadow: 0 24px 60px rgba(4,10,24,.55), 0 0 0 1.5px var(--gold), 0 0 44px rgba(34,211,238,.18);
}
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .8rem; color: var(--slate-2); margin-bottom: 6px; }
.crumbs a { color: var(--slate-2); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { opacity: .55; }

/* prose blocks on content pages */
.prose { max-width: 760px; }
.prose p { margin: 0 0 18px; color: var(--slate); font-size: 1.04rem; line-height: 1.7; }
.prose p strong { color: var(--text); }
.prose h3 { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: var(--text); margin: 34px 0 12px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; color: var(--slate); line-height: 1.7; }
.prose a { color: var(--blue-deep); text-decoration-color: rgba(2,132,199,.35); }
.prose a:hover { color: var(--blue); }

/* ============ verdict box (choose us / choose them) ============ */
.verdict {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; margin: 8px 0 12px;
}
.verdict > div { padding: 26px 26px 22px; }
.verdict .v-us { background: linear-gradient(180deg, #F0FBFE, #fff); border-right: 1px solid var(--line); }
.verdict h3 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin: 0 0 12px; color: var(--text); }
.verdict .v-us h3 { color: var(--gold-deep); }
.verdict ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.verdict li { position: relative; padding-left: 26px; color: var(--slate); font-size: .95rem; line-height: 1.55; }
.verdict li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.verdict .v-them li::before { background: var(--slate-2); }

/* ============ comparison table ============ */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--card); }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 560px; }
.cmp-table th, .cmp-table td { padding: 13px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.cmp-table thead th { font-family: var(--display); font-weight: 700; font-size: .95rem; color: #fff; background: var(--ink-2); border-bottom: none; }
.cmp-table thead th.us { background: var(--blue-deep); }
.cmp-table tbody th { font-weight: 600; color: var(--text); width: 30%; }
.cmp-table td { color: var(--slate); }
.cmp-table td.us { background: #F0F9FF; color: var(--text); font-weight: 500; }
.cmp-table tbody tr:last-child th, .cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table .yes { color: var(--pos); font-weight: 600; }
.cmp-table .no { color: var(--neg); font-weight: 600; }
.cmp-table .meh { color: var(--slate-2); }

/* ============ pros / cons ============ */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 14px 0 4px; }
.pros, .cons { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; align-content: start; }
.pros li, .cons li { position: relative; padding-left: 24px; font-size: .9rem; line-height: 1.5; color: var(--slate); }
.pros li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--pos); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; top: 0; color: var(--neg); font-weight: 700; }

/* ============ listicle tool card ============ */
.tool-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px 28px 22px; margin: 0 0 22px; position: relative;
}
.tool-card.ours { border: 1.5px solid var(--blue); box-shadow: 0 14px 40px rgba(3,105,161,.10); }
.tool-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.tool-head .rank { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--blue); }
.tool-head h3 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--text); margin: 0; }
.tool-head .price { margin-left: auto; font-size: .9rem; color: var(--slate); white-space: nowrap; }
.tool-head .price b { color: var(--text); }
.tool-card > p { margin: 8px 0 0; color: var(--slate); line-height: 1.65; font-size: .97rem; }
.tool-card .bestfor { margin-top: 14px; font-size: .9rem; color: var(--text); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; }
.tool-card .bestfor b { color: var(--blue-deep); }
.disclose { font-size: .85rem; color: var(--slate-2); background: var(--paper); border: 1px dashed var(--line); border-radius: 10px; padding: 10px 14px; margin: 0 0 18px; }

/* ============ fact note / disclaimers ============ */
.fact-note {
  font-size: .85rem; color: var(--slate-2); line-height: 1.6;
  border-top: 1px solid var(--line); padding-top: 18px; margin-top: 42px;
}
.fact-note a { color: var(--slate); }

/* ============ related links ============ */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 10px; }
.related a {
  display: block; background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px; text-decoration: none; transition: border-color .2s, transform .2s;
}
.related a:hover { border-color: var(--blue); transform: translateY(-2px); }
.related .k { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.related .t { font-family: var(--display); font-weight: 700; color: var(--text); font-size: 1rem; line-height: 1.4; }

/* callout box (e.g. "What happened to GummySearch?") */
.callout { background: linear-gradient(180deg, #F0FBFE, #fff); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 12px; padding: 20px 24px; margin: 26px 0; }
.callout h3 { margin-top: 0 !important; }
.callout p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .verdict { grid-template-columns: 1fr; }
  .verdict .v-us { border-right: none; border-bottom: 1px solid var(--line); }
  .pc { grid-template-columns: 1fr; }
  .related { grid-template-columns: 1fr; }
  .hero-page .hero-in { padding: 48px 0 60px; }
  .tool-head .price { margin-left: 0; width: 100%; }
}
