/* ============================================================
   UntangledStreaming — Content page styles.
   Dark editorial theme matching the cord-cutter quiz aurora aesthetic.
   ============================================================ */
:root {
  /* Core palette pulled from index.html */
  --ink: #0a1530;
  --ink-deep: #050a1a;
  --ink-soft: rgba(255,255,255,0.72);
  --ink-faint: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.20);
  --accent: #00b4ff;        /* cyan */
  --accent-2: #f8fafc;      /* violet */
  --accent-3: #00b4ff;      /* pink */
  --accent-hot: #ff3d8b;
  --accent-blue: #00b4ff;
  --success: #00b4ff;
  --warning: #fbbf24;
  --danger: #ef4444;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-2: rgba(255,255,255,0.06);
  --bg-card-3: rgba(255,255,255,0.08);
  --grad-aurora: linear-gradient(135deg, #00b4ff 0%, #f8fafc 50%, #00b4ff 100%);
  --grad-hot: linear-gradient(135deg, #ff3d8b, #d63a78);
  --grad-cool: linear-gradient(135deg, #00b4ff, #0052cc);
  --shadow-card: 0 8px 24px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.05) inset;
  --shadow-deep: 0 18px 48px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.08) inset;
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  color: #fff;
  background: radial-gradient(ellipse at top, #1a2548 0%, #0a1530 35%, #050a1a 100%);
  background-attachment: fixed;
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
}

/* Aurora blobs — match the cord-cutter quiz */
body::before, body::after {
  content: "";
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background: radial-gradient(circle, #00b4ff, transparent 60%);
  top: -200px; left: -200px;
}
body::after {
  background: radial-gradient(circle, #00b4ff, transparent 60%);
  bottom: -200px; right: -200px;
}

/* ============ HEADER ============ */
.cp-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 21, 48, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 10px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.cp-logo {
  font-size: 17px; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -0.02em;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap; flex-shrink: 0;
}
.cp-nav { display: flex; gap: 18px; align-items: center; flex: 1; justify-content: center; min-width: 0; flex-wrap: wrap; }
.cp-nav a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.cp-nav a:hover { color: #00b4ff; border-bottom-color: #00b4ff; }
.cp-nav .cp-quiz-link {
  background: linear-gradient(135deg, #00b4ff, #f8fafc);
  color: #0a1530 !important;
  padding: 7px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: none !important;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,180,255,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cp-nav .cp-quiz-link:hover {
  color: #0a1530 !important;
  border-bottom: none !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,180,255,0.35);
}
@media (max-width: 1100px) {
  .cp-nav { gap: 14px; }
  .cp-nav a:not(.cp-quiz-link) { font-size: 12px; }
}

/* ============ MAIN LAYOUT ============ */
.cp-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 20px 80px;
  position: relative;
  z-index: 1;
}

/* ============ ARTICLE HEAD / HERO ============ */
.cp-article-head {
  margin-bottom: 28px;
}
.cp-eyebrow {
  display: inline-block;
  background: rgba(0,180,255,0.12);
  border: 1px solid rgba(0,180,255,0.30);
  color: var(--accent);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px;
  margin-bottom: 18px;
}
.cp-article-head h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  font-weight: 900;
}
.cp-article-head h1 .gradient {
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cp-subtitle {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 24px;
  max-width: 740px;
  font-weight: 400;
}

/* Byline — small attribution row under the subtitle.
   Establishes Rick's authority on every product page without making the
   site feel personal-brand. Wirecutter pattern. */
.cp-byline {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0 0 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.cp-byline-link {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(0,180,255,0.4);
  padding-bottom: 1px;
  transition: border-color 0.15s, color 0.15s;
}
.cp-byline-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.cp-byline-sep { color: rgba(255, 255, 255, 0.20); }
.cp-byline-credentials { color: var(--ink-soft); }

/* TLDR — bold gradient card */
.cp-tldr {
  background: linear-gradient(135deg, rgba(0,180,255,0.10), rgba(248,250,252,0.08));
  border: 1px solid rgba(248,250,252,0.30);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 28px;
  font-size: 16px; line-height: 1.55;
  color: #fff;
}
/* Only the FIRST <b> in a Short version is treated as the section label.
   Any later <b> tags render as normal inline bold so authors can use
   them for emphasis without each one becoming a fake heading. */
.cp-tldr > b:first-child {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.cp-tldr b:not(:first-child) {
  display: inline;
  font-weight: 800;
  color: #fff;
  text-transform: none;
  letter-spacing: normal;
  background: none;
  -webkit-text-fill-color: initial;
}

/* Related Devices section */
.cp-related {
  margin: 44px 0;
}
.cp-related h3 {
  font-size: 24px;
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: -0.015em;
}
.cp-related-intro {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.cp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.cp-related-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: all 0.18s;
  box-shadow: var(--shadow-card);
}
.cp-related-card:hover {
  border-color: rgba(0,180,255,0.4);
  background: rgba(0,180,255,0.06);
  transform: translateY(-2px);
}
/* Variant with a small product thumbnail — keeps card in column layout,
   places a constrained-width product image above the title. */
.cp-related-card--with-img { padding: 18px 18px 16px; gap: 12px; }
.cp-related-thumb {
  width: 100%;
  height: 110px;
  border-radius: 10px;
  /* Soft radial vignette — keeps product center bright, fades edges so the white
     doesn't slam against the dark card. Replaces the harsh solid-white box. */
  background: radial-gradient(ellipse at center, #ffffff 0%, #ffffff 45%, #d9e0ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.20),
    inset 0 0 28px rgba(10,21,48,0.10),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.cp-related-thumb img { max-width: 90%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.cp-related-card--with-img .cp-related-body { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 480px) {
  .cp-related-thumb { height: 88px; }
}
.cp-related-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.cp-related-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cp-related-price {
  font-size: 15px;
  font-weight: 900;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cp-related-blurb {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cp-related-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: auto;
}
.cp-related-link span { margin-left: 4px; transition: transform 0.15s; }
.cp-related-card:hover .cp-related-link span { transform: translateX(4px); }

/* ============ HERO IMAGE ============
   Aurora spotlight frame (outer) + product photo (inner) with reusable
   crop pattern. The inner `.cp-hero-frame` enforces an aspect ratio and
   uses object-fit: cover + object-position to crop out unwanted overlays
   (badges, watermarks) — set via images.primaryFocusPosition in the JSON.
   Defaults to "center"; use "top" to crop badges out of the bottom, etc. */
.cp-hero-image {
  margin: 0 0 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 25% 30%, rgba(0,180,255,0.28), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0,180,255,0.22), transparent 55%),
    linear-gradient(135deg, #1a2548 0%, #0a1530 60%, #050a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-hero-frame {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 30px rgba(0,180,255,0.20))
    drop-shadow(0 0 50px rgba(0,180,255,0.10));
  background: rgba(255, 255, 255, 0.02);
}
.cp-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* object-position is set inline per page via the heroFocusPosition var.
     Default is "center"; override with "top" / "bottom" / "left" / etc.
     object-fit is also set inline ("cover" for opaque photos, "contain"
     for transparent PNGs that should show the page backdrop through). */
}

/* SVG hero illustrations are designed at 1200×630 (1.91:1) — wider than the
   default 4:3 frame. Show them in full instead of cropping. */
.cp-hero-image img[src$=".svg"] {
  object-fit: contain;
}
.cp-hero-frame:has(img[src$=".svg"]) {
  aspect-ratio: 1200 / 630;
  max-width: 760px;
  background: transparent;
}

/* Variant for transparent-background hero PNGs — show the whole product,
   let the dark page theme show through, drop the white-fill background
   that was helping JPEGs but fighting PNGs. */
.cp-hero-image--contain {
  /* Remove the soft white fill behind the frame; the transparent PNG sits
     directly on the page gradient. */
}
.cp-hero-image--contain .cp-hero-frame {
  background: transparent !important;
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 30px rgba(0,180,255,0.18))
    drop-shadow(0 0 50px rgba(0,180,255,0.10));
}
.cp-hero-image--contain .cp-hero-frame img {
  padding: 24px;
}

/* Crop hint — visible only when data-focus !== 'center', subtle dev marker.
   Comment out in production if you want zero indicator. */
.cp-hero-image[data-focus]:not([data-focus="center"])::after {
  content: "";
  position: absolute;
  bottom: 8px; right: 12px;
  width: 6px; height: 6px;
  background: rgba(0,180,255,0.4);
  border-radius: 50%;
  pointer-events: none;
}
.cp-hero-image .credit {
  position: absolute; bottom: 8px; right: 12px;
  background: rgba(10, 21, 48, 0.7);
  color: #fff; font-size: 10px;
  padding: 4px 8px; border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.cp-hero-image .credit:hover { background: rgba(10, 21, 48, 0.9); }

/* Hero placeholder — designed card when no manufacturer product photo is
   uploaded yet. Looks intentional, not broken. Editor sees the to-do hint
   inside the card. Swap-out is automatic when JSON gets images.primary. */
.cp-hero-placeholder {
  margin: 0 0 24px;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 30%, rgba(0,180,255,0.30), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0,180,255,0.28), transparent 55%),
    linear-gradient(135deg, #1a2548 0%, #0a1530 60%, #050a1a 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
}
.cp-hero-placeholder::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 14px;
  pointer-events: none;
}
.cp-hp-grid {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  text-align: center;
  padding: 30px 24px;
  position: relative; z-index: 1;
}
.cp-hp-maker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
}
.cp-hp-model {
  font-size: clamp(38px, 7vw, 78px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cp-hp-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 8px;
  font-style: italic;
}

/* ============ SPEC STRIP (under hero) ============ */
.cp-spec-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 36px;
  box-shadow: var(--shadow-card);
}
.cp-spec {
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--line);
}
.cp-spec:last-child { border-right: none; }
.cp-spec-label {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.10em; color: var(--ink-faint);
  font-weight: 700;
}
.cp-spec-val {
  font-size: 18px; font-weight: 900;
  letter-spacing: -0.01em;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ TOP BUY STRIP (right under hero) ============
   Compact horizontal row of branded retailer chips. For buyers who've
   already decided and want to click straight through. */
.cp-buy-strip {
  margin: 0 0 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cp-buy-strip-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.cp-buy-strip-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  font-weight: 800;
}
.cp-buy-strip-price {
  font-size: 18px;
  font-weight: 900;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.cp-buy-strip-cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
/* Top buy strip — pill cards with real SVG retailer logos */
.cp-buy-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  transition: all 0.15s;
}
.cp-buy-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.cp-buy-pill .cp-merchant-logo {
  height: 22px;
  width: auto;
  max-width: 80px;
  display: block;
}
.cp-merchant-fallback {
  font-size: 13px; font-weight: 800; color: #fff;
}
.cp-buy-pill-arrow {
  font-size: 14px; color: var(--accent); font-weight: 900;
}

/* ============ SAVINGS HOOK STRIP ============ */
.cp-savings-hook {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0,180,255,0.12), rgba(0,180,255,0.08));
  border: 1px solid rgba(0,180,255,0.30);
  border-left: 4px solid #00b4ff;
  padding: 12px 18px;
  border-radius: 12px;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
}
.cp-savings-icon { font-size: 20px; line-height: 1; }
.cp-savings-text { color: #fff; font-weight: 700; letter-spacing: -0.005em; }

/* ============ BUY LINK PEEK (under spec strip) ============ */
.cp-buy-peek {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 0 0 32px;
  font-size: 13px;
}
.cp-buy-peek-label {
  color: var(--ink-faint);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.cp-buy-peek-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0,180,255,0.08);
  border: 1px solid rgba(0,180,255,0.20);
  transition: all 0.15s;
}
.cp-buy-peek-link:hover {
  background: rgba(0,180,255,0.18);
  border-color: var(--accent);
  color: #fff;
}

/* ============ SETUP TIPS (collapsible) ============ */
.cp-setup-tips {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin: 36px 0 24px;
  overflow: hidden;
}
.cp-setup-tips summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  user-select: none;
  transition: background 0.15s;
}
.cp-setup-tips summary::-webkit-details-marker { display: none; }
.cp-setup-tips summary::before {
  content: "▸";
  color: var(--accent);
  font-size: 14px;
  margin-right: 4px;
  transition: transform 0.18s;
  display: inline-block;
}
.cp-setup-tips[open] summary::before { transform: rotate(90deg); }
.cp-setup-tips summary:hover { background: rgba(255, 255, 255, 0.04); }
.cp-setup-summary-text {
  flex: 1;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.cp-setup-summary-hint {
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cp-setup-body {
  padding: 8px 24px 22px;
  border-top: 1px solid var(--line);
}
.cp-setup-list {
  list-style: none;
  counter-reset: setup;
  padding: 0;
  margin: 0;
}
.cp-setup-list li {
  counter-increment: setup;
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-setup-list li:last-child { border-bottom: none; }
.cp-setup-list li::before {
  content: counter(setup);
  position: absolute;
  left: 0;
  top: 13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-aurora);
  color: #0a1530;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-setup-title { font-weight: 800; color: #fff; font-size: 15px; }
.cp-setup-detail { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* ============ BODY PROSE ============ */
.cp-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}
.cp-body h2 {
  font-size: 30px;
  margin: 48px 0 14px;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #fff;
  scroll-margin-top: 80px;
}
.cp-body h2:first-child { margin-top: 0; }
.cp-body h3 {
  font-size: 22px;
  margin: 32px 0 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
.cp-body h4 {
  font-size: 17px;
  margin: 24px 0 8px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cp-body p { margin: 0 0 18px; }
.cp-body ul, .cp-body ol {
  margin: 0 0 20px; padding-left: 24px;
}
.cp-body li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.cp-body ul li::marker { color: var(--accent); }
.cp-body ol li::marker { color: var(--accent-3); font-weight: 700; }

/* Plain-English numbered explainer list. Used in the "gold standard"
   article pattern: place this RIGHT AFTER the TLDR, BEFORE any
   technical diagrams or jargon. Big gradient-numbered circles, generous
   spacing, friendly bold leads. Authors: keep each <li> to 1–2 sentences
   in plain English. Save the acronyms for the technical body below. */
.cp-plain-steps {
  list-style: none !important;
  counter-reset: plain-step;
  padding-left: 0 !important;
  margin: 22px 0 22px !important;
}
.cp-plain-steps li {
  counter-increment: plain-step;
  position: relative;
  padding: 16px 18px 16px 64px;
  margin-bottom: 12px !important;
  background: linear-gradient(135deg, rgba(0,180,255,0.05), rgba(0,180,255,0.04));
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.55;
}
.cp-plain-steps li::before {
  content: counter(plain-step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #07101d;
  font-weight: 900;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-plain-steps li::marker { content: none; }
.cp-plain-steps li strong { color: #fff; font-weight: 800; }

/* Flow-diagram wrapper for SVG explainers (signal chain, network paths,
   etc.). Different from cp-hero-image — no photo frame, no cropping,
   no aspect-ratio lock. The SVG renders at its natural ratio with the
   caption sitting cleanly above. */
.cp-flowdiagram {
  margin: 24px 0;
  padding: 24px 18px;
  background: linear-gradient(135deg, rgba(0,180,255,0.05), rgba(0,180,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.cp-flowdiagram-caption {
  text-align: center;
  font-size: 13px;
  color: #7c8ba4;
  margin: 0 0 16px;
  font-weight: 600;
}
.cp-flowdiagram img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1100px;
  margin: 0 auto;
}
/* Nested bullet list inside a numbered item — visually subordinate,
   keeps the parent list's numbering intact. */
.cp-body li > ul.nested {
  margin: 10px 0 4px;
  padding-left: 22px;
  list-style: none;
}
.cp-body li > ul.nested li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.95em;
  color: var(--ink-soft);
}
.cp-body li > ul.nested li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0,180,255,0.5);
}
.cp-body strong, .cp-body b { color: #fff; font-weight: 800; }
.cp-body em, .cp-body i { color: rgba(255,255,255,0.88); }
.cp-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,180,255,0.35);
  transition: border-color 0.15s;
}
.cp-body a:hover { border-bottom-color: var(--accent); }
.cp-body code {
  background: rgba(255,255,255,0.08);
  padding: 2px 6px; border-radius: 4px;
  font-family: "SF Mono", Menlo, monospace;
  font-size: 0.88em;
  color: var(--accent);
}
.cp-body pre {
  background: #050a1a;
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 13px;
}
.cp-body pre code {
  background: none; padding: 0; color: #fff;
}

/* "In plain English" callout — for techy → laymans translation.
   Author writes a blockquote starting with "In plain English:" and CSS
   styles it distinctively. */
.cp-body blockquote {
  background: linear-gradient(135deg, rgba(0,180,255,0.10), rgba(248,250,252,0.08));
  border: 1px solid rgba(0,180,255,0.25);
  border-left: 4px solid var(--accent-3);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  font-style: normal;
  position: relative;
}
.cp-body blockquote::before {
  content: "📖 In plain English";
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 6px;
}
.cp-body blockquote p { margin: 0; }
.cp-body blockquote p + p { margin-top: 10px; }

/* Tables — comparison matrices */
.cp-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
  display: block;
  overflow-x: auto;
}
.cp-body thead { background: rgba(0,180,255,0.08); }
.cp-body th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
.cp-body td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  color: rgba(255,255,255,0.92);
  vertical-align: top;
}
.cp-body tr:last-child td { border-bottom: none; }
.cp-body tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
/* First column in tables — feature names get bold treatment */
.cp-body td:first-child { font-weight: 700; color: #fff; }
/* Center checkmarks/x marks look balanced in feature-comparison tables */
.cp-body td[style*="text-align:center"] { font-size: 16px; }

/* Comparison checkmarks (green) and X marks (red) — auto-wrapped by the
   markdown renderer so authors can just type ✓ / ✗ in tables. */
.cp-body .mk-check {
  color: #00b4ff;
  font-weight: 900;
  font-size: 1.15em;
  display: inline-block;
  line-height: 1;
  text-shadow: 0 0 12px rgba(0,180,255,0.35);
}
.cp-body .mk-x {
  color: #ef4444;
  font-weight: 900;
  font-size: 1.15em;
  display: inline-block;
  line-height: 1;
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.30);
}

/* Horizontal rule */
.cp-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
  margin: 36px 0;
}

/* ============ GALLERY ============ */
.cp-gallery {
  margin: 44px 0;
}
.cp-gallery h3 {
  font-size: 20px;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.cp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.cp-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2548, #0a1530);
  aspect-ratio: 4 / 3;
  position: relative;
  border: 1px solid var(--line);
}
.cp-gallery img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Inline images embedded in markdown body (e.g. ![alt](url) inside a section).
   Centered, max-width capped, soft shadow that lifts the product against
   the dark page background. Works for both transparent PNGs and white-bg JPGs. */
.mk-inline-img {
  display: block;
  margin: 28px auto 24px;
  max-width: min(520px, 100%);
  height: auto;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  padding: 18px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 18px 40px rgba(0,0,0,0.45);
}
.cp-gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(5,10,26,0.92), transparent);
  color: #fff;
  padding: 18px 14px 12px;
  font-size: 12px;
  font-weight: 700;
}

/* ============ BUY BLOCK ============ */
.cp-buy {
  background: linear-gradient(135deg, rgba(0,180,255,0.10), rgba(248,250,252,0.06));
  border: 1px solid rgba(0,180,255,0.30);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  margin: 44px 0 32px;
  box-shadow: var(--shadow-card);
  scroll-margin-top: 80px;
}
.cp-buy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.cp-buy h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.015em;
}
.cp-buy-price-tag {
  font-size: 22px;
  font-weight: 900;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.cp-buy-intro {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cp-buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.cp-buy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  padding: 18px 18px;
  min-height: 110px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}
.cp-buy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-aurora);
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 0;
}
.cp-buy-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,180,255,0.25);
}
.cp-buy-card:hover::before { opacity: 0.18; }
.cp-buy-card-merchant {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.cp-buy-card-cta {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cp-buy-card:hover .cp-buy-card-cta { color: #fff; }

/* Per-merchant brand color accents on the left border (bottom buy cards) */
.cp-buy-card.cp-buy-amazon { border-left: 4px solid #ff9900; }
.cp-buy-card.cp-buy-best-buy { border-left: 4px solid #0046be; }
.cp-buy-card.cp-buy-walmart { border-left: 4px solid #0071ce; }
.cp-buy-card.cp-buy-roku-direct, .cp-buy-card.cp-buy-roku { border-left: 4px solid #662d91; }
.cp-buy-card.cp-buy-target { border-left: 4px solid #cc0000; }
.cp-buy-card.cp-buy-costco { border-left: 4px solid #e31837; }
.cp-buy-card.cp-buy-b-h, .cp-buy-card.cp-buy-bh-photo { border-left: 4px solid #134f6c; }

/* Bottom buy card — real retailer logo at the top of each card */
.cp-buy-card-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.cp-buy-card-fallback {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.cp-buy-disclosure {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-faint);
  font-style: italic;
  line-height: 1.6;
}

/* Savings hook — "see where to buy" jump link */
.cp-savings-jump {
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  color: #00b4ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,180,255,0.4);
  padding-bottom: 1px;
  transition: all 0.15s;
  white-space: nowrap;
}
.cp-savings-jump:hover { color: #fff; border-bottom-color: #fff; }

/* ============ LOCAL PRO CONSULT ============ */
.local-pro-consult {
  background: linear-gradient(135deg, rgba(0,180,255,0.14), rgba(0,180,255,0.10));
  border: 1px solid rgba(248,250,252,0.30);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 40px 0;
  box-shadow: var(--shadow-card);
}
.lpc-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.lpc-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.lpc-title { font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.lpc-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.lpc-sub b { color: #fff; font-weight: 800; }

/* "What a pro install covers" service list — visible before the form */
.lpc-services {
  background: rgba(0,180,255,0.06);
  border: 1px solid rgba(0,180,255,0.25);
  border-radius: 12px;
  padding: 18px 20px 16px;
  margin: 0 0 22px;
}
.lpc-services-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00b4ff;
  margin-bottom: 10px;
}
.lpc-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px 18px;
}
.lpc-services-list li {
  font-size: 13.5px;
  color: var(--ink-soft, #cbd5e1);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.lpc-services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #00b4ff;
  font-weight: 800;
}
.lpc-services-list li b {
  color: var(--ink, #f8fafc);
  font-weight: 700;
}
.lpc-services-foot {
  font-size: 13px;
  color: var(--ink-soft, #94a3b8);
  margin: 14px 0 0;
  font-style: italic;
}

/* Two-column budget+timeline block on Q3 */
.lpc-q-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 540px) {
  .lpc-q-split { grid-template-columns: 1fr; gap: 14px; }
}
.lpc-sublabel {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft, #94a3b8);
  margin: 0 0 8px;
}

.lpc-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lpc-card-name { font-size: 17px; font-weight: 900; }
.lpc-card-meta { font-size: 12px; color: var(--ink-soft); }
.lpc-cta {
  background: var(--grad-cool);
  color: #fff;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,180,255,0.4);
}
.lpc-disclosure {
  font-size: 11px;
  color: var(--ink-faint);
  font-style: italic;
  margin-top: 14px;
  text-align: center;
}

/* ===== Pre-qualification form on consult block ===== */
.lpc-prequal {
  background: rgba(0,180,255,0.04);
  border: 1px solid rgba(0,180,255,0.18);
  border-radius: 12px;
  padding: 18px 20px 22px;
  margin-top: 14px;
}
.lpc-prequal .lpc-q {
  border: none;
  padding: 0;
  margin: 0 0 16px;
}
.lpc-prequal .lpc-q legend {
  font-size: 14px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 10px;
  padding: 0;
}
.lpc-prequal .lpc-q label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  margin: 4px 6px 4px 0;
  cursor: pointer;
  font-size: 13px;
  color: #cfd6e3;
  transition: all .15s;
}
.lpc-prequal .lpc-q label:hover {
  border-color: rgba(0,180,255,0.5);
  color: #f8fafc;
}
.lpc-prequal .lpc-q input[type=radio] {
  accent-color: #00b4ff;
  cursor: pointer;
}
.lpc-prequal .lpc-q input[type=radio]:checked + span {
  color: #00b4ff;
  font-weight: 700;
}
.lpc-prequal .lpc-q-scope select {
  display: block;
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f8fafc;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.lpc-prequal .lpc-cta {
  display: inline-block;
  background: linear-gradient(135deg,#00b4ff,#0090d4);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter .15s;
  box-shadow: 0 4px 14px rgba(0,180,255,0.35);
}
.lpc-prequal .lpc-cta:hover { filter: brightness(1.1); }
.lpc-disclosure-form {
  font-size: 11px;
  color: var(--ink-faint);
  margin: 12px 0 0;
  text-align: left;
}

/* ===== Prequal result states ===== */
.lpc-result {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid;
}
.lpc-result-qualified {
  background: rgba(0,180,255,0.06);
  border-color: rgba(0,180,255,0.3);
}
.lpc-result-qualified .lpc-result-icon {
  display: inline-flex;
  width: 32px; height: 32px;
  background: #00b4ff; color: #fff;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}
.lpc-result-diy, .lpc-result-research {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
}
.lpc-result-title {
  font-size: 17px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 6px;
}
.lpc-result-sub {
  font-size: 14px;
  color: #cfd6e3;
  line-height: 1.55;
  margin-bottom: 14px;
}
.lpc-result-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lpc-result-links li {
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lpc-result-links li:first-child { border-top: none; }
.lpc-result-links a {
  color: #00b4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.lpc-result-links a:hover { color: #4dc9ff; text-decoration: underline; }
.lpc-contact-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.lpc-cta-secondary {
  background: rgba(255,255,255,0.06) !important;
  color: #f8fafc !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: none !important;
}

/* ============ NEWSLETTER CAPTURE ============ */
.un-newsletter-cta {
  background: linear-gradient(135deg, rgba(0,180,255,0.10) 0%, rgba(0,144,212,0.06) 100%);
  border: 1px solid rgba(0,180,255,0.28);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: start;
}
.un-newsletter-cta .un-nl-icon {
  grid-row: 1 / 3;
  font-size: 32px;
  line-height: 1;
}
.un-newsletter-cta .un-nl-body { grid-column: 2; }
.un-newsletter-cta .un-nl-title {
  color: #f8fafc;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.un-newsletter-cta .un-nl-sub {
  color: #cfd6e3;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.un-newsletter-cta .un-nl-form {
  grid-column: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.un-newsletter-cta .un-nl-form input[type=email] {
  flex: 1 1 240px;
  min-width: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f8fafc;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}
.un-newsletter-cta .un-nl-form input[type=email]:focus {
  outline: none;
  border-color: #00b4ff;
  background: rgba(255,255,255,0.12);
}
.un-newsletter-cta .un-nl-form input[type=email]::placeholder {
  color: rgba(207,214,227,0.55);
}
.un-newsletter-cta .un-nl-form button {
  background: linear-gradient(135deg, #00b4ff, #0090d4);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: filter .15s;
  box-shadow: 0 4px 14px rgba(0,180,255,0.4);
}
.un-newsletter-cta .un-nl-form button:hover { filter: brightness(1.1); }
.un-newsletter-cta .un-nl-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.un-newsletter-cta .un-nl-success {
  grid-column: 2;
  background: rgba(0,180,255,0.08);
  border: 1px solid rgba(0,180,255,0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.55;
}
.un-newsletter-cta .un-nl-success strong { color: #00b4ff; }
.un-newsletter-cta .un-nl-error {
  grid-column: 2;
  color: #ff7a7a;
  font-size: 13px;
  margin-top: 8px;
}
@media (max-width: 560px) {
  .un-newsletter-cta {
    grid-template-columns: 1fr;
    padding: 18px 18px;
  }
  .un-newsletter-cta .un-nl-icon { grid-row: 1; }
  .un-newsletter-cta .un-nl-body { grid-column: 1; }
  .un-newsletter-cta .un-nl-form { grid-column: 1; }
  .un-newsletter-cta .un-nl-form input[type=email],
  .un-newsletter-cta .un-nl-form button { flex: 1 1 100%; }
}

/* ============ QUIZ CTA ============ */
.cp-quiz-cta {
  background: var(--ink-deep);
  background-image: radial-gradient(ellipse at top right, rgba(255,61,139,0.18), transparent 60%),
                    radial-gradient(ellipse at bottom left, rgba(0,180,255,0.12), transparent 60%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 44px 0 20px;
  text-align: center;
  box-shadow: var(--shadow-deep);
}
.cp-quiz-cta h3 {
  font-size: 26px; margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.cp-quiz-cta p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}
.cp-cta-btn {
  display: inline-block;
  background: var(--grad-hot);
  color: #fff;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255,61,139,0.40);
  transition: all 0.2s;
}
.cp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,61,139,0.50); }

/* ============ STICKY FLOATING BUY BAR ============
   Pinned to the bottom of the viewport. Shown only after the top buy
   strip scrolls out and before the bottom buy block scrolls in. */
.cp-floating-buy {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(10, 21, 48, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  z-index: 60;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cp-floating-buy.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cp-fb-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.cp-fb-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.cp-fb-price {
  font-size: 12px;
  font-weight: 800;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cp-fb-cards {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.cp-fb-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.15s;
}
.cp-fb-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--accent);
}
.cp-fb-chip-logo {
  height: 20px;
  width: auto;
  max-width: 70px;
  display: block;
}
.cp-fb-chip-fallback { font-size: 12px; }

/* Mobile — hide merchant names, show just logo chips */
@media (max-width: 640px) {
  .cp-floating-buy { left: 8px; right: 8px; bottom: 8px; padding: 10px 12px; gap: 10px; }
  .cp-fb-info { gap: 0; }
  .cp-fb-title { font-size: 11px; }
  .cp-fb-price { font-size: 11px; }
  .cp-fb-chip-fallback { display: none; }
  .cp-fb-chip { padding: 6px 10px; }
  .cp-fb-chip-logo { height: 18px; max-width: 60px; }
}

/* ============ FOOTER ============ */
.cp-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  color: var(--ink-faint);
  font-size: 13px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 80px;
}
.cp-footer a { color: var(--ink-faint); text-decoration: none; }
.cp-footer a:hover { color: var(--accent); }

/* ============ MOBILE ============ */
@media (max-width: 700px) {
  body { font-size: 16px; }
  .cp-main { padding: 20px 16px 60px; }
  .cp-header { padding: 9px 14px; gap: 8px; }
  .cp-nav { gap: 10px; justify-content: flex-end; }
  .cp-nav a:not(.cp-quiz-link) { display: none; }
  .cp-nav .cp-quiz-link { padding: 7px 12px; font-size: 11px; }
  .cp-article-head h1 { font-size: clamp(28px, 9vw, 38px); }
  .cp-subtitle { font-size: 15px; }
  .cp-tldr { font-size: 14px; padding: 14px 16px; }
  .cp-body { font-size: 16px; line-height: 1.6; }
  .cp-body h2 { font-size: 24px; margin: 36px 0 12px; }
  .cp-body h3 { font-size: 19px; margin: 24px 0 10px; }
  .cp-body blockquote { padding: 14px 16px; font-size: 14px; }
  .cp-spec-strip { grid-template-columns: 1fr 1fr; }
  .cp-spec { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 14px; }
  .cp-spec-val { font-size: 16px; }
  .cp-buy { padding: 20px; }
  .cp-quiz-cta { padding: 24px 20px; }
  .cp-quiz-cta h3 { font-size: 22px; }
  .lpc-card { flex-direction: column; align-items: stretch; }
  .lpc-cta { text-align: center; }
}

/* ============================================================
   ICON SYSTEM — unified aurora-gradient Lucide icons site-wide.
   All variants now use the same stroke: linear-gradient(cyan→purple→pink)
   referenced via stroke="url(#auroraStroke)" — matches the quiz preference
   chip aesthetic (the brand's primary icon style).
     .un-ic-gradient → primary/hero emphasis (glassy white tile, gradient stroke)
     .un-ic-soft     → secondary/list use (subtle glass tile, gradient stroke)
     .un-ic-dark     → high-contrast accent (dark glass tile, gradient stroke)
   The .un-ic-glass variant matches the quiz pchip exactly.
   ============================================================ */
.un-ic-gradient,
.un-ic-soft,
.un-ic-dark,
.un-ic-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  position: relative;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
}
.un-ic-gradient svg,
.un-ic-soft svg,
.un-ic-dark svg,
.un-ic-glass svg {
  width: 28px; height: 28px;
  stroke: url(#auroraStroke);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}
/* Gradient (hero/primary) — vibrant glassy tile, bright aurora glow */
.un-ic-gradient {
  background: linear-gradient(135deg, rgba(0,180,255,.20), rgba(0,180,255,.20));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 8px 24px rgba(248,250,252,0.18);
}
/* Soft (secondary/list) — subtle glass tile */
.un-ic-soft {
  background: linear-gradient(135deg, rgba(0,180,255,.10), rgba(0,180,255,.10));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
a:hover > .un-ic-soft,
*:hover > .un-ic-soft {
  background: linear-gradient(135deg, rgba(0,180,255,.18), rgba(0,180,255,.18));
  border-color: rgba(255,255,255,0.28);
}
/* Dark (accent) — denser tint for emphasis on a dark block */
.un-ic-dark {
  background: linear-gradient(135deg, rgba(0,180,255,.30), rgba(0,180,255,.30));
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 6px 18px rgba(248,250,252,0.30);
}
/* Glass — matches the quiz pchip exactly */
.un-ic-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Size variants */
.un-ic-sm { width: 44px; height: 44px; border-radius: 12px; }
.un-ic-sm svg { width: 22px; height: 22px; }
.un-ic-xs { width: 32px; height: 32px; border-radius: 9px; }
.un-ic-xs svg { width: 16px; height: 16px; stroke-width: 2.2; }

/* Tiny inline icon (no tile) — for eyebrow + chip rows.
   Uses aurora stroke for brand consistency. */
.un-ic-inline svg {
  display: inline-block;
  width: 14px; height: 14px;
  stroke: url(#auroraStroke);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -2px;
}

/* When used on a LIGHT background (new homepage stage card), the icon tiles
   need slightly more opacity so the stroke + glow remain visible. */
.stage .un-ic-gradient,
body:not(.cp-body):not([data-theme="dark"]) .un-ic-gradient {
  background: linear-gradient(135deg, rgba(0,180,255,.14), rgba(0,180,255,.14));
  border-color: rgba(248,250,252,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 10px 28px rgba(248,250,252,0.18);
}
.stage .un-ic-soft,
body:not(.cp-body):not([data-theme="dark"]) .un-ic-soft {
  background: linear-gradient(135deg, rgba(0,180,255,.08), rgba(0,180,255,.08));
  border-color: rgba(248,250,252,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════════════════════════════════
   Mobile-native features (PWA, safe-area, geo button, share button)
   Added 2026-05-15 as part of the Tier-1 mobile lift.
   ════════════════════════════════════════════════════════════════════ */

/* Respect iOS home indicator / Android gesture nav on sticky bottom bars */
.sticky-cta, .bs-actions, .cp-quiz-cta {
  padding-bottom: max(16px, env(safe-area-inset-bottom, 16px));
}
@supports (padding: max(0px)) {
  body {
    padding-left:  env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }
}

/* PWA standalone mode — when launched from home screen, hide the
   "Take quiz →" promotion in the header (it's the home screen already)
   and add top padding to clear the iOS status bar overlay. */
@media all and (display-mode: standalone) {
  body { padding-top: env(safe-area-inset-top, 0); }
  .cp-quiz-link { display: none !important; }
}

/* "Use my location" button — sits next to the ZIP input */
.zip-loc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 44px; padding: 0 14px; margin-left: 6px;
  background: rgba(0,180,255,0.10);
  border: 1.5px solid rgba(248,250,252,0.22);
  border-radius: 10px;
  color: #0a1530; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all 0.15s ease;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.zip-loc-btn:hover  { background: rgba(0,180,255,0.18); }
.zip-loc-btn:active { transform: scale(0.97); }
.zip-loc-btn:disabled { opacity: 0.7; cursor: wait; }
.zip-loc-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.loc-spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(10, 21, 48, 0.18);
  border-top-color: #0a1530;
  border-radius: 50%;
  animation: loc-spin 0.7s linear infinite;
}
@keyframes loc-spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
  /* On phones, drop the button below the ZIP row to keep tap targets generous */
  .zip-loc-btn { margin-left: 0; margin-top: 8px; width: 100%; }
}

/* Share button — modeled on the existing bs-action-btn family */
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; min-height: 44px;
  background: linear-gradient(135deg, #00b4ff, #f8fafc);
  color: #fff; border: none; border-radius: 10px;
  font-family: inherit; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(248,250,252,0.30);
  -webkit-tap-highlight-color: transparent;
}
.share-btn:hover  { box-shadow: 0 6px 20px rgba(248,250,252,0.40); }
.share-btn:active { transform: scale(0.97); }
.share-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Horizontal-scroll wrapper for wide tables on mobile.
   Added 2026-05-15 — prevents tables from hijacking page-scroll on phones. */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin: 16px 0;
  /* Subtle right-edge shadow hints there's more to scroll */
  background:
    linear-gradient(to right, transparent 95%, rgba(10,21,48,0.06)) right / 24px 100% no-repeat;
}
.table-scroll > table {
  margin: 0;
  /* Table can be wider than its container; the scroll wrapper handles it */
  min-width: 100%;
}


/* ════════════════════════════════════════════════════════════════════
   RIVIAN OVERHAUL — ships 2026-05-16
   ────────────────────────────────────────────────────────────────────
   Brings every page that loads content-pages.css up to the hero's level.
   Last-rule-wins: these overrides replace the old aurora/gradient styling
   without rewriting the 1,575 lines above. Targets:

   - Body: solid near-black, kill the aurora blobs + radial bg
   - Display headlines: light weight (300-500), tight tracking, lots of air
   - Eyebrows: 0.22em letterspacing, muted color
   - Cards: dark surface + hairline border + NO gradient backgrounds
   - Badges/pills: solid celadon, no rainbow gradients
   - CTAs: solid celadon button, dark text, gentle hover
   - Tables: dark surface, hairline rows, more vertical padding
   - Links: solid celadon, no gradient text
   ════════════════════════════════════════════════════════════════════ */

body {
  background: #0A0B0D !important;
  color: #f8fafc !important;
  font-size: 16px;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before, body::after { display: none !important; }   /* kill aurora blobs */

/* Display headlines — Rivian-style light weight + tight tracking */
.cp-article-head h1,
.cp-body h1,
h1 {
  font-weight: 300 !important;
  letter-spacing: -0.03em !important;
  font-size: clamp(34px, 5vw, 56px) !important;
  line-height: 1.05 !important;
  color: #f8fafc !important;
  max-width: 22ch;
}
.cp-body h2,
h2 {
  font-weight: 500 !important;
  letter-spacing: -0.022em !important;
  font-size: clamp(22px, 2.6vw, 32px) !important;
  line-height: 1.15 !important;
  color: #f8fafc !important;
  margin-top: clamp(40px, 5vw, 64px) !important;
  margin-bottom: 14px !important;
}
.cp-body h3,
h3 {
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  font-size: clamp(17px, 1.6vw, 20px) !important;
  color: #f8fafc !important;
  margin-top: 28px !important;
  margin-bottom: 10px !important;
}

/* Subtitle / lede */
.cp-subtitle,
.cp-article-head .cp-subtitle,
.lede,
.section-sub,
.qstep-sub {
  font-weight: 400 !important;
  color: rgba(248,250,252,0.72) !important;
  font-size: clamp(15px, 1.6vw, 18px) !important;
  line-height: 1.55 !important;
  max-width: 62ch;
}

/* Eyebrow tags — small uppercase muted */
.cp-eyebrow,
.eyebrow,
.section-eyebrow,
.qstep-eyebrow,
.hero-eyebrow,
.mw-control-label,
.mw-section-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(248,250,252,0.45) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin-bottom: 14px !important;
}

/* Body copy — warm cream, 62ch max for readability */
.cp-body p,
.cp-body li,
main p,
main li {
  color: rgba(248,250,252,0.82);
  font-size: 16px;
  line-height: 1.62;
}
.cp-body p { max-width: 68ch; }
.cp-body strong, main strong { color: #f8fafc; font-weight: 700; }

/* Article container — Rivian-grade airy margins */
.cp-main, main {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 40px) clamp(72px, 10vw, 120px) !important;
}
.cp-article-head { margin-bottom: clamp(40px, 6vw, 72px); }

/* Header bar — single hairline border, no shadow */
.cp-header, header.hd, header.mw-topbar {
  background: rgba(10,11,13,0.92) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: none !important;
}

/* Logo wordmark — solid celadon, no gradient text */
.cp-logo,
.mw-logo,
.logo {
  color: #f8fafc !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
}
.cp-logo span,
.mw-logo span,
.logo span {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #00b4ff !important;
}

/* Cards / panels — single hairline, no shadows or gradient bgs */
.cp-card, .cp-callout, .pq-lede, .mw-section, .mw-control,
.cp-tldr, .net-context-strip {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: none !important;
  border-radius: 14px !important;
}
.cp-callout strong, .pq-lede strong, .cp-tldr strong { color: #f8fafc; }

/* Badges / pills — solid celadon, no gradients */
.pq-badge-4k.yes, .pq-rank-badge {
  background: #00b4ff !important;
  color: #0A0B0D !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
}
.pq-badge-4k.partial {
  background: rgba(0,180,255,0.14) !important;
  color: #00b4ff !important;
  border: 1px solid rgba(0,180,255,0.35) !important;
}
.pq-badge-4k.no {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(248,250,252,0.55) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

/* Primary CTA — solid celadon, dark ink, no shadow */
.cp-cta-btn, .mw-zip-go, .cta {
  background: #00b4ff !important;
  color: #0A0B0D !important;
  border: 0 !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
  padding: 14px 24px !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  transition: background .25s cubic-bezier(.22,.61,.36,1), transform .12s;
}
.cp-cta-btn:hover, .mw-zip-go:hover, .cta:hover {
  background: #4dc9ff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,180,255,0.18) !important;
}

/* Links inside body copy — solid celadon underline */
.cp-body a,
main a:not(.cp-cta-btn):not(.cp-logo):not(.cp-nav a):not(.cta):not(.cp-byline-link):not(.cp-back-link) {
  color: #00b4ff;
  text-decoration: underline;
  text-decoration-color: rgba(0,180,255,0.40);
  text-underline-offset: 3px;
}
.cp-body a:hover {
  color: #4dc9ff;
  text-decoration-color: #4dc9ff;
}

/* Back-to-configurator links */
.cp-back-link {
  display: inline-block;
  margin: 12px 0;
  font-size: 13px;
  color: rgba(248,250,252,0.55);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.14);
  text-underline-offset: 4px;
}
.cp-back-link:hover { color: #00b4ff; text-decoration-color: #00b4ff; }

/* Tables — dark surface, hairline rows, more padding */
.cp-body table, .pq-table, table {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 14px !important;
  overflow: hidden;
  width: 100%;
}
.cp-body th, .pq-table th, table th {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(248,250,252,0.55) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.cp-body td, .pq-table td, table td {
  padding: 16px !important;
  font-size: 14px !important;
  color: rgba(248,250,252,0.82) !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.cp-body tr:last-child td, table tr:last-child td { border-bottom: 0 !important; }

/* Market-watch — quiet gradient bgs out, hairline borders in */
.pq-table tr.pq-tier-top td,
.pq-table tr.pq-fubo-top {
  background: rgba(0,180,255,0.06) !important;
  color: #f8fafc !important;
}
.pq-table tr.pq-tier-head td {
  background: rgba(255,255,255,0.02) !important;
  color: rgba(248,250,252,0.45) !important;
}

/* Quiz CTA card (bottom of articles) */
.cp-quiz-cta {
  background: rgba(0,180,255,0.06) !important;
  border: 1px solid rgba(0,180,255,0.25) !important;
  box-shadow: none !important;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 36px) !important;
}
.cp-quiz-cta h3 {
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  color: #f8fafc !important;
}

/* Nav links */
.cp-nav a {
  font-weight: 500 !important;
  color: rgba(248,250,252,0.72) !important;
}
.cp-nav a:hover { color: #f8fafc !important; }
.cp-quiz-link {
  background: #00b4ff !important;
  color: #0A0B0D !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 7px 14px !important;
}

/* Footer */
footer, .cp-footer {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  background: transparent !important;
  color: rgba(248,250,252,0.45) !important;
  padding: 32px clamp(20px, 5vw, 40px) !important;
}

/* Section containers — match the strength of nested verdict cards.
   The "Streaming Live TV" table section + similar big content panels
   should sit in a celadon-edged card the same way the bottom verdict
   cards do, so visual hierarchy is consistent top-to-bottom. */
.mw-section,
.pq-table-wrap,
.cp-callout,
.pq-lede {
  background: rgba(0,180,255,0.025) !important;
  border: 1px solid rgba(0,180,255,0.22) !important;
  border-radius: 16px !important;
  padding: clamp(20px, 3vw, 32px) !important;
  margin-bottom: clamp(20px, 3vw, 32px) !important;
}
.mw-section .mw-section,
.mw-section .pq-table-wrap {
  /* Nested verdict cards inside the parent section keep their own
     celadon-tinted look — slightly stronger so they read as the
     emphasis cards they're meant to be. */
  background: rgba(0,180,255,0.06) !important;
  border-color: rgba(0,180,255,0.30) !important;
}

/* Quick caveats / inline lede callouts get a left-border accent
   instead of a full card — distinct from the section containers. */
.pq-quick-caveats,
.cp-tldr,
.cp-callout-left {
  background: transparent !important;
  border: 0 !important;
  border-left: 3px solid #00b4ff !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 14px 18px !important;
  margin: 18px 0 !important;
}

/* ============================================================
   GUIDE + NEWS ARTICLE CONTAINERS — added 2026-06-04
   Phases 36/37/42 shipped new articles using .guide-article /
   .news-article / .article-body / .article-header but the
   container CSS was never added, so body text rendered flush
   to viewport edge. This block fixes all of them at once.
   ============================================================ */
.guide-article,
.news-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 22px 80px;
  position: relative;
  z-index: 1;
}
.guide-article .article-header,
.news-article .article-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.guide-article .article-header h1,
.news-article .article-header h1 {
  font-size: clamp(30px, 5.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  font-weight: 900;
  color: #fff;
}
.guide-article .subtitle,
.news-article .subtitle {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft, #9aa3b2);
  line-height: 1.5;
  margin: 14px 0 0;
  font-weight: 400;
}
.guide-article .byline,
.news-article .byline {
  font-size: 13px;
  color: var(--ink-faint, #6b7280);
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.guide-article .byline strong,
.news-article .byline strong {
  color: #fff;
}
.guide-article .article-body,
.news-article .article-body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(248,250,252,0.92);
}
.guide-article .article-body p,
.news-article .article-body p {
  margin: 0 0 20px;
}
.guide-article .article-body h2,
.news-article .article-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 44px 0 16px;
  font-weight: 800;
  color: #fff;
}
.guide-article .article-body h3,
.news-article .article-body h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  font-weight: 800;
  color: #fff;
}
.guide-article .article-body ul,
.guide-article .article-body ol,
.news-article .article-body ul,
.news-article .article-body ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.guide-article .article-body li,
.news-article .article-body li {
  margin: 0 0 8px;
}
.guide-article .article-body a,
.news-article .article-body a {
  color: var(--accent, #00b4ff);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,180,255,0.35);
  transition: border-color 0.15s;
}
.guide-article .article-body a:hover,
.news-article .article-body a:hover {
  border-bottom-color: var(--accent, #00b4ff);
}
.guide-article .article-body strong,
.news-article .article-body strong {
  color: #fff;
  font-weight: 700;
}
.guide-article .article-body blockquote,
.news-article .article-body blockquote {
  border-left: 3px solid var(--accent, #00b4ff);
  padding: 4px 0 4px 18px;
  margin: 24px 0;
  color: rgba(248,250,252,0.85);
  font-style: italic;
}
@media (max-width: 560px) {
  .guide-article,
  .news-article {
    padding: 28px 16px 64px;
  }
  .guide-article .article-body,
  .news-article .article-body {
    font-size: 16px;
  }
}
