
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:        #e8417a;
      --pink-light:  #f4729e;
      --pink-dark:   #f07099;
      --purple:      #bf5af2;   /* Apple system purple */
      --blue:        #2997ff;   /* Apple interactive blue */
      --gradient:    linear-gradient(90deg, #e8417a 0%, #bf5af2 100%);
      --fg:          #f5f5f7;   /* Apple primary text */
      --fg-soft:     #86868b;   /* Apple secondary text */
      --fg-muted:    #6e6e73;   /* Apple tertiary text */
      --bg:          #000000;
      --bg-alt:      rgba(255,255,255,.04);
      --border:      rgba(255,255,255,.12);
      --green:       #30d158;   /* Apple green */
      --orange:      #ff9f0a;   /* Apple orange */
      --radius-card: 18px;
      --radius-sm:   12px;
      --shadow-card: 0 4px 32px rgba(0,0,0,.5);
      --shadow-lg:   0 20px 60px rgba(0,0,0,.7);
      --t:           .22s cubic-bezier(.4,0,.2,1);
      --container-px: clamp(16px, 5vw, 24px);
    }

    html { scroll-behavior: smooth; overflow-x: clip; }
    /* scroll-margin-top on block anchor targets — immune to inline Safari quirks */
    #specs, #picks, #h2h, #editorial, #faq, #buy { scroll-margin-top: 100px; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: rgba(0,0,0,1);
      color: var(--fg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    a { color: var(--pink); text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { display: block; max-width: 100%; }

    /* ── Utilities ── */
    .container { max-width: 1080px; margin: 0 auto; padding: 0 var(--container-px); }
    .section    { padding: clamp(56px, 8vw, 96px) 0; }
    .section--alt { background: rgba(0,0,0,1); }
    .text-center { text-align: center; }
    .text-center .subhead { margin-left: auto; margin-right: auto; }

    .eyebrow {
      display: block;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 10px;
    }
    .headline {
      font-size: clamp(1.75rem, 4.5vw, 3rem);
      font-weight: 700;
      line-height: 1.13;
      letter-spacing: -.025em;
    }
    .subhead {
      font-size: clamp(.95rem, 2.2vw, 1.05rem);
      color: var(--fg-soft);
      margin-top: 14px;
      max-width: 580px;
      line-height: 1.65;
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 26px;
      border-radius: 980px;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform var(--t), box-shadow var(--t), background var(--t), background-position .5s ease, color var(--t);
      white-space: normal;
      text-align: center;
      word-break: break-word;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      min-height: 44px;
    }
    /* Nav + ghost buttons always stay single-line */
    .btn--ghost,
    .site-header__inner .btn { white-space: nowrap; }
    .btn:hover { transform: translateY(-1px); text-decoration: none; }
    .btn:active { transform: translateY(0); }
    .btn--primary {
      background: var(--gradient); background-size: 200% auto; background-position: left center;
      color: #fff; letter-spacing: .03em;
      box-shadow: 0 4px 22px rgba(232,65,122,.4), 0 1px 0 rgba(255,255,255,.15) inset;
    }
    .btn--primary:hover { background-position: right center; box-shadow: 0 8px 36px rgba(191,90,242,.55), 0 4px 16px rgba(232,65,122,.35); }
    .btn--outline {
      background: transparent;
      color: var(--pink);
      border: 2px solid var(--pink);
    }
    .btn--outline:hover { background: var(--pink); color: #fff; letter-spacing: .03em; }
    .btn--ghost {
      background: rgba(255,255,255,.1);
      color: var(--fg);
    }
    .btn--ghost:hover { background: rgba(255,255,255,.17); }
    /* ── Nav gradient buttons ── */
    .btn--grad-specs  { background: linear-gradient(135deg, #bf5af2 0%, #2997ff 100%); color: #fff; letter-spacing: .03em; box-shadow: 0 4px 18px rgba(191,90,242,.35); }
    .btn--grad-specs:hover  { box-shadow: 0 8px 28px rgba(191,90,242,.55); }
    .btn--grad-faq    { background: linear-gradient(135deg, #30d158 0%, #00c6ff 100%); color: #fff; letter-spacing: .03em; box-shadow: 0 4px 18px rgba(48,209,88,.28); }
    .btn--grad-faq:hover    { box-shadow: 0 8px 28px rgba(48,209,88,.45); }
    .btn--grad-price  { background: var(--gradient); background-size: 200% auto; background-position: left center; color: #fff; letter-spacing: .03em; box-shadow: 0 4px 22px rgba(232,65,122,.4), 0 1px 0 rgba(255,255,255,.15) inset; }
    .btn--grad-price:hover  { background-position: right center; box-shadow: 0 8px 36px rgba(191,90,242,.55), 0 4px 16px rgba(232,65,122,.35); }

    /* ── Site Header ── */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      background: rgba(0,0,0,1);
    }
    .site-header__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 52px;
    }
    .site-header__logo { font-size: .9rem; font-weight: 700; color: var(--fg); }
    .site-header__logo span { color: var(--pink); }
    .site-header__logo { margin-inline-start: 8px; }
    /* ── Jump Bar ── */
    .jump-bar {
      overflow-x: auto; scrollbar-width: none;
    }
    .jump-bar::-webkit-scrollbar { display: none; }
    .jump-bar__inner {
      display: flex; align-items: center; justify-content: center; gap: 2px;
      height: 36px; padding: 0 8px;
    }
    .jump-bar__link {
      flex-shrink: 0; padding: 4px 10px; border-radius: 20px;
      font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.45);
      white-space: nowrap; transition: color .15s, background .15s; text-decoration: none;
    }
    .jump-bar__link:hover { color: rgba(255,255,255,.88); background: rgba(255,255,255,.07); }
    .jump-bar__link--active { color: #fff; background: rgba(255,255,255,.1); }
    .jump-bar__link--cta {
      color: var(--pink);
      border: 1px solid rgba(232,65,122,.35);
    }
    .jump-bar__link--cta:hover { background: rgba(232,65,122,.1); color: var(--pink); }
    .jump-bar__link--cta.jump-bar__link--active { background: rgba(232,65,122,.15); color: var(--pink); }
    @media (max-width: 480px) { .jump-bar__link { padding: 4px 7px; font-size: .7rem; } }


    /* ── HERO ── */
    .hero {
      position: relative;
      overflow: hidden;
      padding: clamp(40px, 7vw, 72px) 0 clamp(48px, 7vw, 80px);
      text-align: center;
      background:
        radial-gradient(ellipse 70% 50% at 20% 30%, rgba(232,65,122,.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 45% at 80% 70%, rgba(168,85,247,.18) 0%, transparent 70%);
    }

    /* ── Floating decorative Lush images ── */
    .hero__floaters {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero__floater {
      position: absolute;
      will-change: transform;
      filter: drop-shadow(0 6px 18px rgba(232,65,122,.25));
      transition: opacity .6s;
    }
    .hero__floater:nth-child(1) { width: 70px;  top: 10%; left: 4%;    opacity: .18; }
    .hero__floater:nth-child(2) { width: 46px;  top: 62%; left: 2.5%;  opacity: .12; }
    .hero__floater:nth-child(3) { width: 86px;  top:  6%; right: 4%;   opacity: .16; }
    .hero__floater:nth-child(4) { width: 54px;  bottom: 12%; right: 3%; opacity: .11; }
    .hero__floater:nth-child(5) { width: 62px;  top: 50%; left: 8%;    opacity: .09; }
    .hero__floater:nth-child(6) { width: 42px;  top: 28%; right: 9%;   opacity: .13; }
    @media (max-width: 820px) { .hero__floater { display: none; } }
    .hero__kicker {
      display: inline-block;
      padding: 5px 16px;
      border-radius: 980px;
      background: linear-gradient(135deg, rgba(232,65,122,.22), rgba(168,85,247,.22));
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 20px;
    }
    .hero__headline {
      font-size: clamp(1.9rem, 5.5vw, 3.8rem);
      font-weight: 700;
      letter-spacing: -.03em;
      line-height: 1.08;
      max-width: 800px;
      margin: 0 auto 18px;
    }
    .hero__headline span {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── Gradient text utilities ── */
    .grad, .grad-blue, .grad-warm {
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline;
    }
    /* Pink → Purple  (primary) */
    .grad      { background-image: linear-gradient(90deg, #e8417a 0%, #bf5af2 100%); }
    /* Pink → Lavender (soft, Apple-style) */
    .grad-soft { background-image: linear-gradient(90deg, #b87fc8 7%, #7e42a8 79%); }
    /* Blue → Purple */
    .grad-blue { background-image: linear-gradient(90deg, #2997ff 0%, #bf5af2 100%); }
    /* Pink → Orange (warm) */
    .grad-warm { background-image: linear-gradient(90deg, #ff6b6b 0%, #ff9f0a 100%); }
    .hero__sub {
      font-size: clamp(.95rem, 2.5vw, 1.1rem);
      color: var(--fg-soft);
      max-width: 500px;
      margin: 0 auto 48px;
    }

    /* Product trio */
    .hero__products {
      display: grid;
      grid-template-columns: 1fr 1.08fr 1fr;
      gap: 20px;
      align-items: end;
    }

    .hero-card {
      background: rgba(255,255,255,.07);
      border-radius: var(--radius-card);
      padding: 32px 20px 28px;
      position: relative;
      transition: transform var(--t), box-shadow var(--t);
      display: flex; flex-direction: column; align-items: center;
    }
    .hero-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

    .hero-card--featured {
      background: rgba(232,65,122,.14);
      box-shadow: 0 0 0 2px rgba(232,65,122,.55), 0 8px 40px rgba(232,65,122,.3);
      padding-top: 40px;
    }
    .hero-card__badge {
      position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
      background: var(--gradient); background-size: 200% auto; background-position: left center;
      color: #fff; letter-spacing: .03em; font-size: .7rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 4px 16px; border-radius: 980px; white-space: nowrap;
      box-shadow: 0 4px 12px rgba(232,65,122,.35);
    }

    .hero-card__img {
      width: 150px; height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      filter: drop-shadow(0 8px 20px rgba(232,65,122,.18));
    }
    .hero-card--featured .hero-card__img { width: 175px; height: 175px; }

    .hero-card__name { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; }
    .hero-card__tagline { font-size: .8rem; color: var(--fg-muted); margin: 4px 0 18px; }
    .hero-card__price { font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 18px; }
    .hero-card__price sub { font-size: .8rem; font-weight: 500; color: var(--fg-muted); }

    /* ── QUICK PICKS ── */
    .picks__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
    }
    .pick-card {
      border-radius: var(--radius-card);
      padding: 34px 26px;
      display: flex; flex-direction: column; gap: 10px;
      transition: transform var(--t), box-shadow var(--t);
    }
    .pick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .pick-card--1 { background: linear-gradient(145deg, rgba(232,65,122,.18), rgba(168,85,247,.08)); border-top: 3px solid #e8417a; }
    .pick-card--2 { background: linear-gradient(145deg, rgba(168,85,247,.18), rgba(99,102,241,.08)); border-top: 3px solid #a855f7; }
    .pick-card--3 { background: linear-gradient(145deg, rgba(48,209,88,.18), rgba(16,185,129,.08));  border-top: 3px solid #30d158; }
    .pick-card__icon { font-size: 1.8rem; }
    .pick-card__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); }
    .pick-card__product { font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; }
    .pick-card__reason { font-size: .88rem; color: var(--fg-soft); line-height: 1.55; }
    .pick-card__cta { margin-top: auto; padding-top: 10px; }

    /* ── CALLOUT ── */
    .callout { padding: clamp(48px, 7vw, 80px) 0; }
    .callout__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 64px);
      align-items: center;
    }
    .callout__inner--reverse { direction: rtl; }
    .callout__inner--reverse > * { direction: ltr; }
    .callout__visual {
      border-radius: var(--radius-card);
      overflow: hidden;
      aspect-ratio: 1;
      display: flex; align-items: center; justify-content: center;
    }
    .callout__visual img { width: 100%; height: 100%; object-fit: contain; }
    .callout__visual--bg {
      background: linear-gradient(135deg, rgba(232,65,122,.2), rgba(168,85,247,.2));
      padding: 32px;
    }
    .callout__content .headline { font-size: clamp(1.4rem, 3vw, 2.2rem); }
    .callout__stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
    .callout__stat {
      background: rgba(255,255,255,.07);
      border-radius: var(--radius-sm);
      padding: 14px 18px; min-width: 100px;
      border: 1px solid rgba(255,255,255,.1);
      box-shadow: 0 2px 8px rgba(0,0,0,.2);
    }
    .callout__stat__value {
      font-size: 1.55rem; font-weight: 700; letter-spacing: -.03em;
      background: var(--gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .callout__stat__label { font-size: .76rem; color: var(--fg-muted); margin-top: 2px; }

    /* ═══════════════════════════════════════════════════
       VISUAL SCORECARD
    ═══════════════════════════════════════════════════ */

    .scorecard { padding: clamp(56px, 8vw, 96px) 0; }

    /* Scroll wrapper with right-edge fade on mobile */
    .sc-scroll-wrapper {
      position: relative;
      margin-top: 48px;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .sc-scroll-wrapper::after {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 48px;
      background: linear-gradient(to right, transparent, #000);
      pointer-events: none;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      opacity: 0;
      transition: opacity .3s;
    }

    /* Sticky product header */
    .sc-header {
      display: grid;
      grid-template-columns: 200px repeat(3, 1fr);
      gap: 0;
      position: sticky;
      top: 52px;
      z-index: 20;
      background: rgba(0,0,0,1);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 2px solid rgba(255,255,255,.1);
      border-radius: var(--radius-sm) var(--radius-sm) 0 0;
      overflow: hidden;
    }
    .sc-header__label { padding: 16px 20px; }
    .sc-header__col {
      padding: 14px 16px 16px;
      display: flex; flex-direction: column; align-items: center;
      gap: 6px; text-align: center;
      border-left: 1px solid var(--border);
    }
    .sc-header__col--featured { background: linear-gradient(180deg, rgba(232,65,122,.18) 0%, rgba(232,65,122,.06) 100%); }
    /* Per-column accent top borders */
    .sc-header__col:nth-child(2) { border-top: 3px solid var(--purple); }
    .sc-header__col:nth-child(3) { border-top: 3px solid var(--pink); }
    .sc-header__col:nth-child(4) { border-top: 3px solid var(--green); }
    .sc-header__col img { width: 60px; height: 60px; object-fit: contain; }
    .sc-buy-row {
      display: grid;
      grid-template-columns: 200px repeat(3, 1fr);
      border-top: 2px solid rgba(232,65,122,.3);
      border-bottom: 2px solid rgba(232,65,122,.3);
      background: rgba(232,65,122,.04);
    }
    .sc-buy-row__label {
      display: flex; align-items: center;
      padding: 14px 20px;
      font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
      color: var(--fg-muted);
      border-right: 1px solid var(--border);
    }
    .sc-buy-row__cell {
      display: flex; align-items: center; justify-content: center;
      padding: 12px 16px;
      border-left: 1px solid var(--border);
    }
    .sc-buy-row__cell--featured { background: rgba(232,65,122,.06); }
    .sc-buy-row__btn {
      width: 100%;
      padding: 9px 12px;
      font-size: .78rem;
      text-align: center;
    }
    .sc-header__col .name { font-size: .9rem; font-weight: 700; }
    
    
    .sc-btn-br { display: none; }
    .sc-header__col .btn { margin-top: auto; min-height: 32px; word-break: normal; }
    .sc-header__col .pill {
      display: inline-block;
      font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
      padding: 2px 10px; border-radius: 980px;
      background: var(--gradient); background-size: 200% auto; background-position: left center; color: #fff; letter-spacing: .03em;
    }

    /* Group */
    .sc-group { margin-top: 2px; }
    .sc-group__title {
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(270deg, #000000 0%, #161617 100%);
      color: #fff; letter-spacing: .03em;
      padding: 11px 20px;
      font-size: .74rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
      border-left: 5px solid var(--pink);
    }
    .sc-group__title .title-icon {
      font-size: 1.05rem;
      width: 34px; height: 34px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.09);
      border-radius: 9px;
      flex-shrink: 0;
    }
    /* Per-group: accent border + tinted icon badge */
    .sc-scroll > .sc-group:nth-child(2) .sc-group__title { border-left-color: var(--pink); }
    .sc-scroll > .sc-group:nth-child(2) .sc-group__title .title-icon { background: rgba(232,65,122,.28); }

    .sc-scroll > .sc-group:nth-child(3) .sc-group__title { border-left-color: var(--orange); }
    .sc-scroll > .sc-group:nth-child(3) .sc-group__title .title-icon { background: rgba(255,159,10,.28); }

    .sc-scroll > .sc-group:nth-child(4) .sc-group__title { border-left-color: var(--green); }
    .sc-scroll > .sc-group:nth-child(4) .sc-group__title .title-icon { background: rgba(48,209,88,.28); }

    .sc-scroll > .sc-group:nth-child(5) .sc-group__title { border-left-color: var(--purple); }
    .sc-scroll > .sc-group:nth-child(5) .sc-group__title .title-icon { background: rgba(168,85,247,.28); }

    .sc-scroll > .sc-group:nth-child(6) .sc-group__title { border-left-color: #0ea5e9; }
    .sc-scroll > .sc-group:nth-child(6) .sc-group__title .title-icon { background: rgba(14,165,233,.28); }

    .sc-scroll > .sc-group:nth-child(7) .sc-group__title { border-left-color: var(--pink-light); }
    .sc-scroll > .sc-group:nth-child(7) .sc-group__title .title-icon { background: rgba(244,114,158,.28); }

    .sc-scroll > .sc-group:nth-child(8) .sc-group__title { border-left-color: #14b8a6; }
    .sc-scroll > .sc-group:nth-child(8) .sc-group__title .title-icon { background: rgba(20,184,166,.28); }

    .sc-scroll > .sc-group:nth-child(9) .sc-group__title { border-left-color: var(--orange); }
    .sc-scroll > .sc-group:nth-child(9) .sc-group__title .title-icon { background: rgba(255,159,10,.28); }

    /* Scroll hint for scorecard */
    .sc-hint {
      display: none;
      align-items: center;
      gap: 6px;
      font-size: .72rem;
      color: var(--fg-muted);
      margin-bottom: 12px;
      justify-content: flex-end;
    }
    .sc-hint svg { flex-shrink: 0; }

    /* Individual spec row */
    .sc-row {
      display: grid;
      grid-template-columns: 200px repeat(3, 1fr);
      border-bottom: 1px solid var(--border);
      transition: background var(--t);
    }
    .sc-row:hover { background: rgba(232,65,122,.07); }
    .sc-row:nth-child(even) { background: rgba(0,0,0,1); }
    .sc-row:nth-child(even):hover { background: rgba(232,65,122,.07); }

    .sc-row__label {
      padding: 14px 20px;
      font-size: .85rem; font-weight: 500; color: var(--fg);
      display: flex; align-items: center;
      border-right: 1px solid var(--border);
    }

    .sc-cell {
      padding: 12px 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; color: var(--fg-soft);
      border-left: 1px solid var(--border);
      text-align: center;
      flex-direction: column; gap: 4px;
    }
    .sc-cell--featured { background: rgba(232,65,122,.06); }
    .sc-cell--winner {
      font-weight: 700;
      color: var(--pink-light);
      background: rgba(232,65,122,.12);
    }

    /* — Bar indicator — */
    .bar-wrap { width: 100%; display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
    .bar-track {
      width: 100%; height: 6px;
      background: rgba(0,0,0,.07);
      border-radius: 999px;
      overflow: hidden;
    }
    .bar-fill {
      height: 100%;
      border-radius: 999px;
      background: var(--gradient); background-size: 200% auto; background-position: left center;
      transition: width .6s cubic-bezier(.4,0,.2,1);
    }
    .bar-val { font-size: .8rem; font-weight: 600; color: var(--fg); }

    /* — Noise badge — */
    .noise-badge {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 4px 12px; border-radius: 980px;
      font-size: .78rem; font-weight: 700;
    }
    .noise-badge--quiet { background: rgba(48,209,88,.12); color: #1a8f3a; }
    .noise-badge--loud  { background: rgba(255,159,10,.14); color: #8a5200; }
    .noise-dot { width: 7px; height: 7px; border-radius: 50%; }
    .noise-badge--quiet .noise-dot { background: var(--green); }
    .noise-badge--loud  .noise-dot { background: var(--orange); }

    /* — Feature chip (YES / NO) — */
    .chip {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 4px 12px; border-radius: 980px;
      font-size: .78rem; font-weight: 700;
    }
    .chip--yes { background: rgba(48,209,88,.18); color: #5de87a; }
    .chip--no  { background: rgba(255,255,255,.07); color: var(--fg-muted); }

    /* — Text value winner highlight — */
    .val-winner { color: var(--pink-dark); font-weight: 700; }
    .val-muted  { color: var(--fg-muted); font-size: .8rem; }

    /* ── HEAD-TO-HEAD ── */
    .h2h__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .h2h__card {
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform var(--t), box-shadow var(--t);
    }
    .h2h__card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .h2h__header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 22px 20px 16px;
      background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
      border-bottom: 1px solid var(--border);
    }
    .h2h__name {
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: -.01em;
      padding: 4px 12px;
      border-radius: 20px;
    }
    .h2h__name--a { background: rgba(232,65,122,.15); color: var(--pink); }
    .h2h__name--b { background: rgba(48,209,88,.13);  color: var(--green); }
    .h2h__name--c { background: rgba(191,90,242,.14); color: var(--purple); }
    .h2h__vs {
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .12em;
      color: var(--fg-muted);
    }
    .h2h__tagline {
      font-size: .78rem;
      color: var(--fg-muted);
      text-align: center;
      margin: 0;
      padding: 10px 20px 0;
    }
    .h2h__cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 16px 16px 0;
      flex: 1;
    }
    .h2h__col {
      border-radius: var(--radius-sm);
      padding: 14px 12px;
    }
    .h2h__col--pink   { background: rgba(232,65,122,.07);  border: 1px solid rgba(232,65,122,.18); }
    .h2h__col--purple { background: rgba(191,90,242,.07);  border: 1px solid rgba(191,90,242,.18); }
    .h2h__col--green  { background: rgba(48,209,88,.07);   border: 1px solid rgba(48,209,88,.18); }
    .h2h__col--muted  { background: rgba(255,255,255,.03); border: 1px solid var(--border); }
    .h2h__col-label {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .h2h__col--pink   .h2h__col-label { color: var(--pink); }
    .h2h__col--purple .h2h__col-label { color: var(--purple); }
    .h2h__col--green  .h2h__col-label { color: var(--green); }
    .h2h__col--muted  .h2h__col-label { color: var(--fg-muted); }
    .h2h__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: .76rem;
      color: var(--fg-soft);
    }
    .h2h__list li::before {
      content: '✓ ';
      opacity: .6;
    }
    .h2h__verdict {
      margin: 16px;
      padding: 11px 14px;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: .78rem;
      color: var(--fg-soft);
      line-height: 1.5;
    }
    .h2h__verdict-label {
      display: inline-block;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--pink);
      background: rgba(232,65,122,.12);
      border-radius: 4px;
      padding: 2px 7px;
      margin-right: 6px;
      vertical-align: middle;
    }
    .h2h__deepdive {
      display: block;
      text-align: center;
      margin: 8px 16px 16px;
      font-size: .8rem;
      color: var(--accent);
      text-decoration: none;
      opacity: .75;
    }
    .h2h__deepdive:hover { opacity: 1; text-decoration: underline; }
    @media (max-width: 900px) {
      .h2h__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    }

    /* ── VERDICT ── */
    .verdict-grid { display: grid; gap: 8px; margin-top: 48px; }
    .verdict-row {
      display: grid;
      grid-template-columns: 2fr 1.3fr 3fr;
      gap: 16px; align-items: center;
      background: rgba(255,255,255,.06); border-radius: var(--radius-sm);
      padding: 15px 20px 15px 18px;
      border: 1px solid rgba(255,255,255,.1);
      border-left: 3px solid var(--pink-light);
      transition: box-shadow var(--t), transform var(--t), border-left-color var(--t);
    }
    .verdict-row:hover {
      box-shadow: var(--shadow-card);
      transform: translateX(3px);
      border-left-color: var(--pink);
    }
    .verdict-use { font-weight: 600; font-size: .88rem; }
    .verdict-pick {
      font-weight: 700; font-size: .9rem;
      background: var(--gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .verdict-why { font-size: .82rem; color: var(--fg-muted); }

    /* ── FAQ ── */
    .faq { padding: clamp(56px, 8vw, 96px) 0; }
    .faq__list { margin-top: 44px; display: flex; flex-direction: column; gap: 10px; }
    .faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
    .faq-item__q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 18px 22px; cursor: pointer;
      font-weight: 600; font-size: .92rem; background: rgba(255,255,255,.06);
      transition: background var(--t); gap: 16px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      user-select: none;
    }
    .faq-item__q:hover { background: rgba(255,255,255,.09); }
    .faq-item__icon {
      flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
      background: rgba(255,255,255,.1); display: flex; align-items: center;
      justify-content: center; font-size: .9rem; transition: transform var(--t), background var(--t);
    }
    .faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--pink); color: #fff; letter-spacing: .03em; }
    .faq-item__a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s cubic-bezier(.4,0,.2,1), padding var(--t);
      padding: 0 22px; font-size: .88rem; color: var(--fg-soft); line-height: 1.72; background: rgba(255,255,255,.04);
    }
    .faq-item.open .faq-item__a { max-height: 400px; padding: 0 22px 18px; }

    /* ── FINAL CTA ── */
    .final-cta { padding: clamp(56px, 8vw, 96px) 0; background: rgba(0,0,0,.3); color: #fff; letter-spacing: .03em; }
    .final-cta .eyebrow { color: var(--pink-light); }
    .final-cta .headline { color: #fff; letter-spacing: .03em; }
    .final-cta .subhead { color: rgba(255,255,255,.6); }
    .cta-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
    .cta-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-card);
      padding: 30px 22px; text-align: center;
      transition: background var(--t), transform var(--t);
    }
    .cta-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
    .cta-card__img { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 16px; filter: brightness(0) invert(1) opacity(.85); }
    .cta-card__name { font-size: 1.15rem; font-weight: 700; color: #fff; letter-spacing: .03em; margin-bottom: 2px; }
    .cta-card__sub { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 18px; }
    .cta-card__price { font-size: 1.9rem; font-weight: 700; color: #fff; letter-spacing: .03em; letter-spacing: -.03em; margin-bottom: 22px; }

    /* ── Footer ── */
    .site-footer { padding: 36px 0; background: rgba(0,0,0,1); text-align: center; }

    /* ── Language switcher ── */
    .lang-switcher { position:relative; }
    .lang-switcher__btn {
      display:flex; align-items:center; gap:5px;
      background:none; border:1px solid var(--border);
      border-radius:8px; padding:6px 10px;
      color:var(--fg-soft); font-size:.75rem; font-weight:600;
      cursor:pointer; font-family:inherit;
      transition:border-color var(--t), color var(--t);
    }
    .lang-switcher__btn:hover { border-color:var(--pink); color:var(--fg); }
    .lang-switcher__globe { font-size:.9rem; }
    .lang-switcher__arrow { opacity:.5; transition:transform var(--t); }
    .lang-switcher__menu.open + .lang-switcher__btn .lang-switcher__arrow,
    .lang-switcher__btn[aria-expanded="true"] .lang-switcher__arrow { transform:rotate(180deg); }
    .lang-switcher__menu {
      display:none;
      position:absolute; top:calc(100% + 6px); inset-inline-end:0;
      background:rgba(0,0,0,1);
      backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
      border:1px solid var(--border); border-radius:10px;
      padding:6px; min-width:150px;
      box-shadow:0 8px 24px rgba(0,0,0,.5);
      z-index:200;
    }
    .lang-switcher__menu.open { display:block; }
    .lang-switcher__opt {
      display:flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:6px;
      font-size:.78rem; color:var(--fg-soft);
      text-decoration:none; white-space:nowrap;
      transition:background var(--t), color var(--t);
    }
    .lang-switcher__opt:hover { background:rgba(255,255,255,.08); color:var(--fg); }
    .lang-switcher__opt.active { color:var(--pink); font-weight:700; }
    /* Mobile: compact button, menu opens downward (header is sticky at top) */
    @media (max-width:820px) {
      .lang-switcher__btn { padding:5px 8px; font-size:.68rem; gap:3px; }
      .lang-switcher__label { display:none; }
      .lang-switcher__menu {
        top:calc(100% + 6px); bottom:auto;
        inset-inline-end:0; min-width:140px;
        z-index:9999;
      }
    }
    .site-footer p { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.9; }
    .site-footer a { color: rgba(255,255,255,.45); }
    .site-footer a:hover { color: var(--pink-light); }


    /* ── Editorial verdict section ── */
    .editorial { padding: clamp(56px, 8vw, 96px) 0; }
    .editorial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 52px;
      align-items: start;
    }
    .editorial-card {
      position: relative;
      border-radius: 20px;
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s cubic-bezier(.4,0,.2,1);
    }
    .editorial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 64px rgba(0,0,0,.55);
    }
    /* per-card glow bg */
    .editorial-card--1 { background: linear-gradient(160deg, rgba(232,65,122,.1) 0%, rgba(0,0,0,0) 55%), rgba(255,255,255,.03); border-color: rgba(232,65,122,.22); }
    .editorial-card--2 { background: linear-gradient(160deg, rgba(191,90,242,.1) 0%, rgba(0,0,0,0) 55%), rgba(255,255,255,.03); border-color: rgba(191,90,242,.22); }
    .editorial-card--3 { background: linear-gradient(160deg, rgba(48,209,88,.08) 0%, rgba(0,0,0,0) 55%), rgba(255,255,255,.03); border-color: rgba(48,209,88,.2); }

    /* card header — centered */
    .editorial-card__header {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 26px 22px 0;
      gap: 0;
      text-align: center;
    }
    .editorial-card__meta { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }
    .editorial-card__label {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .editorial-card--1 .editorial-card__label { color: var(--pink); }
    .editorial-card--2 .editorial-card__label { color: var(--purple); }
    .editorial-card--3 .editorial-card__label { color: var(--green); }
    .editorial-card__name {
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -.03em;
      color: var(--fg);
      line-height: 1.1;
      margin-top: 2px;
    }
    .editorial-card__price {
      font-size: .82rem;
      font-weight: 600;
      color: var(--fg-muted);
      margin-top: 3px;
    }

    /* score badge */
    .editorial-card--1
    .editorial-card--2
    .editorial-card--3
    .editorial-card--1
    .editorial-card--2
    .editorial-card--3

    /* product image */
    .editorial-card__img-wrap {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 0 6px;
    }
    .editorial-card__img {
      display: block;
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin: 0 auto;
      filter: drop-shadow(0 8px 20px rgba(0,0,0,.5));
      transition: transform .3s ease;
    }
    .editorial-card:hover .editorial-card__img { transform: scale(1.06) translateY(-3px); }

    /* body */
    .editorial-card__body { padding: 16px 22px 0; text-align: center; }
    .editorial-card__tagline {
      font-size: .88rem;
      font-weight: 700;
      color: var(--fg);
      letter-spacing: -.01em;
      line-height: 1.35;
      margin: 0 0 10px;
    }
    .editorial-summary {
      font-size: .8rem;
      color: var(--fg-soft);
      line-height: 1.8;
      margin: 0;
      text-align: left;
    }

    /* stat pills */
    .editorial-card__stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      padding: 14px 22px 0;
    }
    .editorial-stat {
      font-size: .7rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .editorial-card--1 .editorial-stat { background: rgba(232,65,122,.12); color: var(--pink-light); border: 1px solid rgba(232,65,122,.2); }
    .editorial-card--2 .editorial-stat { background: rgba(191,90,242,.12); color: #d08cf6;            border: 1px solid rgba(191,90,242,.2); }
    .editorial-card--3 .editorial-stat { background: rgba(48,209,88,.1);   color: #5de87a;            border: 1px solid rgba(48,209,88,.18); }

    /* verdict */
    .editorial-card__verdict {
      margin: 16px 22px 22px;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      font-size: .78rem;
      color: var(--fg-soft);
      line-height: 1.55;
    }
    .editorial-card--1 .editorial-card__verdict { background: rgba(232,65,122,.08); border: 1px solid rgba(232,65,122,.14); }
    .editorial-card--2 .editorial-card__verdict { background: rgba(191,90,242,.08); border: 1px solid rgba(191,90,242,.14); }
    .editorial-card--3 .editorial-card__verdict { background: rgba(48,209,88,.07);  border: 1px solid rgba(48,209,88,.12); }
    .editorial-card__verdict strong { color: var(--fg); }
    .editorial-card__cta { display: block; margin: 0 22px 22px; font-size: .82rem; text-align: center; }
    .verdict-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
    .h2h__cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 12px 0 14px; }
    .editorial-stars { display: flex; justify-content: center; gap: 2px; margin-top: 5px; line-height: 1; }
    .star { font-size: .9rem; color: rgba(255,255,255,.15); }
    .star--on { color: #f5a623; }
    .star--half { position: relative; color: rgba(255,255,255,.15); }
    .star--half::after { content: '★'; position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; color: #f5a623; display: block; }

    @media (max-width: 1024px) {
      .editorial-grid { gap: 16px; }
      .editorial-card__name { font-size: 1.2rem; }
    }
    @media (max-width: 820px) {
      .editorial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 40px auto 0; }
      .editorial-card__img { width: 80px; height: 80px; }
    }

    /* ══════════════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════════════ */

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }

    /* Hero — plays on page load */
    .hero__kicker  { animation: fadeUp .5s cubic-bezier(.4,0,.2,1) .05s both; }
    .hero__headline { animation: fadeUp .6s cubic-bezier(.4,0,.2,1) .15s both; }
    .hero__sub      { animation: fadeUp .5s cubic-bezier(.4,0,.2,1) .28s both; }
    .hero__products .hero-card:nth-child(1) { animation: fadeUp .55s cubic-bezier(.4,0,.2,1) .38s both; }
    .hero__products .hero-card:nth-child(2) { animation: fadeUp .55s cubic-bezier(.4,0,.2,1) .26s both; }
    .hero__products .hero-card:nth-child(3) { animation: fadeUp .55s cubic-bezier(.4,0,.2,1) .48s both; }

    /* Floating effect on featured card */
    .hero-card--featured { animation: fadeUp .55s cubic-bezier(.4,0,.2,1) .26s both, heroFloat 4s ease-in-out 1s infinite; }

    /* Scroll-triggered base */
    .anim-ready {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
    }
    .anim-ready.is-visible { opacity: 1; transform: none; }

    /* Stagger grid children */
    .anim-stagger > * {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
    }
    .anim-stagger.is-visible > *:nth-child(1)    { opacity:1; transform:none; transition-delay:   0ms; }
    .anim-stagger.is-visible > *:nth-child(2)    { opacity:1; transform:none; transition-delay:  85ms; }
    .anim-stagger.is-visible > *:nth-child(3)    { opacity:1; transform:none; transition-delay: 170ms; }
    .anim-stagger.is-visible > *:nth-child(4)    { opacity:1; transform:none; transition-delay: 240ms; }
    .anim-stagger.is-visible > *:nth-child(5)    { opacity:1; transform:none; transition-delay: 300ms; }
    .anim-stagger.is-visible > *:nth-child(6)    { opacity:1; transform:none; transition-delay: 360ms; }
    .anim-stagger.is-visible > *:nth-child(7)    { opacity:1; transform:none; transition-delay: 410ms; }
    .anim-stagger.is-visible > *:nth-child(8)    { opacity:1; transform:none; transition-delay: 455ms; }
    .anim-stagger.is-visible > *:nth-child(n+9)  { opacity:1; transform:none; transition-delay: 495ms; }

    /* Respect reduced-motion */
    @media (prefers-reduced-motion: reduce) {
      .hero__kicker, .hero__headline, .hero__sub,
      .hero__products .hero-card, .hero-card--featured,
      .anim-ready, .anim-stagger > * {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ══════════════════════════════════════════════════
       RESPONSIVE — Tablet  (481px – 820px)
    ══════════════════════════════════════════════════ */
    @media (min-width: 481px) and (max-width: 820px) {
      .picks__grid { grid-template-columns: repeat(2, 1fr); }
      .cta-cards   { grid-template-columns: repeat(2, 1fr); }
      /* Center lone 3rd card when count is odd */
      .picks__grid > :last-child:nth-child(odd),
      .cta-cards   > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
      }
    }

    /* ══════════════════════════════════════════════════
       RESPONSIVE — Mobile  (≤ 820px)
    ══════════════════════════════════════════════════ */
    @media (max-width: 820px) {
      /* Buttons: allow wrapping, tighten padding on mobile */
      .btn { padding: 11px 18px; font-size: .82rem; }
      /* Full-width buttons inside cards */
      .pick-card__cta .btn,
      .hero-card .btn,
      .cta-card .btn { width: 100%; }
      /* Row 1: logo + nav compact on same row (no overflow — keeps lang-switcher dropdown visible) */
      .site-header__inner { height: auto; padding: 8px 0; }
      .site-header__inner nav { gap: 5px; }
      .site-header__inner nav a { padding: 5px 8px !important; font-size: .65rem !important; white-space: nowrap; }
      .site-header__logo { font-size: 1rem !important; }
      /* Compare rows: 2×2 grid on mobile */
      .site-nav--compare__inner { flex-wrap: wrap !important; overflow-x: visible !important; white-space: normal !important; gap: 6px; }
      .site-nav--compare__sep { display: none !important; }
      .site-nav--compare__link, .site-nav--compare__current { flex: 1 1 calc(50% - 6px) !important; text-align: center; }

      /* Hero: stack cards, featured floats to top */
      .hero__products {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        gap: 16px;
      }
      .hero-card--featured { order: -1; }

      /* Callout stacks */
      .callout__inner { grid-template-columns: 1fr; gap: 32px; }
      .callout__inner--reverse { direction: ltr; }
      .callout__visual { max-width: 280px; margin: 0 auto; }

      /* Verdict rows: 2-col with reason spanning full width */
      .verdict-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 4px 12px;
        padding: 14px 16px;
      }
      .verdict-use  { grid-column: 1; grid-row: 1; }
      .verdict-pick { grid-column: 2; grid-row: 1; white-space: nowrap; }
      .verdict-why  {
        grid-column: 1 / -1; grid-row: 2;
        border-top: 1px solid var(--border);
        padding-top: 8px; margin-top: 4px;
      }

      /* Scorecard: compact 3-column horizontal scroll (like reference site) */
      .sc-hint { display: flex; }
      .sc-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
      .scorecard .container { padding-left: calc(var(--container-px) * 0.5); padding-right: calc(var(--container-px) * 0.5); }
      .sc-scroll::-webkit-scrollbar { height: 3px; }
      .sc-scroll::-webkit-scrollbar-track { background: var(--bg-alt); }
      .sc-scroll::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 2px; }
      .sc-scroll-wrapper::after { opacity: 0; }
      .sc-scroll-wrapper.scrolled-end::after { opacity: 0 !important; }

      /* Compact grid: narrow label col + 3 equal product cols */
      .sc-header,
      .sc-row { grid-template-columns: 92px repeat(3, minmax(96px, 1fr)); min-width: 380px; }
      .sc-group__title { min-width: 380px; }

      /* Header: smaller images, hide taglines */
      .sc-header__col img { width: 44px; height: 44px; }
      .sc-header__col .name { font-size: .76rem; }
      .sc-header__col .price { font-size: .7rem; }
      .sc-header__col .pill { font-size: .56rem; padding: 2px 7px; }
      
      .sc-btn-br { display: inline; }
      .sc-buy-row { grid-template-columns: 92px repeat(3, minmax(96px, 1fr)); min-width: 380px; }
      .sc-buy-row__label { padding: 10px 8px; font-size: .64rem; }
      .sc-buy-row__cell { padding: 9px 6px; }
      .sc-buy-row__btn { padding: 6px 6px; font-size: .62rem; line-height: 1.3; }
      .sc-header__label { padding: 10px 8px; }

      /* Compact rows */
      .sc-row__label { font-size: .74rem; padding: 10px 8px; }
      .sc-cell { padding: 9px 8px; font-size: .78rem; }

      /* Bar: shorten track on mobile */
      .sc-cell .bar-track { height: 4px; }
      .sc-cell .bar-val { font-size: .76rem; }

      /* Chips: smaller padding so they fit in narrow cells */
      .chip { padding: 3px 7px; font-size: .7rem; }

      .faq-item__q { padding: 16px 18px; }
      .faq-item__a { padding: 0 18px; }
      .faq-item.open .faq-item__a { padding: 0 18px 16px; }
    }

    /* ══════════════════════════════════════════════════
       RESPONSIVE — Small mobile  (≤ 480px)
    ══════════════════════════════════════════════════ */
    @media (max-width: 480px) {
      .picks__grid  { grid-template-columns: 1fr; }
      .cta-cards    { grid-template-columns: 1fr; }
      .pick-card    { padding: 26px 20px; }
      .cta-card     { padding: 24px 18px; }
      .hero__products { max-width: 100%; }
      .hero-card__img { width: 120px; height: 120px; }
      .hero-card--featured .hero-card__img { width: 140px; height: 140px; }
      .callout__stats { gap: 10px; }
      .callout__stat { min-width: 88px; padding: 12px 14px; }
    }
