/* ============================================================
   Broker Review v1 — styles
   Inherits navy + gold + green palette from comparator-v5
   ============================================================ */

:root {
  --navy: #137DAD;
  --navy-dark: #0E5F83;
  --navy-light: #2594c4;
  --navy-deep: #0a2a40;
  --gold: #fac837;
  --gold-dark: #eab308;
  --gold-light: #fef9e0;
  --green: #3ca37a;
  --green-dark: #2d8660;
  --green-light: #ecfdf5;
  --amber: #f59e0b;
  --amber-light: #fffbeb;
  --red: #dc2626;
  --red-light: #fef2f2;
  --grey-50: #f7f9fc;
  --grey-100: #eef2f7;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(13,42,76,.06);
  --shadow: 0 4px 12px rgba(13,42,76,.08);
  --shadow-lg: 0 12px 32px rgba(13,42,76,.12);
  --transition: 180ms cubic-bezier(.4,0,.2,1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-800);
  background: var(--grey-50);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--navy-dark); }

/* ---------- HEADER ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--grey-200);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo::before { content: "financer"; }
.logo::after { content: "."; color: var(--gold); }

.breadcrumb { font-size: 13px; color: var(--grey-500); }
.breadcrumb a { color: var(--grey-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .current { color: var(--grey-700); }

/* ---------- HERO ---------- */
.page-hero {
  background: linear-gradient(180deg, #fff 0%, var(--grey-50) 100%);
  padding: 36px 0 24px;
}
.review-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-600);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-eyebrow__tag {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.review-eyebrow__sep { color: var(--grey-300); }

.page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--grey-600);
  max-width: 800px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13px;
  color: var(--grey-600);
  margin-bottom: 24px;
}
.byline .author { display: inline-flex; align-items: center; gap: 6px; }
.byline .author-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: white; display: inline-flex;
  align-items: center; justify-content: center; font-size: 10px; font-weight: 700;
}
.byline .role { color: var(--grey-500); }
.byline .dot { color: var(--grey-400); }
.byline .updated { color: var(--grey-500); }
.byline .updated strong, .byline .author strong { color: var(--grey-700); font-weight: 600; }
.byline .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* ---------- HERO CARD (rating + sub-ratings + CTA) ---------- */
.review-hero-card {
  display: grid;
  grid-template-columns: 280px 1fr 240px;
  gap: 28px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-top: 6px;
}

/* left col — overall + trust */
.review-hero-card__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--grey-100);
  padding-right: 24px;
}
.overall-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}
.overall-rating__score {
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.overall-rating__meta {
  flex: 1;
}
.overall-rating__stars {
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 2px;
}
.overall-rating__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.overall-rating__based-on {
  font-size: 11px;
  color: var(--grey-500);
  margin-top: 2px;
}
.trust-score {
  background: var(--green-light);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.trust-score__num {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.trust-score__denom { font-size: 14px; color: var(--green); }
.trust-score__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.trust-score__sub {
  font-size: 11px;
  color: var(--green-dark);
  margin-top: 2px;
}

/* middle col — sub-ratings */
.review-hero-card__middle {
  display: flex;
  align-items: center;
}
.sub-ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  width: 100%;
}
.sub-rating { display: flex; flex-direction: column; gap: 4px; }
.sub-rating__top { display: flex; align-items: center; gap: 8px; }
.sub-rating__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-700);
  flex: 1;
}
.sub-rating__score {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.sub-rating__bar {
  height: 5px;
  background: var(--grey-100);
  border-radius: 3px;
  overflow: hidden;
}
.sub-rating__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 3px;
}
.sub-rating__note {
  font-size: 11px;
  color: var(--grey-500);
}

/* right col — best-for + CTA */
.review-hero-card__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid var(--grey-100);
}
.best-for-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}
.best-for-badge {
  background: var(--gold-light);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.best-for-badge::before { content: "★"; color: var(--gold-dark); font-size: 11px; }
.primary-cta {
  display: block;
  background: var(--navy);
  color: white !important;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background var(--transition);
}
.primary-cta:hover { background: var(--navy-dark); }
.secondary-cta {
  display: block;
  text-align: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy) !important;
  text-decoration: none !important;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: white;
  transition: all var(--transition);
}
.secondary-cta:hover { background: var(--grey-50); border-color: var(--grey-300); }
.cta-disclaimer {
  font-size: 11px;
  color: var(--grey-500);
  line-height: 1.4;
  margin-top: 2px;
}

/* ---------- LAYOUT: TOC + content ---------- */
.review-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin: 32px auto 60px;
}
.toc-rail { position: relative; }
.toc-rail__inner {
  position: sticky;
  top: 76px;
  padding: 18px;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.toc-rail__head {
  font-size: 11px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-100);
}
.toc-rail__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  padding: 0;
}
.toc-rail__list a {
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--grey-600);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.4;
}
.toc-rail__list a:hover { background: var(--grey-50); color: var(--navy); }
.toc-rail__list a.is-active {
  background: var(--grey-50);
  color: var(--navy);
  font-weight: 600;
  border-left-color: var(--gold);
}
.toc-rail__cta {
  display: block;
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--navy);
  color: white !important;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
}
.toc-rail__cta:hover { background: var(--navy-dark); }

.review-main { min-width: 0; }

/* ---------- SECTION wrapper ---------- */
.content-section {
  background: white;
  border-radius: var(--radius);
  padding: 32px 36px;
  border: 1px solid var(--grey-200);
  margin-bottom: 24px;
  scroll-margin-top: 76px;
}
.content-section h2 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.content-section h3 {
  font-size: 19px;
  color: var(--navy);
  margin-top: 26px;
  margin-bottom: 12px;
  font-weight: 700;
}
.content-section h4 {
  font-size: 14px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 700;
}
.content-section p { margin-bottom: 12px; color: var(--grey-700); line-height: 1.65; }
.section-intro { font-size: 15px; color: var(--grey-600); margin-bottom: 22px; max-width: 800px; line-height: 1.6; }
.freshness-note {
  font-size: 12px;
  color: var(--grey-500);
  font-style: italic;
  margin-top: 8px;
}

/* ---------- ALERT (callout) ---------- */
.alert {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.55;
  align-items: flex-start;
}
.alert__icon { font-size: 18px; line-height: 1; margin-top: 1px; flex-shrink: 0; }
.alert--warning { background: var(--amber-light); border: 1px solid #fde68a; color: #92400e; }
.alert--info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert--good    { background: var(--green-light); border: 1px solid #a7f3d0; color: var(--green-dark); }
.alert strong { font-weight: 700; }

/* ---------- PROS / CONS ---------- */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proscons-col {
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1px solid;
}
.proscons-col--pros {
  background: var(--green-light);
  border-color: #a7f3d0;
}
.proscons-col--cons {
  background: var(--red-light);
  border-color: #fecaca;
}
.proscons-col__head {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proscons-col--pros .proscons-col__head { color: var(--green-dark); }
.proscons-col--cons .proscons-col__head { color: #991b1b; }
.proscons-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
}
.proscons-icon--good { background: var(--green); }
.proscons-icon--bad  { background: var(--red); }
.proscons-col ul { list-style: none; padding: 0; }
.proscons-col ul li {
  padding: 8px 0 8px 22px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.proscons-col ul li:last-child { border-bottom: none; }
.proscons-col--pros ul li { color: #065f46; }
.proscons-col--cons ul li { color: #7f1d1d; }
.proscons-col--pros ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: var(--green); font-weight: 800;
}
.proscons-col--cons ul li::before {
  content: "✕"; position: absolute; left: 0; top: 8px;
  color: var(--red); font-weight: 800;
}

/* ---------- ASSET STRIP (DailyForex-inspired) ---------- */
.asset-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 16px 0 12px;
}
.asset-tile {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.asset-tile:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.asset-tile__icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}
.asset-tile__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.asset-tile__own {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.asset-tile__note {
  font-size: 10px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.asset-tile--unavailable {
  background: var(--grey-100);
  color: var(--grey-400);
  opacity: 0.7;
}
.asset-tile--unavailable .asset-tile__icon { background: var(--grey-200); color: var(--grey-400); }
.asset-tile--unavailable .asset-tile__check {
  background: var(--grey-300);
  color: white;
}

.asset-strip-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: var(--grey-600);
  margin: 16px 0 12px;
}
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot {
  width: 12px; height: 12px; border-radius: 50%;
  display: inline-block;
}
.legend-dot--avail { background: var(--navy); }
.legend-dot--unavail { background: var(--grey-200); border: 1px solid var(--grey-300); }
.legend-dot--own { background: var(--green); }

/* ---------- DATA TABLES ---------- */
.table-wrap { overflow-x: auto; margin: 12px 0 16px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th, .data-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  vertical-align: top;
}
.data-table thead th {
  background: var(--grey-50);
  font-size: 11px;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-bottom: 2px solid var(--grey-200);
}
.data-table tbody td:first-child {
  font-weight: 600;
  color: var(--grey-800);
}
.data-table tbody tr:hover { background: var(--grey-50); }
.data-table .note { font-size: 12px; color: var(--grey-500); }
.data-table .ownership-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.data-table .ownership-badge--own { background: var(--green-light); color: var(--green-dark); }
.data-table .ownership-badge--cfd { background: var(--amber-light); color: #92400e; }

.tier-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tier-badge--1 { background: var(--green); color: white; }
.tier-badge--2 { background: var(--gold); color: var(--navy-deep); }
.tier-badge--3 { background: var(--grey-300); color: var(--grey-700); }
.tier-badge--4 { background: var(--red-light); color: var(--red); }

.regulator-symbol {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.bool-check {
  font-weight: 700;
  font-size: 14px;
}
.bool-check--yes { color: var(--green); }
.bool-check--no  { color: var(--red); }

.rating-mini {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

/* ---------- COST EXAMPLES card ---------- */
.cost-examples {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.cost-examples__head { margin-bottom: 8px; }
.cost-examples__tag {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cost-examples h4 {
  color: white !important;
  font-size: 17px !important;
  margin-top: 8px !important;
}
.cost-examples__intro {
  color: rgba(255,255,255,.85) !important;
  font-size: 13.5px;
  margin-bottom: 14px;
}
.cost-examples .data-table {
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.cost-examples .data-table thead th { background: var(--grey-50); }

/* ---------- TRADING PLATFORMS ---------- */
.screenshot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 22px;
}
.screenshot {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.screenshot__placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: var(--radius-sm);
}
.screenshot__placeholder-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.screenshot__placeholder-sub {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.screenshot figcaption {
  font-size: 12px;
  color: var(--grey-600);
  margin-top: 6px;
  text-align: center;
  font-style: italic;
}

/* ---------- ACCOUNTS GRID ---------- */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.account-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all var(--transition);
}
.account-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-sm); }
.account-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.account-card__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}
.account-card__best-for {
  font-size: 11px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.account-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-200);
}
.account-card__spec-label {
  font-size: 10px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.account-card__spec-value {
  font-size: 13px;
  color: var(--grey-800);
  font-weight: 600;
}
.account-card__desc {
  font-size: 13px;
  color: var(--grey-700);
  line-height: 1.55;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-card {
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.feature-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #78350f;
  margin-bottom: 6px;
}
.feature-card__body {
  font-size: 13px;
  color: #78350f;
  line-height: 1.55;
}

/* ---------- PERSONAS ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.persona-card {
  background: white;
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid;
  transition: all var(--transition);
}
.persona-card:hover { box-shadow: var(--shadow-sm); }
.persona-grid--good .persona-card { border-color: #a7f3d0; background: var(--green-light); }
.persona-grid--bad  .persona-card { border-color: #fecaca; background: var(--red-light); }
.persona-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.persona-grid--good .persona-card__icon { background: var(--green); }
.persona-grid--bad  .persona-card__icon { background: var(--red); }
.persona-card__body { flex: 1; }
.persona-card__title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.persona-grid--good .persona-card__title { color: var(--green-dark); }
.persona-grid--bad  .persona-card__title { color: #991b1b; }
.persona-card__text {
  font-size: 13px;
  line-height: 1.55;
}
.persona-grid--good .persona-card__text { color: #065f46; }
.persona-grid--bad  .persona-card__text { color: #7f1d1d; }

/* ---------- AUTHOR'S TAKE ---------- */
.content-section--take {
  background: linear-gradient(180deg, #fff 0%, var(--gold-light) 130%);
}
.authors-take {
  background: white;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 6px;
  box-shadow: var(--shadow-sm);
}
.authors-take__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-100);
}
.authors-take__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.authors-take__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.authors-take__role {
  font-size: 12px;
  color: var(--grey-500);
}
.authors-take__body p {
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}
.authors-take__body p:last-child { margin-bottom: 0; }
.authors-take__body p:first-child::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 0;
  display: inline-block;
  margin-right: 6px;
  vertical-align: -10px;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  scroll-margin-top: 76px;
}
.faq-section h2 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.faq-intro {
  font-size: 14px;
  color: var(--grey-600);
  margin-bottom: 20px;
}
.faq-item { border-bottom: 1px solid var(--grey-200); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 40px 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--navy);
  font-weight: 400;
  width: 26px; height: 26px;
  background: var(--grey-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; background: var(--navy); color: white; }
.faq-answer {
  padding: 0 0 18px 0;
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.65;
}

/* ---------- BOTTOM LINE ---------- */
.content-section--bottomline {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
}
.content-section--bottomline h2 { color: white; }
.content-section--bottomline p { color: rgba(255,255,255,.92); font-size: 16px; line-height: 1.7; }
.content-section--bottomline .cta-disclaimer { color: rgba(255,255,255,.6); margin-top: 12px; }
.bottomline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.content-section--bottomline .primary-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
}
.content-section--bottomline .primary-cta:hover { background: var(--gold-dark); }
.content-section--bottomline .secondary-cta {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: white !important;
}
.content-section--bottomline .secondary-cta:hover { background: rgba(255,255,255,.08); }

/* ---------- METHODOLOGY ---------- */
.methodology {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 24px;
}
.methodology h3 {
  font-size: 13px;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 12px;
}
.methodology__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 22px;
  font-size: 13px;
  color: var(--grey-700);
  margin-bottom: 12px;
  padding: 0;
}
.methodology__list li { padding-left: 20px; position: relative; line-height: 1.5; }
.methodology__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}
.methodology__list li strong { color: var(--navy); font-weight: 700; }
.methodology__note {
  font-size: 11.5px;
  color: var(--grey-500);
  font-style: italic;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 40px 0;
  margin-top: 40px;
  font-size: 13px;
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .review-hero-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-hero-card__left {
    border-right: none;
    border-bottom: 1px solid var(--grey-100);
    padding-right: 0;
    padding-bottom: 20px;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .review-hero-card__right {
    border-left: none;
    border-top: 1px solid var(--grey-100);
    padding-left: 0;
    padding-top: 20px;
  }
  .sub-ratings { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .review-layout { grid-template-columns: 1fr; gap: 0; }
  .toc-rail { display: none; }
}
@media (max-width: 768px) {
  .page-hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 15px; }
  .review-hero-card__left { flex-direction: column; align-items: flex-start; }
  .overall-rating__score { font-size: 44px; }
  .asset-strip { grid-template-columns: repeat(3, 1fr); }
  .proscons-grid,
  .accounts-grid,
  .features-grid,
  .persona-grid,
  .screenshot-row { grid-template-columns: 1fr; }
  .sub-ratings { grid-template-columns: 1fr; }
  .methodology__list { grid-template-columns: 1fr; }
  .content-section { padding: 22px 18px; }
  .content-section h2 { font-size: 22px; }
  .faq-section { padding: 20px 18px; }
  .data-table th, .data-table td { padding: 9px 8px; font-size: 12.5px; }
}
@media (max-width: 520px) {
  .container { padding: 0 14px; }
  .page-hero h1 { font-size: 24px; }
  .asset-strip { grid-template-columns: repeat(2, 1fr); }
  .review-hero-card { padding: 18px; }
}