  :root {
    /* Brand — lifted from Secret Desires design system */
    --azalea-100: #fcdee2;
    --azalea-200: #f7a7b5;
    --azalea-300: #f46787;
    --azalea-400: #d62a5e;
    --azalea-500: #9b1b41;
    --azalea-600: #5f0026;
    --folly: #f50057;

    --bg: #131313;
    --bg-dim: #0b0b0b;
    --bg-deeper: #080808;
    --surface: #1c1c1c;
    --surface-2: #252525;
    --surface-3: #2c2c2c;
    --border: #2a2a2a;
    --border-strong: #3c3c3c;

    --fg-1: #eaeaea;
    --fg-2: #c2c2c2;
    --fg-3: #9b9b9b;
    --fg-4: #777777;
    --fg-5: #545454;

    /* Editorial accents unique to this site */
    --paper: #f3ece2;      /* cream masthead strip — editorial signal */
    --paper-ink: #1a1613;
    --rule: #d9cfc0;
    --highlight: #f9e27d;  /* annotator yellow — used behind pullquote words */

    --grad-brand: linear-gradient(180deg, #f50057 0%, #d62a5e 100%);
    --grad-bloom: radial-gradient(60% 70% at 70% 20%, rgba(214,42,94,.22) 0%, rgba(0,0,0,0) 70%);

    --font-sans: 'Poppins', system-ui, sans-serif;
    --font-display: 'Roboto Flex', 'Poppins', sans-serif;
    --font-mono: 'Roboto Mono', ui-monospace, monospace;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--fg-1);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }

  /* =========================================================
     SITE HEADER — Secret Desires brand bar
     ========================================================= */
  .sdnav {
    position: sticky; top: 0; z-index: 40;
    background: rgba(11,11,11,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .sdnav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 28px;
  }
  .sdnav .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .sdnav .logo img { height: 22px; display: block; }
  .sdnav .links {
    display: flex; gap: 22px;
    font-size: 13.5px; color: var(--fg-2);
    white-space: nowrap;
  }
  .sdnav .links a { color: var(--fg-2); text-decoration: none; transition: color 200ms ease; }
  .sdnav .links a:hover, .sdnav .links a.active { color: var(--fg-1); }
  .sdnav .actions { display: flex; align-items: center; gap: 14px; }
  .sdnav .signin { color: var(--fg-1); text-decoration: none; font-size: 14px; }
  .sdnav .cta-sm {
    background: var(--azalea-400); color: #fff; text-decoration: none;
    padding: 9px 18px; border-radius: 999px;
    font-size: 13px; font-weight: 600;
    transition: background 200ms ease;
  }
  .sdnav .cta-sm:hover { background: #e0356a; }

  @media (max-width: 840px) {
    .sdnav .links { display: none; }
  }

  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    padding: 64px 28px 56px;
    background:
      radial-gradient(80% 90% at 15% 0%, rgba(214,42,94,.10) 0%, rgba(0,0,0,0) 55%),
      radial-gradient(60% 70% at 95% 100%, rgba(245,0,87,.09) 0%, rgba(0,0,0,0) 60%),
      var(--bg);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 100% 32px;
    pointer-events: none;
  }
  .container { max-width: 1280px; margin: 0 auto; position: relative; }
  .crumb {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--fg-4);
    display: flex; gap: 10px; align-items: center;
    margin-bottom: 24px;
  }
  .crumb .dot { width: 4px; height: 4px; background: var(--azalea-400); border-radius: 50%; }
  .crumb .section { color: var(--azalea-300); }

  .hero-grid {
    display: grid; grid-template-columns: 1.35fr 1fr;
    gap: 72px; align-items: start;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 26px;
    text-wrap: balance;
    font-variation-settings: "wdth" 108, "opsz" 144;
  }
  .hero h1 em {
    font-style: italic; font-weight: 500;
    color: var(--azalea-300);
    font-family: 'Poppins', serif;
  }
  .hero .dek {
    font-size: 20px; line-height: 1.5; color: var(--fg-2);
    max-width: 600px; margin: 0 0 36px;
    font-weight: 300;
  }
  .hero .dek strong { color: var(--fg-1); font-weight: 500; }
  .byline {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); margin-bottom: 28px;
    max-width: 600px;
  }
  .byline .av {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #f7a7b5, #d62a5e);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800;
    font-size: 15px; color: #0b0b0b; letter-spacing: -0.02em;
  }
  .byline .meta { font-size: 13px; color: var(--fg-3); line-height: 1.4; }
  .byline .meta strong { color: var(--fg-1); font-weight: 500; }
  .byline .meta .sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-4); margin-top: 2px; }

  .hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--azalea-400); color: #fff;
    border: none; border-radius: 999px;
    padding: 16px 28px; font-family: var(--font-sans); font-weight: 600; font-size: 15px;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 24px rgba(214,42,94,.35), inset 0 1px 0 rgba(255,255,255,.15);
    transition: transform 150ms ease, background 200ms ease, box-shadow 200ms ease;
  }
  .btn-primary:hover { background: #e0356a; transform: translateY(-1px); box-shadow: 0 10px 32px rgba(214,42,94,.5), inset 0 1px 0 rgba(255,255,255,.2); }
  .btn-primary:active { transform: translateY(0) scale(.98); }
  .btn-primary .arrow { transition: transform 200ms ease; }
  .btn-primary:hover .arrow { transform: translateX(3px); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--fg-1);
    border: 1px solid var(--border-strong);
    border-radius: 999px; padding: 15px 22px;
    font-weight: 500; font-size: 14px; cursor: pointer; text-decoration: none;
    transition: border-color 200ms ease, color 200ms ease;
  }
  .btn-ghost:hover { border-color: var(--azalea-400); color: var(--azalea-300); }

  .hero-side {
    position: sticky; top: 24px;
  }

  /* Score card — the hero centerpiece */
  .scorecard {
    background:
      radial-gradient(80% 60% at 50% 0%, rgba(214,42,94,.15) 0%, rgba(0,0,0,0) 70%),
      var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    box-shadow:
      0 30px 60px rgba(0,0,0,0.45),
      inset 0 1px 0 rgba(255,255,255,.04);
  }
  .scorecard::after {
    content: ""; position: absolute; inset: 0; border-radius: 18px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 30%);
  }
  .scorecard .lbl {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--fg-4);
  }
  .scorecard .big {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 120px;
    line-height: .95;
    letter-spacing: -0.05em;
    margin: 6px 0 0;
    color: var(--fg-1);
    font-variation-settings: "wdth" 90, "opsz" 144;
    display: flex; align-items: baseline; gap: 6px;
  }
  .scorecard .big .outof {
    font-size: 36px; color: var(--fg-4); font-weight: 500;
    font-variation-settings: "wdth" 100;
    letter-spacing: -0.02em;
  }
  .scorecard .big .slash { color: var(--fg-4); font-weight: 400; font-size: 36px; margin: 0 2px; }
  .scorecard .hearts {
    display: flex; gap: 4px; margin-top: 12px;
  }
  .scorecard .hearts svg { width: 24px; height: 24px; }
  .scorecard .meta {
    margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border);
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    font-size: 12px; color: var(--fg-3);
  }
  .scorecard .meta .k { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px; color: var(--fg-4); margin-bottom: 3px; }
  .scorecard .meta .v { color: var(--fg-1); font-weight: 500; font-size: 13px; }

  .verdict-pill {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 22px; padding: 10px 14px;
    background: rgba(214,42,94,.12);
    border: 1px solid rgba(214,42,94,.35);
    border-radius: 10px;
    font-size: 13px; color: var(--fg-1);
  }
  .verdict-pill strong { color: var(--azalea-300); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

  .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
  .tag {
    font-size: 11px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
    padding: 5px 10px; border-radius: 6px;
    background: var(--surface-2); color: var(--fg-3);
    border: 1px solid var(--border);
  }
  .tag.hi { color: var(--azalea-300); border-color: rgba(214,42,94,.3); background: rgba(214,42,94,.06); }

  /* =========================================================
     SECTION SYSTEM
     ========================================================= */
  section { padding: 90px 28px; border-top: 1px solid var(--border); position: relative; }
  .section-head {
    display: grid; grid-template-columns: 220px 1fr; gap: 40px;
    margin-bottom: 48px; align-items: start;
  }
  .section-kicker {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--fg-4);
    padding-top: 10px; border-top: 2px solid var(--azalea-400);
    display: inline-block;
  }
  .section-kicker .num { color: var(--azalea-300); margin-right: 8px; }
  .section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px); font-weight: 800;
    letter-spacing: -0.02em; line-height: 1.05;
    margin: 0 0 12px;
    text-wrap: balance;
    font-variation-settings: "wdth" 106, "opsz" 144;
  }
  .section-head .intro {
    color: var(--fg-2); font-size: 17px; line-height: 1.55;
    max-width: 720px; font-weight: 300;
  }

  /* =========================================================
     QUICK VERDICT — category score breakdown
     ========================================================= */
  .verdict { background: var(--bg); }
  .verdict-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--surface); }
  .vcat {
    padding: 32px 28px; position: relative;
  }
  .vcat + .vcat { border-left: 1px solid var(--border); }
  .vcat .vlbl {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--fg-4); margin-bottom: 12px;
  }
  .vcat .vnum {
    font-family: var(--font-display); font-weight: 800;
    font-size: 56px; line-height: 1; letter-spacing: -0.04em;
    color: var(--fg-1);
    display: flex; align-items: baseline; gap: 4px;
    font-variation-settings: "wdth" 92;
  }
  .vcat .vnum .of { color: var(--fg-4); font-size: 18px; font-weight: 500; }
  .vbar {
    height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 16px 0 14px;
  }
  .vbar span { display: block; height: 100%; background: var(--grad-brand); border-radius: 2px; }
  .vcat p { margin: 0; color: var(--fg-2); font-size: 14px; line-height: 1.5; }

  /* =========================================================
     TESTIMONIALS — editorial card grid with a pull-quote hero
     ========================================================= */
  .testimonials { background: var(--bg-dim); }
  .pullquote {
    padding: 48px 56px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background:
      radial-gradient(80% 100% at 100% 0%, rgba(214,42,94,.09) 0%, transparent 60%),
      var(--surface);
    margin-bottom: 36px;
    position: relative;
  }
  .pullquote .qmark {
    font-family: var(--font-display); font-weight: 800;
    font-size: 180px; line-height: 0.7;
    color: var(--azalea-400); opacity: .18;
    position: absolute; top: 28px; left: 32px;
    font-variation-settings: "wdth" 90;
  }
  .pullquote blockquote {
    margin: 0 0 28px; padding-left: 0;
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.2; letter-spacing: -0.015em;
    color: var(--fg-1);
    font-variation-settings: "wdth" 105, "opsz" 144;
    text-wrap: balance; position: relative; z-index: 1;
  }
  .pullquote blockquote mark {
    background: linear-gradient(180deg, transparent 60%, rgba(214,42,94,.35) 60%);
    color: inherit; padding: 0 2px;
  }
  .pullquote .attr {
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; color: var(--fg-3);
  }
  .pullquote .attr .av {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #7a3d52, #2a1820);
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--azalea-200);
  }
  .pullquote .attr .name { color: var(--fg-1); font-weight: 500; }
  .pullquote .attr .sep { color: var(--fg-5); }

  .t-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .t-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 24px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color 250ms ease, transform 250ms ease;
  }
  .t-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
  .t-card .head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 14px; border-bottom: 1px dashed var(--border);
  }
  .t-card .who { display: flex; align-items: center; gap: 10px; }
  .t-card .av {
    width: 34px; height: 34px; border-radius: 50%;
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    color: #1a0b12; display: flex; align-items: center; justify-content: center;
  }
  .t-card .handle { font-size: 14px; font-weight: 500; color: var(--fg-1); font-family: var(--font-mono); }
  .t-card .stars { display: flex; gap: 2px; }
  .t-card .stars svg { width: 14px; height: 14px; }
  .t-card .ctx {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--fg-4);
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .t-card .ctx span:not(:last-child)::after { content: "·"; margin-left: 12px; color: var(--fg-5); }
  .t-card p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.55; }
  .t-card p.tight { font-size: 14px; }
  .t-card.short { background: linear-gradient(180deg, rgba(214,42,94,.06), rgba(214,42,94,0) 70%), var(--surface); }
  .t-card.short p { font-family: var(--font-display); font-weight: 500; font-size: 19px; line-height: 1.35; color: var(--fg-1); font-variation-settings: "wdth" 104; }

  /* Mid CTA */
  .midcta {
    margin-top: 48px;
    padding: 36px 44px;
    border-radius: 16px;
    background:
      linear-gradient(95deg, rgba(245,0,87,.10) 0%, rgba(214,42,94,.05) 100%),
      var(--surface);
    border: 1px solid var(--border-strong);
    display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  }
  .midcta h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 26px; letter-spacing: -0.015em; margin: 0 0 6px;
    font-variation-settings: "wdth" 104;
  }
  .midcta p { margin: 0; color: var(--fg-3); font-size: 14px; }

  /* =========================================================
     OFFICIAL REVIEWS (from around the web)
     ========================================================= */
  .official { background: var(--bg); }
  .src-group { margin-bottom: 56px; }
  .src-group:last-child { margin-bottom: 0; }
  .src-group-head {
    display: flex; align-items: baseline; gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border);
  }
  .src-group-head h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.01em; margin: 0;
    font-variation-settings: "wdth" 104;
  }
  .src-group-head .count {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
    color: var(--fg-4); text-transform: uppercase;
  }
  .src-group-head .icon {
    width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  }

  /* YouTube */
  .yt-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .yt-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: border-color 200ms ease, transform 200ms ease;
  }
  .yt-card:hover { border-color: var(--azalea-500); transform: translateY(-2px); }
  .yt-card.primary { grid-column: span 1; grid-row: span 2; }
  .yt-card .thumb {
    aspect-ratio: 16/9; background: var(--bg-dim); position: relative; overflow: hidden;
  }
  .yt-card.primary .thumb { aspect-ratio: auto; flex: 1; min-height: 280px; }
  .yt-card .thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity 250ms ease, transform 400ms ease; }
  .yt-card:hover .thumb img { opacity: 1; transform: scale(1.03); }
  .yt-card .thumb::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55));
  }
  .yt-play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 54px; height: 54px; border-radius: 50%;
    background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    transition: background 200ms ease, transform 200ms ease;
  }
  .yt-card:hover .yt-play { background: var(--azalea-400); transform: translate(-50%,-50%) scale(1.08); }
  .yt-play svg { width: 20px; height: 20px; margin-left: 3px; }
  .yt-card .body { padding: 18px 20px 20px; }
  .yt-card .chan {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--fg-3); margin-bottom: 10px;
  }
  .yt-card .chan .ytgl {
    width: 18px; height: 12px; background: #ff0033; border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
  }
  .yt-card .chan .ytgl svg { width: 8px; height: 8px; }
  .yt-card h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 17px; line-height: 1.3; letter-spacing: -0.01em;
    margin: 0 0 10px; color: var(--fg-1);
  }
  .yt-card.primary h4 { font-size: 22px; }
  .yt-card p { margin: 0; color: var(--fg-3); font-size: 13px; line-height: 1.5; }
  .yt-card .foot {
    margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--fg-4);
    display: flex; justify-content: space-between; align-items: center;
  }
  .yt-card .foot .out { color: var(--azalea-300); }

  /* Website */
  .web-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .web-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 26px 28px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color 200ms ease, background 200ms ease;
    position: relative;
  }
  .web-card:hover { border-color: var(--azalea-500); background: #1f1a1c; }
  .web-card .wm {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-display); font-weight: 700;
    font-size: 18px; color: var(--fg-1); letter-spacing: -0.01em;
  }
  .web-card .wm .dom {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--fg-4); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .web-card p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.5; }
  .web-card .foot {
    margin-top: auto; padding-top: 12px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--fg-4);
  }
  .web-card .foot .out { color: var(--azalea-300); display: flex; align-items: center; gap: 4px; }

  /* Reddit */
  .rdt-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .rdt-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 22px 24px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color 200ms ease;
  }
  .rdt-card:hover { border-color: var(--azalea-500); }
  .rdt-head { display: flex; align-items: center; gap: 10px; font-size: 13px; }
  .rdt-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: #ff4500; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff;
  }
  .rdt-sub { color: var(--fg-1); font-weight: 500; }
  .rdt-user { color: var(--fg-4); font-family: var(--font-mono); font-size: 11px; }
  .rdt-card p { margin: 0; color: var(--fg-2); font-size: 14px; line-height: 1.5; }
  .rdt-card .foot {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--azalea-300); display: flex; align-items: center; gap: 6px;
  }

  /* =========================================================
     WHAT USERS LOVE — recurring themes
     ========================================================= */
  .themes { background: var(--bg-dim); }
  .theme-list {
    display: flex; flex-direction: column;
    border-top: 1px solid var(--border-strong);
  }
  .theme {
    display: grid; grid-template-columns: 80px 320px 1fr auto;
    gap: 40px; padding: 32px 8px;
    border-bottom: 1px solid var(--border-strong);
    align-items: start;
    transition: background 250ms ease;
  }
  .theme:hover { background: rgba(214,42,94,.03); }
  .theme .num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 36px; color: var(--azalea-400); letter-spacing: -0.03em;
    font-variation-settings: "wdth" 90;
    line-height: 1;
  }
  .theme h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 24px; letter-spacing: -0.015em; line-height: 1.15;
    margin: 0; color: var(--fg-1);
    font-variation-settings: "wdth" 104;
    text-wrap: balance;
  }
  .theme p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.5; }
  .theme .cite {
    font-size: 13px; color: var(--fg-4); font-style: italic;
    max-width: 240px; text-align: right;
    font-family: var(--font-sans); line-height: 1.45;
    border-left: 2px solid var(--azalea-400); padding-left: 14px; text-align: left;
  }

  /* =========================================================
     PROS / CONS — honest
     ========================================================= */
  .proscons { background: var(--bg); }
  .pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .pc-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 36px;
  }
  .pc-card.pros { border-top: 3px solid var(--azalea-400); }
  .pc-card.cons { border-top: 3px solid #fbc93e; }
  .pc-card h3 {
    font-family: var(--font-display); font-weight: 800;
    font-size: 22px; margin: 0 0 20px;
    display: flex; align-items: center; gap: 10px;
    letter-spacing: -0.01em;
  }
  .pc-card h3 .ct { font-family: var(--font-mono); font-size: 12px; color: var(--fg-4); font-weight: 400; letter-spacing: 0.12em; }
  .pc-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
  .pc-card li {
    display: grid; grid-template-columns: 24px 1fr; gap: 14px;
    align-items: start;
    font-size: 15px; line-height: 1.5; color: var(--fg-2);
    padding-bottom: 18px; border-bottom: 1px dashed var(--border);
  }
  .pc-card li:last-child { border-bottom: none; padding-bottom: 0; }
  .pc-card li strong { color: var(--fg-1); font-weight: 600; display: block; margin-bottom: 3px; font-size: 15.5px; }
  .pc-card .mark {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    margin-top: 1px;
  }
  .pros .mark { background: rgba(214,42,94,.18); color: var(--azalea-300); }
  .cons .mark { background: rgba(251,201,62,.15); color: #fbc93e; }

  /* =========================================================
     FEATURES — reviewer-lens
     ========================================================= */
  .features { background: var(--bg-dim); }
  .feat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
  }
  .feat-card {
    grid-column: span 2;
    background: var(--surface);
    padding: 32px 30px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .feat-card:nth-child(4) { grid-column: span 3; }
  .feat-card:nth-child(5) { grid-column: span 3; }
  .feat-card:nth-child(6) { grid-column: span 3; }
  .feat-card:nth-child(7) { grid-column: span 3; }
  .feat-card .head {
    display: flex; align-items: center; justify-content: space-between;
  }
  .feat-card .head .name {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--fg-4);
  }
  .feat-card h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 22px; letter-spacing: -0.015em; margin: 0;
    line-height: 1.2;
    font-variation-settings: "wdth" 105;
    text-wrap: balance;
  }
  .feat-card p { margin: 0; color: var(--fg-2); font-size: 14.5px; line-height: 1.55; }
  .feat-card .score-row {
    display: flex; align-items: center; gap: 10px;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .feat-card .score-row .num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 20px; letter-spacing: -0.02em; color: var(--fg-1);
    font-variation-settings: "wdth" 92;
  }
  .feat-card .score-row .num .of { color: var(--fg-4); font-size: 13px; font-weight: 500; }
  .feat-card .score-row .bar { flex: 1; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
  .feat-card .score-row .bar span { display: block; height: 100%; background: var(--grad-brand); }

  /* =========================================================
     FAQ
     ========================================================= */
  .faq { background: var(--bg); }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-item summary {
    cursor: pointer; list-style: none;
    display: grid; grid-template-columns: 40px 1fr 32px; gap: 20px; align-items: center;
    font-family: var(--font-display); font-weight: 600;
    font-size: 20px; letter-spacing: -0.01em;
    color: var(--fg-1);
    font-variation-settings: "wdth" 104;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .qnum {
    font-family: var(--font-mono); font-size: 12px; color: var(--fg-4);
    letter-spacing: 0.1em;
  }
  .faq-item summary .plus {
    width: 28px; height: 28px; border: 1px solid var(--border-strong);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--fg-3); font-size: 14px; transition: all 200ms ease;
  }
  .faq-item[open] summary .plus { background: var(--azalea-400); border-color: var(--azalea-400); color: #fff; transform: rotate(45deg); }
  .faq-item[open] summary { color: var(--azalea-300); }
  .faq-item .answer {
    padding: 18px 52px 8px 60px;
    color: var(--fg-2); font-size: 16px; line-height: 1.6;
    max-width: 820px;
  }

  /* =========================================================
     FINAL VERDICT
     ========================================================= */
  .final {
    background:
      radial-gradient(60% 80% at 50% 0%, rgba(214,42,94,.18) 0%, transparent 60%),
      radial-gradient(50% 60% at 50% 100%, rgba(245,0,87,.10) 0%, transparent 70%),
      #0b0809;
    padding: 120px 28px 100px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0,0,0,.3) 70%);
    pointer-events: none;
  }
  .final-container { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
  .final .kicker {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--azalea-300); margin-bottom: 18px;
  }
  .final h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(40px, 5.5vw, 72px); line-height: 1.02;
    letter-spacing: -0.025em; margin: 0 0 28px;
    text-wrap: balance;
    font-variation-settings: "wdth" 108, "opsz" 144;
  }
  .final h2 em {
    font-style: italic; color: var(--azalea-300); font-weight: 500;
    font-family: 'Poppins', serif;
  }
  .final .big-score {
    display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
    margin: 32px 0 36px;
  }
  .final .big-score .num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 180px; line-height: 1;
    letter-spacing: -0.06em;
    background: linear-gradient(180deg, #fff 0%, #d62a5e 80%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-variation-settings: "wdth" 85, "opsz" 144;
  }
  .final .big-score .num .of {
    -webkit-text-fill-color: var(--fg-4);
    font-size: 56px;
    font-variation-settings: "wdth" 100;
    font-weight: 500;
    letter-spacing: -0.03em;
  }
  .final .big-score .hearts { display: flex; gap: 6px; }
  .final .big-score .hearts svg { width: 28px; height: 28px; }
  .final p.closing {
    font-size: 19px; line-height: 1.55; color: var(--fg-2);
    max-width: 680px; margin: 0 auto 40px; font-weight: 300;
  }
  .final p.closing strong { color: var(--fg-1); font-weight: 500; }
  .final .btn-primary.xl {
    padding: 20px 40px; font-size: 17px; letter-spacing: -0.01em;
  }
  .final .fineprint {
    margin-top: 26px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--fg-4);
  }

  /* =========================================================
     FOOTER
     ========================================================= */
  footer {
    background: var(--bg-deeper);
    padding: 72px 28px 32px;
    border-top: 1px solid var(--border);
    color: var(--fg-3);
    font-size: 14px;
  }
  footer .foot-top {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    margin-bottom: 48px;
    align-items: start;
  }
  footer .foot-brand { display: flex; flex-direction: column; gap: 22px; max-width: 560px; }
  footer .foot-brand .logo { height: 28px; width: auto; display: block; }
  footer .foot-tagline { color: var(--fg-1); font-weight: 500; font-size: 15px; margin: 0; line-height: 1.5; }
  footer .foot-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  footer .foot-addresses > div { font-size: 13px; line-height: 1.55; color: var(--fg-3); }
  footer .foot-addresses > div + div { padding-left: 24px; border-left: 1px solid var(--border); }
  footer .foot-addresses p { margin: 0; }
  footer .foot-addresses .who { color: var(--fg-1); font-weight: 500; margin-bottom: 4px; }
  footer .foot-contact, footer .foot-desc { color: var(--fg-3); font-size: 14px; line-height: 1.55; margin: 0; }
  footer .foot-contact a { color: var(--fg-1); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 200ms ease, border-color 200ms ease; }
  footer .foot-contact a:hover { color: var(--azalea-300); border-color: var(--azalea-300); }
  footer .foot-social { display: flex; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
  footer .foot-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(37,37,37,.5);
    border: 1px solid rgba(17,17,17,.4);
    display: inline-flex; align-items: center; justify-content: center;
    transition: opacity 200ms ease, border-color 200ms ease;
  }
  footer .foot-social a:hover { opacity: .8; border-color: var(--azalea-500); }
  footer .foot-social img { width: 20px; height: 20px; display: block; }

  footer .foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  footer .foot-col h5 {
    font-family: var(--font-sans); font-weight: 500; font-size: 16px;
    color: #b0b0b0; letter-spacing: 0; text-transform: none;
    margin: 0 0 16px;
  }
  footer .foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  footer .foot-col a {
    color: var(--fg-3); text-decoration: none;
    font-size: 14px; line-height: 1.5;
    transition: color 200ms ease;
  }
  footer .foot-col a:hover { color: var(--fg-1); }

  footer .foot-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    text-align: center;
  }
  footer .foot-bottom .copy { font-size: 13px; color: var(--fg-5); margin: 0; }
  footer .foot-bottom .built {
    font-family: var(--font-display); font-weight: 600; font-size: 17px;
    color: var(--fg-1); margin: 0;
    display: inline-flex; align-items: center; gap: 6px;
    letter-spacing: 0.02em;
  }

  footer .disclosure {
    max-width: 960px; margin: 32px auto 0; padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px; color: var(--fg-5); line-height: 1.6;
    text-align: center;
  }

  /* tiny utilities */
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

  /* skip to main content — accessibility */
  .skip-link {
    position: absolute; top: -48px; left: 0; z-index: 999;
    background: var(--azalea-400); color: #fff;
    padding: 10px 18px; border-radius: 0 0 8px 0;
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: top 150ms ease;
  }
  .skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }

  /* responsive */
  @media (max-width: 1040px) {
    .hero-grid, .section-head, .verdict-grid, .t-grid, .rdt-grid, .web-grid, .pc-grid, .feat-grid, .yt-grid, .theme, .midcta, footer .foot-top, footer .foot-cols, footer .foot-addresses {
      grid-template-columns: 1fr !important;
    }
    footer .foot-top { gap: 40px; }
    footer .foot-addresses > div + div { padding-left: 0; border-left: none; padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--border); }
    footer .foot-cols { gap: 28px; }
    .feat-card { grid-column: span 1 !important; }
    .yt-card.primary { grid-column: span 1; grid-row: auto; }
    .theme { grid-template-columns: 1fr !important; gap: 14px; }
    .theme .cite { border-left: 2px solid var(--azalea-400); }
    section { padding: 64px 20px; }
    .masthead-title { font-size: 32px; }
    .pullquote { padding: 32px 28px; }
    .pullquote .qmark { font-size: 100px; top: 14px; left: 18px; }
    .faq-item summary { grid-template-columns: 30px 1fr 28px; gap: 12px; font-size: 17px; }
    .faq-item .answer { padding-left: 42px; }
  }

  /* ============================================================
     Standalone review-hub pages (/reviews, /testimonials, /ratings)
     ============================================================ */
  .crumb a { color: var(--fg-3); text-decoration: none; transition: color .15s ease; }
  .crumb a:hover { color: var(--azalea-300); }
  .crumb a[aria-current="page"] { color: var(--azalea-300); }
  .xlink-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 4px; }
  .page-lead { font-size: 17px; line-height: 1.7; color: var(--fg-2); max-width: 70ch; }
  .page-lead + .page-lead { margin-top: 14px; }
