/* ============================================================
   TechVizier — main stylesheet (v3: premium editorial)
   Sophisticated palette, soft shadows, hairline borders.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --paper:        #FAFBFC;
  --paper-2:      #F4F5F7;
  --paper-3:      #E5E7EB;
  --white:        #FFFFFF;

  /* Ink — deep navy nearly black */
  --ink:          #0F1729;
  --ink-2:        #1F2937;
  --ink-3:        #374151;
  --muted:        #6B7280;
  --muted-soft:   #9CA3AF;

  /* Purple — refined deep brand */
  --purple:       #5B21B6;
  --purple-2:     #7C3AED;
  --purple-soft:  #C4B5FD;
  --purple-bg:    #F5F3FF;

  /* Gold — editorial accent */
  --gold:         #B8860B;
  --gold-bright:  #D4A537;
  --gold-soft:    #FCD34D;
  --gold-bg:      #FEF9E7;

  /* Status */
  --success:      #047857;
  --success-bg:   #ECFDF5;
  --coral:        #B91C1C;
  --coral-bg:     #FEF2F2;

  /* Lines */
  --hairline:     rgba(15, 23, 41, 0.08);
  --border:       rgba(15, 23, 41, 0.12);
  --border-strong:rgba(15, 23, 41, 0.20);

  /* Soft modern shadows */
  --shadow-xs:    0 1px 2px rgba(15, 23, 41, 0.05);
  --shadow-sm:    0 1px 3px rgba(15, 23, 41, 0.08), 0 1px 2px rgba(15, 23, 41, 0.04);
  --shadow-md:    0 4px 6px -1px rgba(15, 23, 41, 0.06), 0 2px 4px -2px rgba(15, 23, 41, 0.04);
  --shadow-lg:    0 10px 15px -3px rgba(15, 23, 41, 0.08), 0 4px 6px -4px rgba(15, 23, 41, 0.05);
  --shadow-xl:    0 20px 25px -5px rgba(15, 23, 41, 0.10), 0 8px 10px -6px rgba(15, 23, 41, 0.06);
  --shadow-2xl:   0 25px 50px -12px rgba(15, 23, 41, 0.18);

  /* Radii */
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    20px;

  --container:    1200px;
  --container-lg: 1280px;

  /* Fonts */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', SFMono-Regular, Menlo, monospace;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--ink); }
button { font-family: inherit; cursor: pointer; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 1rem; background: var(--ink); color: var(--paper); padding: 8px 16px; border-radius: var(--radius-sm); z-index: 999; }
.skip-link:focus { left: 1rem; }

::selection { background: var(--purple-bg); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.022em; }
h3 { font-size: clamp(20px, 2.2vw, 24px); letter-spacing: -0.015em; }
h4 { font-size: 18px; letter-spacing: -0.01em; }
p, ul, ol, blockquote { margin: 0 0 1.1em; }
small { font-size: 13px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--purple);
}
.eyebrow svg { width: 14px; height: 14px; }
.lead { font-size: 19px; color: var(--ink-3); line-height: 1.6; font-weight: 400; }

.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

/* Tabular numerals for editorial stats */
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-lg { max-width: var(--container-lg); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 56px 0; }
.section--paper-2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }

/* ---------- Buttons ---------- */
.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .15s ease;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.tv-btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.tv-btn-primary:hover { background: var(--ink-2); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.tv-btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, var(--shadow-sm);
}
.tv-btn-purple:hover { background: #4C1D95; color: var(--white); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, var(--shadow-md); }

.tv-btn-gold {
  background: var(--gold-bright);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.tv-btn-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.tv-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.tv-btn-ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }

.tv-btn-link {
  padding: 0;
  background: transparent;
  color: var(--purple);
  font-weight: 600;
  border: 0;
  border-radius: 0;
  position: relative;
}
.tv-btn-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .25s ease;
}
.tv-btn-link:hover { color: var(--ink); transform: none; }
.tv-btn-link:hover::after { background: var(--ink); }

.tv-btn-large { padding: 14px 26px; font-size: 15px; }
.tv-btn-block { display: flex; width: 100%; }

/* ---------- Promo bar ---------- */
.tv-promo-bar {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding: 9px 16px;
  font-weight: 400;
}
.tv-promo-bar a { color: var(--paper); display: inline-flex; align-items: center; gap: 8px; }
.tv-promo-bar a:hover { color: var(--gold-soft); }
.tv-promo-bar svg { width: 13px; height: 13px; color: var(--gold-bright); }

/* ---------- Header ---------- */
.tv-header {
  background: rgba(250, 251, 252, 0.92);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.tv-header.is-scrolled { box-shadow: var(--shadow-sm); }
.tv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.tv-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tv-logo svg { height: 38px; width: auto; }
.tv-logo img { height: 38px; width: auto; object-fit: contain; }
.tv-logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.tv-logo__text span { color: var(--purple); }

.tv-nav { display: flex; gap: 28px; }
.tv-nav a {
  color: var(--ink-3);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 0;
  position: relative;
}
.tv-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.tv-nav a:hover, .tv-nav .current-menu-item > a { color: var(--ink); }
.tv-nav a:hover::after, .tv-nav .current-menu-item > a::after { transform: scaleX(1); }

.tv-header__cta { display: flex; align-items: center; gap: 14px; }
.tv-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
}
.tv-mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); margin: 4px auto; transition: transform .2s, opacity .2s; }

/* ---------- Hero ---------- */
.tv-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}
.tv-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, var(--purple-bg), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.tv-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.tv-hero h1 { margin-top: 20px; }
.tv-hero p.lead { margin-bottom: 32px; max-width: 560px; }
.tv-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.tv-hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.tv-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.tv-hero__meta-item svg { width: 16px; height: 16px; color: var(--purple); }

/* Featured-review card */
.tv-hero__featured {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--hairline);
  position: relative;
}
.tv-hero__featured-badge {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--ink);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
}
.tv-hero__featured-badge svg { width: 12px; height: 12px; color: var(--gold-bright); }
.tv-hero__featured-img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--gold-bg) 100%);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tv-hero__featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  pointer-events: none;
}
.tv-hero__featured-img img { width: 100%; height: 100%; object-fit: cover; }
.tv-hero__featured-vendor {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.tv-hero__featured-vendor-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.tv-hero__featured-vendor-logo > svg { width: 24px; height: 24px; }
.tv-hero__featured-vendor-name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.tv-hero__featured-vendor-tagline {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.tv-hero__featured h3 { font-size: 22px; margin: 0 0 8px; line-height: 1.25; }
.tv-hero__featured p { font-size: 14px; color: var(--ink-3); margin: 0 0 20px; line-height: 1.55; }
.tv-hero__featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  gap: 12px;
}

/* ---------- Vendor logos strip (NEW — credibility marker) ---------- */
.tv-vendors {
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.tv-vendors__intro {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.tv-vendors__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}
.tv-vendors__logo {
  width: 100%;
  max-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
  cursor: pointer;
}
.tv-vendors__logo:hover { color: var(--ink); transform: translateY(-1px); }
.tv-vendors__logo > svg { width: 32px; height: 32px; }
.tv-vendors__logo span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  margin-left: 8px;
  letter-spacing: -0.01em;
}

/* ---------- Rating badge ---------- */
.tv-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  padding: 7px 13px;
  border-radius: var(--radius-md);
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.tv-rating--success { background: var(--success-bg); color: var(--success); border-color: rgba(4, 120, 87, 0.18); }
.tv-rating--indigo  { background: var(--purple-bg); color: var(--purple); border-color: rgba(91, 33, 182, 0.18); }
.tv-rating--warning { background: var(--gold-bg); color: var(--gold); border-color: rgba(184, 134, 11, 0.22); }
.tv-rating--coral   { background: var(--coral-bg); color: var(--coral); border-color: rgba(185, 28, 28, 0.18); }

.tv-rating__num   { font-size: 20px; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.tv-rating__total { font-size: 11px; opacity: 0.65; line-height: 1; font-weight: 500; }
.tv-rating__label { font-size: 10.5px; font-weight: 600; margin-left: 6px; padding-left: 8px; border-left: 1px solid currentColor; opacity: 0.85; line-height: 1; align-self: center; font-family: var(--font-sans); letter-spacing: 0.3px; text-transform: uppercase; }

.tv-rating--sm { padding: 4px 10px; }
.tv-rating--sm .tv-rating__num   { font-size: 14px; }
.tv-rating--sm .tv-rating__total { font-size: 10px; }
.tv-rating--sm .tv-rating__label { font-size: 10px; }

.tv-rating--lg { padding: 14px 20px; }
.tv-rating--lg .tv-rating__num   { font-size: 36px; }
.tv-rating--lg .tv-rating__total { font-size: 15px; }
.tv-rating--lg .tv-rating__label { font-size: 12px; }

/* ---------- Pricing pill ---------- */
.tv-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink-3);
}
.tv-pill--success { background: var(--success-bg); color: var(--success); border-color: rgba(4, 120, 87, 0.15); }
.tv-pill--indigo  { background: var(--purple-bg); color: var(--purple); border-color: rgba(91, 33, 182, 0.15); }
.tv-pill--muted   { background: var(--paper-2); }
.tv-pill--warning { background: var(--gold-bg); color: var(--gold); border-color: rgba(184, 134, 11, 0.18); }

/* ---------- Editorial Standards bar ---------- */
.tv-standards {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.tv-standards::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.12), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(212, 165, 55, 0.08), transparent 50%);
  pointer-events: none;
}
.tv-standards .container { position: relative; }
.tv-standards__head { text-align: center; margin-bottom: 56px; }
.tv-standards__head .eyebrow { color: var(--gold-bright); }
.tv-standards__head h2 { color: var(--white); max-width: 640px; margin: 12px auto 0; }
.tv-standards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.tv-standards__stat { text-align: center; }
.tv-standards__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.tv-standards__num em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}
.tv-standards__label { font-size: 12px; color: rgba(255, 255, 255, 0.55); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }

/* ---------- Categories grid ---------- */
.tv-cats__head { text-align: center; margin-bottom: 56px; }
.tv-cats__head h2 { margin-bottom: 12px; }
.tv-cats__head p { color: var(--ink-3); max-width: 580px; margin: 0 auto; font-size: 17px; }
.tv-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tv-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--hairline);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.tv-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.tv-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: var(--ink);
}
.tv-cat-card:hover::before { transform: scaleX(1); }
.tv-cat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.tv-cat-card__icon svg { width: 24px; height: 24px; }
.tv-cat-card h3 { font-size: 18px; margin: 0; line-height: 1.25; font-weight: 500; }
.tv-cat-card p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }
.tv-cat-card__count {
  font-size: 11.5px;
  color: var(--purple);
  font-weight: 600;
  margin-top: auto;
  padding-top: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ---------- Reviews / Tools listing ---------- */
.tv-reviews__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.tv-reviews__head h2 { margin: 6px 0 0; }
.tv-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.tv-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  position: relative;
}
.tv-review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }

.tv-review-card__image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--purple-bg), var(--gold-bg));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.tv-review-card__image img { width: 100%; height: 100%; object-fit: cover; }
.tv-review-card__vendor-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.tv-review-card__vendor-mark > svg { width: 32px; height: 32px; }
.tv-review-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.tv-review-card__rating-overlay {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 4px 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hairline);
}
.tv-review-card__body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.tv-review-card__vendor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tv-review-card__vendor-row > svg { width: 18px; height: 18px; color: var(--ink); flex-shrink: 0; }
.tv-review-card__title { font-size: 19px; margin: 0; line-height: 1.25; font-weight: 500; }
.tv-review-card__title a { color: var(--ink); }
.tv-review-card__title a:hover { color: var(--purple); }
.tv-review-card__desc { font-size: 14px; color: var(--ink-3); margin: 0; flex: 1; line-height: 1.55; }
.tv-review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  gap: 12px;
}
.tv-review-card__footer .tv-btn-link { font-size: 13px; }

/* ---------- Featured-in / press strip (NEW) ---------- */
.tv-press {
  padding: 48px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}
.tv-press__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.tv-press__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.tv-press__items {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.tv-press__items span {
  font-style: italic;
  letter-spacing: -0.02em;
}

/* ---------- Pros & Cons ---------- */
.tv-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.tv-proscons__col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  border: 1px solid var(--hairline);
  position: relative;
}
.tv-proscons__col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.tv-proscons__col--pros::before { background: var(--success); }
.tv-proscons__col--cons::before { background: var(--coral); }
.tv-proscons__col h4 {
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tv-proscons__col--pros h4 { color: var(--success); }
.tv-proscons__col--cons h4 { color: var(--coral); }
.tv-proscons__col ul { list-style: none; padding: 0; margin: 0; }
.tv-proscons__col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.55;
  align-items: start;
  color: var(--ink-2);
}
.tv-proscons__col--pros li::before { content: '+'; color: var(--success); font-weight: 700; line-height: 1.55; font-size: 18px; }
.tv-proscons__col--cons li::before { content: '−'; color: var(--coral);   font-weight: 700; line-height: 1.55; font-size: 16px; }

/* ---------- Article cards ---------- */
.tv-articles { padding: 96px 0; }
.tv-articles__layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; }
.tv-articles__list { display: flex; flex-direction: column; gap: 28px; }
.tv-article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tv-article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.tv-article-card__image { background: linear-gradient(135deg, var(--purple-bg), var(--gold-bg)); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.tv-article-card__image img { width: 100%; height: 100%; object-fit: cover; }
.tv-article-card__image svg { width: 40px; height: 40px; color: var(--ink); opacity: 0.4; }
.tv-article-card__body { padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.tv-article-card__meta { font-size: 12px; color: var(--muted); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-weight: 500; }
.tv-article-card__cat { color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; font-size: 11px; }
.tv-article-card__title { font-size: 22px; margin: 0; line-height: 1.25; font-weight: 500; }
.tv-article-card__title a { color: var(--ink); }
.tv-article-card__title a:hover { color: var(--purple); }
.tv-article-card__excerpt { font-size: 14px; color: var(--ink-3); margin: 0; line-height: 1.6; }
.tv-article-card__more { font-size: 13px; font-weight: 600; color: var(--purple); margin-top: auto; }

/* ---------- Sidebar / Widgets ---------- */
.tv-sidebar { display: flex; flex-direction: column; gap: 24px; }
.tv-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--hairline);
}
.tv-widget__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.tv-widget--newsletter {
  background: var(--ink);
  color: var(--paper);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.tv-widget--newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18), transparent 50%);
  pointer-events: none;
}
.tv-widget--newsletter > * { position: relative; }
.tv-widget--newsletter .tv-widget__title { color: var(--white); }
.tv-widget--newsletter p { font-size: 14px; opacity: 0.7; margin-bottom: 18px; }
.tv-widget--newsletter input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  margin-bottom: 12px;
}
.tv-widget--newsletter input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.4); }
.tv-widget--newsletter input[type="email"]:focus { outline: 2px solid var(--gold-bright); outline-offset: 1px; background: rgba(255, 255, 255, 0.10); }
.tv-widget--newsletter .tv-btn { background: var(--gold-bright); color: var(--ink); }
.tv-widget--newsletter .tv-btn:hover { background: var(--gold); color: var(--white); }

.tv-widget--top-rated ol { list-style: none; padding: 0; margin: 0; counter-reset: rankcounter; }
.tv-widget--top-rated li {
  counter-increment: rankcounter;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.tv-widget--top-rated li:first-child { padding-top: 0; }
.tv-widget--top-rated li:last-child { border-bottom: 0; padding-bottom: 0; }
.tv-widget--top-rated li::before {
  content: counter(rankcounter);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tv-widget--top-rated h4 { font-size: 14px; line-height: 1.3; margin: 0; font-weight: 500; }
.tv-widget--top-rated h4 a { color: var(--ink); }
.tv-widget--top-rated h4 a:hover { color: var(--purple); }
.tv-widget--top-rated span { font-size: 12px; color: var(--muted); font-weight: 500; font-variant-numeric: tabular-nums; }

.tv-widget--about p { font-size: 14px; color: var(--ink-3); line-height: 1.65; }
.tv-widget--about__avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--ink));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 14px;
}
.tv-widget--about__avatar svg { width: 28px; height: 28px; color: var(--gold-bright); }

/* ---------- Footer CTA ---------- */
.tv-footer-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tv-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(124, 58, 237, 0.20), transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(212, 165, 55, 0.10), transparent 50%);
  pointer-events: none;
}
.tv-footer-cta .container { position: relative; }
.tv-footer-cta .eyebrow { color: var(--gold-bright); }
.tv-footer-cta h2 { color: var(--white); margin: 12px 0; }
.tv-footer-cta p { color: rgba(255, 255, 255, 0.7); font-size: 17px; max-width: 560px; margin: 0 auto 36px; }
.tv-footer-cta__form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.tv-footer-cta input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.tv-footer-cta input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.4); }
.tv-footer-cta input[type="email"]:focus { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.tv-footer-cta__form .tv-btn { background: var(--gold-bright); color: var(--ink); }
.tv-footer-cta__form .tv-btn:hover { background: var(--gold); color: var(--white); }
.tv-footer-cta__small { font-size: 12.5px; color: rgba(255, 255, 255, 0.45); margin-top: 18px; }

/* ---------- Footer ---------- */
.tv-footer { background: #0A0F1F; color: rgba(255, 255, 255, 0.6); padding: 72px 0 32px; font-size: 14px; }
.tv-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.tv-footer h4, .tv-footer-widget__title {
  font-family: var(--font-sans);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.tv-footer ul { list-style: none; padding: 0; margin: 0; }
.tv-footer li { margin-bottom: 9px; }
.tv-footer a { color: rgba(255, 255, 255, 0.6); }
.tv-footer a:hover { color: var(--white); }
.tv-footer__about { color: rgba(255, 255, 255, 0.55); margin: 16px 0; line-height: 1.65; max-width: 320px; }
.tv-footer__social { display: flex; gap: 8px; margin-top: 18px; }
.tv-footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.tv-footer__social a:hover { background: rgba(212, 165, 55, 0.12); border-color: var(--gold-bright); }
.tv-footer__social svg { width: 16px; height: 16px; color: rgba(255, 255, 255, 0.7); transition: color .15s; }
.tv-footer__social a:hover svg { color: var(--gold-bright); }
.tv-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}
.tv-footer__legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.tv-affiliate-disclosure {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 36px;
}
.tv-affiliate-disclosure strong { color: rgba(255, 255, 255, 0.85); }

/* ---------- Single post / Page ---------- */
.tv-page-header { padding: 72px 0 36px; max-width: 800px; margin: 0 auto; text-align: center; }
.tv-page-header__meta { font-size: 13px; color: var(--muted); margin-bottom: 14px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; font-weight: 500; }
.tv-page-header__cat { color: var(--purple); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; font-size: 11px; }
.tv-page-header h1 { margin-bottom: 18px; }
.tv-page-header__lead { color: var(--ink-3); font-size: 19px; }
.tv-featured-image { max-width: 1080px; margin: 0 auto 56px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.tv-content {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 32px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}
.tv-content > * { margin-bottom: 1.2em; }
.tv-content h2 { margin-top: 1.6em; color: var(--ink); }
.tv-content h3 { margin-top: 1.4em; color: var(--ink); }
.tv-content blockquote {
  border-left: 3px solid var(--purple);
  padding: 8px 0 8px 24px;
  margin: 1.4em 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
}
.tv-content code { background: var(--paper-2); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; font-family: var(--font-mono); color: var(--purple); border: 1px solid var(--hairline); }
.tv-content pre { background: var(--ink); color: var(--paper); padding: 22px; border-radius: var(--radius-md); overflow-x: auto; font-family: var(--font-mono); font-size: 14px; }
.tv-content pre code { background: transparent; padding: 0; color: inherit; border: 0; }
.tv-content img { border-radius: var(--radius-md); }
.tv-content ul, .tv-content ol { padding-left: 1.4em; }
.tv-content a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--purple-soft); }
.tv-content a:hover { text-decoration-color: var(--purple); }
.tv-content .alignwide { max-width: 1080px; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding: 0 32px; }
.tv-content .alignfull { width: 100vw; margin-left: calc(50% - 50vw); padding: 0; }

/* Single review */
.tv-review-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 0 auto 36px;
  max-width: 760px;
  border: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.tv-review-summary__meta { display: grid; gap: 8px; }
.tv-review-summary__label { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.tv-review-summary__value { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.tv-review-summary__rating { text-align: right; }

.tv-review-cta {
  background: linear-gradient(135deg, var(--purple-bg), var(--gold-bg));
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--hairline);
}
.tv-review-cta__text strong { display: block; font-size: 19px; font-family: var(--font-display); font-weight: 500; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.tv-review-cta__text span { font-size: 13px; color: var(--muted); }

.tv-post-meta { max-width: 720px; margin: 36px auto; padding: 28px 32px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--muted); }
.tv-post-meta a { color: var(--purple); }
.tv-tags { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.tv-tag { font-size: 12px; background: var(--paper-2); color: var(--ink); padding: 4px 11px; border-radius: 999px; border: 1px solid var(--hairline); font-weight: 500; }
.tv-tag:hover { background: var(--purple-bg); color: var(--purple); border-color: rgba(91, 33, 182, 0.2); }

/* Pagination */
.tv-pagination { display: flex; justify-content: center; gap: 8px; margin: 56px 0; }
.tv-pagination .page-numbers {
  padding: 10px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  background: var(--white);
  font-variant-numeric: tabular-nums;
}
.tv-pagination .page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.tv-pagination .current { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Comments */
.tv-comments { max-width: 720px; margin: 64px auto; padding: 0 32px; }
.tv-comments h2 { margin-bottom: 24px; }
.commentlist { list-style: none; padding: 0; margin: 0; }
.commentlist li { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 16px; }
.commentlist .children { margin-left: 32px; margin-top: 16px; }
.comment-author { font-weight: 600; color: var(--ink); }
.comment-meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.comment-form { background: var(--white); padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--hairline); }
.comment-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--hairline); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 14px; margin-bottom: 16px; background: var(--paper);
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form .submit { background: var(--ink); color: var(--white); border: 0; padding: 12px 22px; border-radius: var(--radius-md); font-weight: 600; cursor: pointer; }
.comment-form .submit:hover { background: var(--ink-2); }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] { flex: 1; padding: 10px 14px; border: 1px solid var(--hairline); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 14px; background: var(--white); }
.search-form button { background: var(--ink); color: var(--paper); border: 0; padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; }

/* WP alignment / media */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption-text, .wp-block-image figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; margin: 24px 0; }

/* 404 */
.tv-404 { padding: 120px 0; text-align: center; }
.tv-404 .eyebrow { color: var(--purple); margin-bottom: 20px; }
.tv-404 h1 {
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--ink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.tv-404 p { font-size: 18px; color: var(--ink-3); max-width: 480px; margin: 0 auto 32px; }

/* No results */
.tv-no-results { padding: 80px 32px; text-align: center; max-width: 600px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .tv-cats__grid { grid-template-columns: repeat(2, 1fr); }
  .tv-vendors__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
@media (max-width: 980px) {
  .tv-nav, .tv-header__cta .tv-btn { display: none; }
  .tv-mobile-toggle { display: block; }
  .tv-header.is-open .tv-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px 32px;
    border-bottom: 1px solid var(--hairline);
    gap: 0;
  }
  .tv-header.is-open .tv-nav a { padding: 12px 0; border-bottom: 1px solid var(--hairline); }
  .tv-header.is-open .tv-header__cta .tv-btn { display: inline-flex; }
  .tv-hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .tv-standards__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .tv-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .tv-articles__layout { grid-template-columns: 1fr; }
  .tv-article-card { grid-template-columns: 1fr; }
  .tv-article-card__image { aspect-ratio: 16 / 9; }
  .tv-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .tv-proscons { grid-template-columns: 1fr; }
  .tv-vendors__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .tv-hero { padding: 56px 0 64px; }
  .tv-standards__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tv-cats__grid { grid-template-columns: 1fr; }
  .tv-reviews__grid { grid-template-columns: 1fr; }
  .tv-footer__grid { grid-template-columns: 1fr; }
  .tv-vendors__grid { grid-template-columns: repeat(2, 1fr); }
  .tv-reviews__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .tv-footer-cta__form { flex-direction: column; }
  .tv-footer-cta input[type="email"] { width: 100%; }
  .tv-review-summary { grid-template-columns: 1fr; }
  .tv-press__row { gap: 20px; }
  .tv-press__items { gap: 24px; font-size: 16px; }
}

/* Print */
@media print {
  .tv-promo-bar, .tv-header, .tv-sidebar, .tv-footer-cta, .tv-footer { display: none; }
  body { background: #FFF; color: #000; }
  .tv-content { max-width: 100%; padding: 0; }
}
