/* ==========================================================================
   ListicleBacklinks — marketing site

   Theme follows easyfetcher.com: a centred hero with an oversized, tightly
   tracked headline, near-black navy for both headings and buttons (no blue
   CTAs), a warm off-white ground, and one large bordered product card doing
   the visual work instead of many small ones.

   Standalone by design: no dependency on the app's stylesheet or markup, so
   the marketing site deploys on its own host and its own cycle.
   ========================================================================== */

:root {
  /* Warm off-white ground, as on the reference - not pure white. */
  --bg: #fdfcfb;
  --bg-white: #ffffff;
  --bg-soft: #f8f7f6;
  --bg-muted: #f1f0ef;

  --border: #e8e6e4;
  --border-soft: #f0eeec;
  --border-strong: #d6d3d0;

  /* Near-black navy carries headings and buttons alike. */
  --ink: #0f1b2d;
  --ink-soft: #1c2938;
  --text-2: #556070;
  --text-3: #6b7280;
  --on-dark: #ffffff;
  --on-dark-2: #a8b2c1;

  --accent: #2563eb;
  --accent-light: #eef2ff;
  --purple: #6d3beb;
  --purple-light: #f3eeff;
  --green: #0a6e37;
  --green-light: #edfaf1;
  --red: #b91c26;
  --red-light: #fdeeef;
  --amber: #f59e0b;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-card: 0 1px 3px rgba(15, 27, 45, .04), 0 12px 40px -12px rgba(15, 27, 45, .10);
  --shadow-lg: 0 24px 60px -20px rgba(15, 27, 45, .22);

  --max: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 860px; margin: 0 auto; }
.center { text-align: center; }

/* ─── Type ────────────────────────────────────────────────── */

h1, h2, h3 { color: var(--ink); font-weight: 700; letter-spacing: -0.045em; line-height: 1.05; }

/* The reference headline is very large and very tight; the period after each
   word is part of the mark, so it is kept as literal text. */
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.04em; }
h3 { font-size: 1.0625rem; letter-spacing: -0.02em; font-weight: 650; line-height: 1.35; }

.lede { font-size: clamp(1.0625rem, 1.6vw, 1.3rem); color: var(--text-2); line-height: 1.55; }
.muted { color: var(--text-3); }
.small { font-size: 13.5px; color: var(--text-2); }

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.section { padding: 92px 0; }
.section-head { margin-bottom: 52px; }
.section-head h2 { margin-bottom: 14px; }
.section-head .lede { max-width: 62ch; }
.section-head.center .lede { margin-inline: auto; }

/* ─── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
  white-space: nowrap;
}

/* The primary action is near-black, not brand blue - blue is reserved for
   links and data accents so the CTA stays the darkest thing on the page. */
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); }

.btn-ghost { background: var(--bg-white); border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--border-strong); background: var(--bg-soft); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--bg-soft); }

.btn-lg { padding: 17px 34px; font-size: 16px; border-radius: 12px; }
.btn-pill { border-radius: var(--r-pill); }

.btn .arrow { transition: transform .16s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Header ──────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 252, 251, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border-soft); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo img { width: 32px; height: 32px; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px;
  font-weight: 550;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover { color: var(--text-2); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 15px; font-weight: 550; color: var(--ink); }

/* ─── Hero ────────────────────────────────────────────────── */

.hero { padding: 96px 0 0; text-align: center; }
.hero h1 { margin-bottom: 26px; }
.hero .lede { max-width: 42ch; margin: 0 auto 38px; }

/* The mark sits beside the headline at its optical size; it reads as part
   of the wordmark rather than decoration, so it keeps full opacity. */
.hero-mark {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 16px;
  transform: translateY(6px);
}
.hero-mark img { width: clamp(34px, 4.6vw, 58px); height: auto; }

/* ─── AI platform row ─────────────────────────────────────── */

.platforms { margin-top: 60px; }
.platforms-label { font-size: 14px; color: var(--text-2); margin-bottom: 22px; }

.platform-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
  flex-wrap: wrap;
  max-width: 940px;
  margin: 0 auto;
}

.platform {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 620;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.platform svg,
.platform img { flex: 0 0 auto; width: 22px; height: 22px; object-fit: contain; }

/* ─── Product showcase card ───────────────────────────────── */

/* One large card rather than several small mockups: the reference leads with
   a single full-width screenshot, and a real interface earns more trust than
   a row of illustrations. */
.showcase { padding: 68px 0 96px; }

.showcase-frame {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.app-shell { display: grid; grid-template-columns: 214px 1fr; min-height: 520px; }

.app-side { border-right: 1px solid var(--border-soft); background: var(--bg-white); padding: 14px 0; }

.app-brand {
  display: flex; align-items: center; gap: 9px;
  padding: 4px 16px 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 12px;
}
.app-brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
}
.app-brand-mark img { width: 22px; height: 22px; object-fit: contain; }
.app-brand-name { font-size: 13px; font-weight: 700; letter-spacing: -0.02em; }
.app-brand-sub { font-size: 9.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }

.app-group { padding: 10px 10px 2px; }
.app-group-label {
  display: block; padding: 0 8px 8px;
  font-size: 10px; font-weight: 650; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-3);
}

.app-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; color: var(--text-2); font-weight: 500;
}
.app-nav-item .n { margin-left: auto; font-size: 11px; color: var(--text-3); font-weight: 600; }
.app-nav-item.active { background: var(--accent-light); color: var(--ink); font-weight: 620; }
.app-nav-item.active svg { color: var(--accent); }
.app-nav-item.active .n { color: var(--accent); }

.app-main { background: var(--bg-white); }

.app-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--border-soft);
}
.app-top h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.03em; }
.app-top p { font-size: 12.5px; color: var(--text-3); margin-top: 2px; }

.app-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--border-soft);
}
.app-kpi { border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.app-kpi .k { font-size: 9.5px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.app-kpi .v { font-size: 1.55rem; font-weight: 700; letter-spacing: -0.035em; margin-top: 2px; font-variant-numeric: tabular-nums; }
.app-kpi .h { font-size: 10.5px; color: var(--text-3); line-height: 1.35; margin-top: 3px; }

.app-filters { display: flex; align-items: center; gap: 7px; padding: 14px 22px; border-bottom: 1px solid var(--border-soft); flex-wrap: wrap; }

.f-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 12.5px; background: #fff;
}
.f-chip .k { color: var(--text-3); }
.f-chip.set { background: var(--accent-light); border-color: var(--accent); color: #1e40af; font-weight: 600; }
.f-count { margin-left: auto; font-size: 12.5px; color: var(--text-3); }

.app-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.app-table th {
  text-align: left; padding: 9px 22px;
  font-size: 9.5px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-3); border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.app-table td { padding: 13px 22px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
.app-table tr:last-child td { border-bottom: 0; }

.pub { display: flex; align-items: center; gap: 10px; }
.pub-mark {
  width: 26px; height: 26px; border-radius: 7px; flex: 0 0 26px;
  background: var(--bg-muted); color: var(--text-2);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.pub-name { font-weight: 620; font-size: 12.5px; }
.pub-domain { font-size: 11px; color: var(--text-3); }

.tag { display: inline-block; background: var(--purple-light); color: var(--purple); font-size: 11px; font-weight: 550; padding: 3px 9px; border-radius: 6px; }

.socials { display: flex; align-items: center; gap: 5px; }
.social-badge {
  width: 25px; height: 25px; border: 1px solid var(--border); border-radius: 6px;
  display: grid; place-items: center; background: #fff;
}
.social-badge img { width: 13px; height: 13px; }
.social-badge.off { opacity: .25; filter: grayscale(1); }

.bucket-pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 620;
  padding: 4px 10px; border-radius: var(--r-pill); border: 1px solid;
}
.bucket-pill.opp { background: var(--green-light); color: var(--green); border-color: rgba(10,110,55,.3); }
.bucket-pill.comp { background: var(--red-light); color: var(--red); border-color: rgba(185,28,38,.3); }
.bucket-pill.none { background: var(--bg-muted); color: var(--text-3); border-color: var(--border); }

/* ─── Social proof ────────────────────────────────────────── */

.proof { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 52px; flex-wrap: wrap; }

.avatars { display: flex; }
.avatars span {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid var(--bg); margin-left: -11px;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.avatars span:first-child { margin-left: 0; }

.stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 4px; }
.proof-text { text-align: left; }
.proof-text b { font-size: 15.5px; font-weight: 680; letter-spacing: -0.02em; }
.proof-text p { font-size: 13.5px; color: var(--text-2); }

/* ─── Feature cards ───────────────────────────────────────── */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--bg-white);
  transition: border-color .16s ease, transform .16s ease;
}
.card:hover { border-color: var(--border-strong); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 14.5px; color: var(--text-2); }

.card-num {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  margin-bottom: 16px;
}

.card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-muted); color: var(--ink);
  display: grid; place-items: center; margin-bottom: 16px;
}

/* ─── Split rows ──────────────────────────────────────────── */

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: 92px; }
.split-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); margin-bottom: 16px; }
.split-copy p { color: var(--text-2); font-size: 15.5px; }

.check-list { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 11px; font-size: 15px; color: var(--text-2); }
.check-list svg { flex: 0 0 auto; margin-top: 4px; color: var(--green); }
.check-list b { color: var(--ink); font-weight: 620; }

.panel {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.panel-head {
  padding: 13px 18px; border-bottom: 1px solid var(--border-soft);
  font-size: 12.5px; font-weight: 620; color: var(--text-2); background: var(--bg-soft);
}
.panel-body { padding: 18px; }

.tile { border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.tile-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tile-label { font-size: 9.5px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); }
.tile-body { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tile-value { font-size: 13.5px; font-weight: 620; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tile-action {
  flex: 0 0 auto; background: var(--bg-muted); border: 1px solid var(--border-soft);
  padding: 4px 10px; border-radius: 6px; font-size: 11.5px; font-weight: 620; color: var(--text-2);
}
.tile-link { font-size: 13.5px; font-weight: 620; color: var(--accent); }

/* ─── Categories ──────────────────────────────────────────── */

.cat-grid { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.cat {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 8px 9px 8px 16px; font-size: 14px; font-weight: 520;
  background: var(--bg-white); transition: border-color .16s ease;
}
.cat:hover { border-color: var(--ink); }
.cat .n {
  font-size: 11.5px; font-weight: 680; background: var(--bg-muted); color: var(--text-2);
  padding: 2px 9px; border-radius: var(--r-pill); font-variant-numeric: tabular-nums;
}

/* ─── Cadence banner ──────────────────────────────────────── */

.cadence {
  display: flex; align-items: center; gap: 15px;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px 22px; background: var(--bg-white); max-width: 780px; margin: 44px auto 0;
}
.pulse {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(10,110,55,.5); animation: pulse 2.4s infinite; flex: 0 0 auto;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(10,110,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,110,55,0); }
}

/* ─── Audience ────────────────────────────────────────────── */

.aud { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; background: var(--bg-white); }
.aud-role { font-size: 11px; font-weight: 680; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.aud h3 { margin-bottom: 8px; }
.aud p { font-size: 14.5px; color: var(--text-2); }

/* ─── Pricing ─────────────────────────────────────────────── */

.pricing { background: var(--ink); color: var(--on-dark); }
.pricing h2, .pricing .eyebrow { color: #fff; }
.pricing .eyebrow { color: var(--on-dark-2); }
.pricing .lede { color: var(--on-dark-2); }

.price-card {
  background: #fff; color: var(--ink);
  border-radius: var(--r-xl); padding: 40px;
  max-width: 480px; margin: 44px auto 0;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.price-badge {
  display: inline-block; font-size: 11.5px; font-weight: 680;
  letter-spacing: .09em; text-transform: uppercase; color: var(--text-3);
}
.price-row { display: flex; align-items: baseline; gap: 12px; margin: 12px 0 4px; }
.price { font-size: 4rem; font-weight: 750; letter-spacing: -0.05em; line-height: 1; }
.price-term { font-size: 15px; color: var(--text-3); }

.price-list { list-style: none; margin: 26px 0; display: grid; gap: 13px; }
.price-list li { display: flex; gap: 11px; font-size: 15px; color: var(--text-2); }
.price-list svg { flex: 0 0 auto; margin-top: 4px; color: var(--green); }
.price-list b { color: var(--ink); font-weight: 620; }

.price-foot { font-size: 13px; color: var(--text-3); text-align: center; margin-top: 16px; }

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq details { border-bottom: 1px solid var(--border-soft); padding: 22px 0; }
.faq summary {
  cursor: pointer; font-weight: 650; font-size: 16.5px; letter-spacing: -0.02em;
  list-style: none; display: flex; justify-content: space-between; gap: 24px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--text-3); font-weight: 400; font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '\2212'; }
.faq p { margin-top: 13px; color: var(--text-2); font-size: 15px; max-width: 70ch; }

/* ─── Footer ──────────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--border-soft); padding: 48px 0; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-row p { font-size: 13.5px; color: var(--text-3); }
.footer-links { display: flex; gap: 24px; font-size: 13.5px; color: var(--text-2); }

/* ─── Responsive ──────────────────────────────────────────── */

@media (max-width: 1000px) {
  .app-shell { grid-template-columns: 1fr; }
  .app-side { display: none; }
  .app-kpis { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 60px 0 0; }
  .platform-row { gap: 22px; }
  .platform { font-size: 14px; }
}

@media (max-width: 560px) {
  .hero-cta .btn { width: 100%; }
  .app-kpis { grid-template-columns: 1fr; }
  .proof { flex-direction: column; gap: 14px; }
  .proof-text { text-align: center; }
}

/* ══ Why listicles: the AI-citation evidence section ═════════════════
   The donut is drawn with stroke-dasharray on stacked circles, so the
   arc lengths are exactly proportional to the published percentages.
   Segment colours are generated alongside the markup - keep them in
   step if the figures are ever updated. */

.cited { background: var(--bg); }

.cited-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.cited-chart { position: relative; text-align: center; margin: 0; }

.donut {
  /* Dashes start at 3 o'clock; rotate so the leading slice begins at 12. */
  transform: rotate(-90deg);
  max-width: 100%;
  height: auto;
  overflow: visible;
}

.donut-seg { transition: opacity .18s ease; }
.cited-chart:hover .donut-seg { opacity: .55; }
.cited-chart:hover .donut-seg:first-of-type { opacity: 1; }

.donut-center {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 2px;
  pointer-events: none;
}

.donut-big {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}

.donut-small {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}

.cited-chart figcaption {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-3);
}

.cited-list { list-style: none; display: grid; gap: 2px; }

.cited-row {
  display: grid;
  grid-template-columns: 22px 12px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--text-2);
}

.cited-row + .cited-row { border-top: 1px solid var(--border-soft); }

.cited-lead {
  background: var(--accent-light);
  color: var(--ink);
  font-weight: 700;
  border-top: 0;
}

.cited-rank {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}

/* Darker than --accent: 12px numerals on the tinted row need the headroom
   (5.99:1 against --accent-light, where plain --accent gives only 4.62:1). */
.cited-lead .cited-rank { color: #1d4ed8; }

.cited-swatch { width: 12px; height: 12px; border-radius: 3px; }

.cited-name { min-width: 0; }

.cited-pct {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.cited-note { margin-top: 14px; font-size: 13px; color: var(--text-3); }

.cited-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.cited-callout {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}

.cited-callout p { font-size: 14.5px; color: var(--text-2); margin: 0; }

.cited-callout-hero { border-color: rgba(37, 99, 235, .35); }

.cited-stat {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}

.cited-callout-hero .cited-stat { color: var(--accent); }

.cited-source {
  margin-top: 34px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-3);
  max-width: 66ch;
  margin-inline: auto;
}

.cited-source a { color: var(--accent); text-decoration: underline; }

@media (max-width: 900px) {
  .cited-grid { grid-template-columns: 1fr; gap: 36px; max-width: 460px; }
  .cited-callouts { grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }
  .cited-stat { font-size: 34px; }
}

/* ══ Customer reviews ════════════════════════════════════════════════
   Cards are built by reviews.js from assets/data/reviews.json. The empty
   state is a first-class design here, not a fallback - the section ships
   before there are any customers and has to look deliberate while it
   waits for real ones. */

.reviews { background: var(--bg-white); border-top: 1px solid var(--border-soft); }

.rv-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rv-summary p { font-size: 15px; color: var(--text-2); margin: 0; }
.rv-summary b { color: var(--ink); }

.rv-stars { display: inline-flex; gap: 2px; color: var(--amber); }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.rv-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rv-quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  flex: 1;
}

.rv-quote::before { content: '\201C'; }
.rv-quote::after  { content: '\201D'; }

.rv-by { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.rv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
}

.rv-initials {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.rv-who { display: grid; gap: 1px; min-width: 0; }
.rv-who b { font-size: 14.5px; color: var(--ink); }
.rv-role { font-size: 13px; color: var(--text-3); }

.rv-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--green-light);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Empty state ─────────────────────────────────────────── */

.rv-empty {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--r-xl);
  padding: 48px 36px;
}

.rv-empty-mark {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  background: var(--accent-light);
  color: var(--accent);
}

.rv-empty h3 { font-size: 20px; color: var(--ink); margin-bottom: 12px; }
.rv-empty p { font-size: 15px; color: var(--text-2); margin: 0 auto; max-width: 52ch; }
.rv-empty p + p { margin-top: 14px; }
.rv-empty-cta { color: var(--text-3) !important; font-size: 14px !important; }

@media (max-width: 700px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-empty { padding: 36px 22px; }
}
