/* ============================================================
   DraftLoop marketing site — vanilla CSS
   Design system: dark premium, system fonts, responsive-first.
   No webfonts, no external resources.
   ============================================================ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5rem; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── Tokens ─── */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --bg-surface: #1a1a1a;
  --border: #2a2a2a;
  --border-hover: #3d3d3d;
  --fg: #f5f5f5;
  --fg-muted: #a8a8a8;
  --fg-subtle: #6b6b6b;
  --accent: #ff5733;
  --accent-hover: #ff6d4d;
  --accent-fg: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
  --maxw: 1200px;
  --maxw-article: 760px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* ─── Base ─── */
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

::selection { background: var(--accent); color: var(--accent-fg); }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-top: 3rem; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-top: 2rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
}
a:hover { color: var(--accent-hover); }

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-surface);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  border: 1px solid var(--border);
}

pre {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
}

pre code {
  background: none;
  border: none;
  padding: 0;
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--fg-muted);
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ─── Skip link (a11y) ─── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0.5rem 1rem;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-name {
  text-transform: uppercase;
}

.main-nav {
  display: none;
  gap: 1.75rem;
}

.main-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--fg); }

/* ─── Mobile nav (CSS-only disclosure, zero JS) ─── */
.nav-toggle-cb {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  margin-right: 0.25rem;
  cursor: pointer;
  color: var(--fg);
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 1.375rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { position: absolute; left: 0; top: -7px; }
.nav-toggle-bar::after { position: absolute; left: 0; top: 7px; }

/* Open state: reveal the dropdown + morph hamburger into an X */
.nav-toggle-cb:checked ~ .main-nav { display: flex; }
.nav-toggle-cb:checked ~ .nav-toggle .nav-toggle-bar { background: transparent; }
.nav-toggle-cb:checked ~ .nav-toggle .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle-cb:checked ~ .nav-toggle .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle-cb:focus-visible ~ .nav-toggle {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 0.25rem 1.5rem 0.75rem;
  }
  .main-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .main-nav a:last-child { border-bottom: 0; }
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .nav-toggle,
  .nav-toggle-cb { display: none; }
}

/* ─── CTA buttons ─── */
.cta {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.cta-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.cta-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-fg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 87, 51, 0.35);
}

.cta-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.cta-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--border-hover);
  color: var(--fg);
}

.cta-large { padding: 1rem 2rem; font-size: 1.05rem; }

/* ─── Hero ─── */
.hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 87, 51, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 87, 51, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.hero .accent { color: var(--accent); }

.hero-lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-trust {
  color: var(--fg-subtle);
  font-size: 0.9rem;
}

/* ─── Sections ─── */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-top: 0;
}

.section-header p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* ─── Feature grid ─── */
.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 87, 51, 0.12);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* ─── Silo cards ─── */
.silo-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .silo-grid { grid-template-columns: repeat(3, 1fr); }
}

.silo-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.silo-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  color: inherit;
}

.silo-card h3 {
  margin-top: 0;
  color: var(--fg);
}

.silo-card p {
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.silo-card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─── Pricing callout ─── */
.pricing-callout {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.pricing-callout h2 { margin-top: 0; }

.pricing-callout p { color: var(--fg-muted); max-width: 560px; margin: 0 auto 1.5rem; }

/* ─── Article ─── */
.article-main {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.article {
  max-width: var(--maxw-article);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current="page"] { color: var(--fg); }

.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.article-header h1 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.article-lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--fg-subtle);
  margin-bottom: 0;
}

.article-meta time::after {
  content: " · ";
  color: var(--fg-subtle);
}

.article-body {
  font-size: 1.05rem;
}

.article-body h2 { scroll-margin-top: 80px; }
.article-body h3 { scroll-margin-top: 80px; }

.article-body img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.back-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.back-link:hover { color: var(--accent); }

.cta-block {
  margin-top: 2rem;
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.site-footer .container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .site-footer .container { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .site-footer .container { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: var(--fg);
  margin-top: 0;
}

.footer-col p {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  color: var(--fg-subtle);
  font-size: 0.85rem;
  margin: 0;
}

/* ─── Maintenance banner ─── */
.maintenance-banner {
  background: var(--warning);
  color: #1a1a1a;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 200;
}

/* ─── Motion preferences ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Print ─── */
@media print {
  .site-header, .site-footer, .article-footer .cta-block { display: none; }
  body { background: white; color: black; }
  a { color: black; }
}


/* ============================================================
   DraftLoop marketing site — STP alignment patch (2026-04-20)
   Append this block at the end of src/public/style.css
   Adds class definitions that were used in markdown but missing
   from the base stylesheet, plus new pricing grid + testimonials.
   ============================================================ */

/* ─── Eyebrow labels (used above h1/h2 across pages) ─── */
.hero-eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 87, 51, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(255, 87, 51, 0.2);
}

.section-eyebrow {
  margin-bottom: 0.75rem;
}

/* ─── Section alt variant (used in section.section-alt) ─── */
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 87, 51, 0.03) 50%, transparent);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

/* ─── Section lede (used on home + pricing) ─── */
.section-lede {
  color: var(--fg-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.6;
}

/* ─── FAQ items (details/summary) ─── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--fg);
  user-select: none;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
  transform: none;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  padding: 0 1.4rem 1.1rem;
  color: var(--fg-muted);
  margin: 0;
  line-height: 1.6;
}

.faq-item p + p {
  padding-top: 0.5rem;
}

/* Stack FAQ items vertically */
details.faq-item + details.faq-item {
  margin-top: 0.75rem;
}

/* ─── Hero CTAs — improved for new layout ─── */
.hero-ctas .cta {
  min-width: 200px;
  justify-content: center;
}

/* ─── Footer baseline (new) ─── */
.footer-baseline {
  color: var(--fg-subtle);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   NEW COMPONENTS — pricing grid, testimonials, compare table
   ═══════════════════════════════════════════════════════════ */

/* ─── Pricing grid (3 tiers) ─── */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.pricing-card-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 87, 51, 0.06), var(--bg-elevated) 40%);
  box-shadow: 0 8px 30px rgba(255, 87, 51, 0.15);
}

.pricing-card-featured:hover {
  border-color: var(--accent-hover);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pricing-card-header h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.pricing-card-tag {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.pricing-card-price {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.pricing-card-amount {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.pricing-card-period {
  color: var(--fg-muted);
  font-size: 1rem;
  font-weight: 500;
}

.pricing-card-anchor {
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-style: italic;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-card-features li {
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  color: var(--fg);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
  margin: 0;
}

.pricing-card-features li:last-child {
  border-bottom: none;
}

.pricing-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-card-cta {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}

.pricing-card-footnote {
  text-align: center;
  color: var(--fg-subtle);
  font-size: 0.82rem;
  margin: 0;
}

/* ─── Compare table (agency vs DraftLoop) ─── */
.compare-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.95rem;
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row > div {
  color: var(--fg-muted);
}

.compare-row > div:first-child {
  color: var(--fg);
  font-weight: 500;
}

.compare-row > div:last-child strong {
  color: var(--accent);
  font-weight: 700;
}

.compare-row-head {
  background: var(--bg-surface);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-subtle);
}

.compare-row-head > div {
  color: var(--fg-subtle);
}

@media (max-width: 640px) {
  .compare-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem;
  }
  .compare-row > div:first-child {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--fg-subtle);
  }
  .compare-row-head { display: none; }
}

/* ─── Testimonials ─── */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.testimonial-quote {
  color: var(--fg);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex-grow: 1;
  padding-top: 0.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-fg);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  display: block;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  display: block;
  color: var(--fg-subtle);
  font-size: 0.82rem;
  margin-top: 0.1rem;
}

/* ─── Pricing note (legacy — kept for backward compat) ─── */
.pricing-note {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-note p { color: var(--fg-muted); margin-bottom: 1.5rem; }

/* ─── Silo CTA (enhances silo-card link styling) ─── */
.silo-cta {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: transform 0.15s;
}

.silo-card:hover .silo-cta {
  transform: translateX(4px);
}

/* ─── Article page — silo hero + CTA strip + footer CTA ─── */
.article-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.article-cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.article-footer-cta {
  margin-top: 3rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(255, 87, 51, 0.06), var(--bg-elevated));
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
}

.article-footer-cta h2 {
  margin-top: 0;
  color: var(--fg);
}

.article-footer-cta p {
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.article-footer-cta .hero-ctas {
  margin-bottom: 0;
  justify-content: center;
}
