/* CuratorBits component styles — header, article, cards, sidebar, footer.
   Brand: yellow #FFD60A on dark #0F0F10, Space Grotesk typography, Wirecutter-style editorial.

   UX-REVAMP-1 (2026-05-24): design tokens, reset, base typography, and layout
   containers were extracted to design-system.css (load that FIRST). This sheet
   is components-only. All var(--*) tokens are defined in design-system.css. */

/* --- Header / masthead --- */

header.site-header {
  padding: 32px 0 16px;
  border-bottom: 1px solid var(--border);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #0F0F10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border-radius: 6px;
  letter-spacing: -0.5px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.masthead-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.masthead-nav a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
  padding: 11px 8px;   /* >=44px tap target (WCAG 2.5.5) */
}

.masthead-nav a:hover { color: var(--accent); }

.masthead-meta {
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Sections (landing-style) --- */

section { padding: 48px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: none; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

section h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.25;
}

section p {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 16px;
  max-width: 70ch;   /* keep landing-page prose readable in wide containers */
}

section p:last-child { margin-bottom: 0; }
section strong { color: var(--text); font-weight: 600; }

/* --- Hero --- */

.hero { padding: 80px 0 60px; }
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--accent); }
.hero p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
}

/* --- Page hero (smaller for non-landing pages) --- */

.page-hero { padding: 56px 0 40px; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.page-hero .subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
}

/* --- Review page layout (UX-REVAMP-1): article + sticky sidebar grid --- */

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--aside-width);
  gap: var(--layout-gap);
  align-items: start;          /* lets the sidebar stick independently */
  padding: 32px 0 64px;
}
.review-layout > article.review { padding: 0; }   /* grid owns the padding now */

/* Below the sidebar breakpoint: single column, sidebar flows under article.
   minmax(0,1fr) (not 1fr) keeps wide content — tables, code — from blowing
   out the grid track; min-width:0 lets the grid children actually shrink. */
@media (max-width: 1023px) {
  .review-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .review-layout > article.review,
  .review-layout > .review-aside { min-width: 0; }
}

/* --- Article (review pages) --- */

article.review { padding: 32px 0 64px; }

.breadcrumb {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-faint); }

article h1 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.article-meta .author { color: var(--text-dim); font-weight: 500; }
.article-meta .author strong { color: var(--text); }
.article-meta .sep { color: var(--border-strong); }

/* TL;DR box at top of reviews */

.tldr {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 6px;
  margin-bottom: 40px;
}
.tldr .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.tldr h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.tldr p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 12px;
}
.tldr p:last-child { margin-bottom: 0; }
.tldr .score {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 4px;
  font-weight: 600;
  color: var(--accent);
}
.tldr .score .num { font-size: 18px; }
.tldr .score .max { font-size: 13px; color: var(--accent-dim); }

/* Article body typography */

.article-body { font-size: 17px; line-height: 1.75; }
.article-body p { color: var(--text-dim); margin-bottom: 20px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body em { color: var(--text); font-style: italic; }

.article-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 48px 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.3;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.article-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 214, 10, 0.3);
  transition: border-color 0.15s ease;
}
.article-body a:hover { border-bottom-color: var(--accent); }

.article-body ul, .article-body ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}
.article-body li {
  color: var(--text-dim);
  margin-bottom: 8px;
}
.article-body li strong { color: var(--text); }

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-dim);
}

/* Pros / Cons two-column */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.pros-cons-col {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.pros-cons-col h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pros-cons-col.pros h3 { color: var(--success); }
.pros-cons-col.cons h3 { color: var(--warning); }
.pros-cons-col ul { list-style: none; padding-left: 0; margin: 0; }
.pros-cons-col li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dim);
}
.pros-cons-col.pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}
.pros-cons-col.cons li::before {
  content: "−";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--warning);
  font-weight: 700;
  font-size: 18px;
}

@media (max-width: 640px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* Pricing / comparison table */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.spec-table th, .spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.spec-table th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td { color: var(--text-dim); }
.spec-table td strong { color: var(--text); }
.spec-table td .accent { color: var(--accent); font-weight: 600; }

/* Wide comparison tables scroll within their column on narrow screens so they
   never force horizontal page overflow (UX-REVAMP-1 P5). */
@media (max-width: 760px) {
  .spec-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Affiliate CTA box */

.cta-box {
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 28px 32px;
  margin: 40px 0;
  text-align: center;
}
.cta-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.cta-box p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #0F0F10;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 214, 10, 0.25);
}
.cta-disclosure {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.2px;
}

/* Author byline (named human signal) */

.author-byline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 40px 0 24px;
}
.author-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0F0F10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.author-bio {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* =======================================================================
   UX-REVAMP-1 — Review-page sidebar + CTA component library
   Components consumed by .review-layout (C2). All tokens from design-system.css.
   ======================================================================= */

/* --- Disclosure banner (prominent FTC strip, top of article) --- */

.disclosure-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--text-dim);
  line-height: 1.5;
}
.disclosure-banner::before {
  content: "ⓘ";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.disclosure-banner a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.disclosure-banner a:hover { color: var(--accent); }

/* --- Sidebar shell --- */

.review-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.aside-card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}

/* --- Verdict card (sticky; score + 1-line verdict + primary CTA) --- */

.verdict-card {
  position: sticky;
  top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.verdict-card .verdict-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.verdict-card .verdict-score .num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -1px;
}
.verdict-card .verdict-score .max {
  font-size: var(--text-base);
  color: var(--text-faint);
  font-weight: 500;
}
.verdict-card .verdict-name {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.verdict-card .verdict-line {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* --- Primary CTA button (the prominent "Get Deal" action) --- */

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--bg-cta);
  color: #0F0F10;
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid var(--bg-cta);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-primary:hover {
  background: var(--bg-cta-hover);
  border-color: var(--bg-cta-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.cta-subnote {
  margin-top: 10px;
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-align: center;
  line-height: 1.4;
}

/* --- Pros/Cons in sidebar (compact, stacked) --- */

.proscons-aside .pc-group { margin-bottom: 14px; }
.proscons-aside .pc-group:last-child { margin-bottom: 0; }
.proscons-aside h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proscons-aside .pc-pros h4 { color: var(--success); }
.proscons-aside .pc-cons h4 { color: var(--warning); }
.proscons-aside ul { list-style: none; padding: 0; margin: 0; }
.proscons-aside li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--text-dim);
}
.proscons-aside .pc-pros li::before {
  content: "+"; position: absolute; left: 0; color: var(--success); font-weight: 700;
}
.proscons-aside .pc-cons li::before {
  content: "−"; position: absolute; left: 0; color: var(--warning); font-weight: 700;
}

/* --- Table of contents (sidebar nav) --- */

.toc-nav ul { list-style: none; padding: 0; margin: 0; }
.toc-nav li { margin-bottom: 2px; }
.toc-nav a {
  display: block;
  padding: 6px 10px;
  border-left: 2px solid var(--border);
  font-size: var(--text-sm);
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.toc-nav a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

/* --- Related reviews (sidebar 3-up list) --- */

.related-reviews ul { list-style: none; padding: 0; margin: 0; }
.related-reviews li { margin-bottom: 10px; }
.related-reviews li:last-child { margin-bottom: 0; }
.related-reviews a {
  display: block;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.related-reviews a:hover {
  border-color: var(--accent);
  transform: translateX(2px);
}
.related-reviews .rr-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.related-reviews .rr-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

/* --- Compact author card (sidebar E-E-A-T signal) --- */

.aside-author { display: flex; gap: 12px; align-items: center; }
.aside-author .aa-photo {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #0F0F10;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-base); flex-shrink: 0;
}
.aside-author .aa-name { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.aside-author .aa-role { font-size: var(--text-xs); color: var(--text-faint); }

/* --- Gig widget (Fiverr embed) framing --- */

.gig-widget {
  margin: 40px 0;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.gig-widget h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  border-top: none;
  padding-top: 0;
}
.gig-widget p { font-size: var(--text-sm); color: var(--text-dim); margin-bottom: 16px; }
.gig-widget iframe { max-width: 100%; border: 0; border-radius: var(--radius-md); }

/* --- Mobile sticky CTA bar (replaces sidebar CTA below sidebar breakpoint) --- */

.mobile-cta-bar { display: none; }

@media (max-width: 1023px) {
  /* sidebar card no longer sticks once it flows under the article */
  .verdict-card { position: static; box-shadow: none; }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lg);
  }
  .mobile-cta-bar .mcb-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-cta-bar .cta-primary { width: auto; flex-shrink: 0; padding: 12px 20px; }

  /* clear the fixed bar so it never covers the footer / last content */
  body.has-mobile-cta { padding-bottom: 76px; }
}

/* --- Footer affiliate CTA (promoted from inline styles to a class) --- */

.footer-affiliate-cta {
  text-align: center;
  padding: 16px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  font-size: var(--text-sm);
  color: var(--text-faint);
}
.footer-affiliate-cta p { margin: 0; }
.footer-affiliate-cta a {
  color: var(--accent);
  text-decoration: none;
}
.footer-affiliate-cta a:hover { text-decoration: underline; }

/* --- In-content callouts (cross-promo / alt-product / bonus) ---
   Promoted from per-page inline styles (AFF-FIVERR-2/3) to shared classes. */

.setup-help,
.alt-product-cta {
  margin: 32px 0;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}
.article-body .setup-help h3,
.article-body .alt-product-cta h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.setup-help p:last-child,
.alt-product-cta p:last-child,
.bonus-mention p:last-child {
  margin-bottom: 0;
}

/* Bonus mention — slim left-accent callout (Saily, etc.) */
.bonus-mention {
  margin: 28px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
}
.bonus-mention p { margin: 0; }

/* Highlighted affiliate / discount code (dark text on yellow for contrast) */
.code-pill {
  background: #FFEB3B;
  color: #111118;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.1em;
  font-weight: 700;
}

/* Fine-print affiliate disclosure inside a callout */
.affiliate-smallprint {
  font-size: 0.85em;
  color: var(--text-faint);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Coverage grid (landing) */

.coverage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.coverage-item {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.coverage-item span {
  display: block;
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* "NEW" badge (homepage latest-reviews list) — promoted from inline styles */
.badge-new {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0F0F10;
  background: var(--accent);
  border-radius: 999px;
  vertical-align: middle;
}

/* Featured review card (homepage — prominent latest review) */
.featured-review {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-elevated));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}
.featured-review .fr-body { min-width: 0; }
.featured-review .fr-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.featured-review h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.featured-review p {
  color: var(--text-dim);
  font-size: var(--text-sm);
  margin: 0;
  max-width: 60ch;
}
.featured-review .fr-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bg-cta);
  color: #0F0F10;
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 2px solid var(--bg-cta);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.featured-review .fr-cta:hover {
  background: var(--bg-cta-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 640px) {
  .featured-review { grid-template-columns: 1fr; }
}

/* Channels list */

.channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.channel:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.channel-info { display: flex; flex-direction: column; gap: 2px; }
.channel-name { font-size: 15px; font-weight: 600; }
.channel-handle { font-size: 13px; color: var(--text-faint); }
.channel-arrow {
  color: var(--text-faint);
  font-size: 18px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.channel:hover .channel-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* Contact rows */

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.contact-label {
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 90px;
}
.contact-value a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.contact-value a:hover { border-bottom-color: var(--accent); }

/* Affiliate Disclosure box */

.disclosure {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 6px;
  margin: 32px 0;
}
.disclosure h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.disclosure p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* Review card grid (reviews/index.html) */

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.review-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.review-card[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.review-card-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 8px;
  background: var(--accent-soft);
  border-radius: 4px;
  font-weight: 600;
}
.review-card-tag.coming { color: var(--text-faint); background: var(--border); }
.review-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.review-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.review-card .read-more {
  margin-top: auto;
  padding-top: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

/* About page — founder card */

.founder {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 32px 0;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #0F0F10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 36px;
  flex-shrink: 0;
}
.founder-info { flex: 1; }
.founder-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.founder-bio {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0 0 12px;
}
.founder-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.founder-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.founder-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 540px) {
  .founder { flex-direction: column; align-items: stretch; text-align: center; }
  .founder-photo { margin: 0 auto; }
  .founder-links { justify-content: center; }
}

/* Footer */

footer.site-footer {
  padding: 48px 0 40px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
  font-size: 13px;
}
.footer-col a:hover { color: var(--accent); }
.footer-col .footer-tagline {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.6;
}
.footer-meta {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta p { margin: 0; }
.footer-meta .footer-quote {
  color: var(--text-faint);
  letter-spacing: 0.5px;
  font-style: italic;
}

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

/* --- Responsive landing tweaks --- */

@media (max-width: 600px) {
  /* coverage grid: keep a 2-up layout on phones (dispatch P5) instead of
     collapsing to a single column under the 160px min-track */
  .coverage { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 40px; }
  section { padding: 40px 0; }
  .masthead-meta { display: none; }
  .contact-label { min-width: auto; }
}

/* --- Print styles (basic) --- */

@media print {
  body { background: white; color: black; }
  .cta-box, .channels { display: none; }
}
