/* ==========================================================================
   Candy AI Review — Design System (dark UI)
   Palette matched to the official candy.ai interface:
   near-black canvas, charcoal panels, subtle grey borders,
   pink→coral primary gradient and an indigo/violet secondary accent.
   Independent review publication. Not affiliated with Candy AI.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — candy.ai accents */
  --c-candy: #e64274;          /* primary pink */
  --c-candy-2: #ff5c5c;        /* coral end of the CTA gradient */
  --c-candy-dark: #ff7ba1;     /* readable pink on dark surfaces */
  --c-candy-soft: rgba(230, 66, 116, .14);
  --c-candy-line: rgba(230, 66, 116, .34);

  --c-grape: #8b7bff;          /* violet accent, readable on dark */
  --c-grape-strong: #5740ff;
  --c-grape-soft: rgba(122, 102, 255, .15);
  --c-grape-line: rgba(122, 102, 255, .32);

  --c-amber: #f5a623;
  --c-amber-soft: rgba(245, 166, 35, .13);
  --c-amber-line: rgba(245, 166, 35, .30);

  --c-mint: #22c55e;
  --c-mint-soft: rgba(34, 197, 94, .12);
  --c-mint-line: rgba(34, 197, 94, .28);

  --c-rose: #ff5c5c;
  --c-rose-soft: rgba(255, 92, 92, .12);
  --c-rose-line: rgba(255, 92, 92, .28);

  /* Neutrals — candy.ai greys */
  --c-ink: #ffffff;            /* headings */
  --c-body: #c3c6cf;           /* body copy */
  --c-muted: #9ba1a6;          /* secondary copy */
  --c-faint: #7c828b;          /* captions */
  --c-line: #2a2a31;           /* borders */
  --c-line-soft: #23232a;
  --c-surface: #1a1a1e;        /* cards & panels */
  --c-surface-2: #1e1e24;      /* raised panels */
  --c-canvas: #121214;         /* page background */
  --c-canvas-alt: #202027;     /* alternate fill */

  /* Gradients */
  --g-candy: linear-gradient(120deg, #e64274 0%, #ff5c5c 100%);
  --g-candy-hover: linear-gradient(120deg, #ff5185 0%, #ff6f66 100%);
  --g-violet: linear-gradient(120deg, #5740ff 0%, #7a66ff 100%);
  --g-hero: linear-gradient(180deg, #141418 0%, #17151c 55%, #121214 100%);
  --g-soft: linear-gradient(135deg, #1c1c22 0%, #201a24 100%);

  /* Type */
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-display: "Sora", var(--f-sans);

  /* Space + shape */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .40), 0 2px 10px rgba(0, 0, 0, .26);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, .45), 0 14px 40px rgba(0, 0, 0, .32);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, .55);
  --glow-candy: 0 8px 24px rgba(230, 66, 116, .34);
  --glow-candy-lg: 0 14px 34px rgba(230, 66, 116, .46);

  --header-h: 68px;
  --wrap: 1200px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
  background: var(--c-canvas);
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-body);
  background: var(--c-canvas);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  color: var(--c-ink);
  line-height: 1.22;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.1rem); margin-top: 0; }
h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); }
h4 { font-size: 1.06rem; }

p { margin: 0 0 1.15em; }
a { color: var(--c-candy-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: .45em; }

strong { color: var(--c-ink); font-weight: 650; }

hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.5rem 0; }

::selection { background: rgba(230, 66, 116, .35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--c-candy-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-candy); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(16, 16, 19, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 26px rgba(0, 0, 0, .55); background: rgba(14, 14, 17, .94); }

.header-inner {
  display: flex; align-items: center; gap: 18px;
  height: var(--header-h);
  max-width: var(--wrap); margin: 0 auto; padding: 0 20px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--g-candy);
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 17px;
  box-shadow: var(--glow-candy);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover .brand-mark { transform: translateY(-1px) scale(1.04); box-shadow: var(--glow-candy-lg); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--f-display); font-weight: 750; font-size: 1.02rem; color: var(--c-ink); letter-spacing: -.02em; }
.brand-tag { font-size: .66rem; color: var(--c-faint); letter-spacing: .04em; text-transform: uppercase; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-list li { margin: 0; }
.nav-list a {
  position: relative;
  display: block; padding: 8px 11px; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 550; color: var(--c-muted); white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
.nav-list a::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 3px; height: 2px;
  border-radius: 2px; background: var(--g-candy);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-list a:hover { background: rgba(255, 255, 255, .06); color: #fff; text-decoration: none; }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: #fff; background: var(--c-candy-soft); }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; margin-left: 10px; }

/* CTA block inside the nav drawer — mobile only */
.nav-mobile-cta { display: none; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: 1px solid var(--c-line); border-radius: var(--r-sm);
  background: var(--c-surface); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  transition: border-color .18s ease, background .18s ease;
}
.nav-toggle:hover { border-color: var(--c-candy-line); background: var(--c-surface-2); }
.nav-toggle span {
  display: block; width: 19px; height: 2px; background: #fff; border-radius: 2px;
  position: relative; transition: background .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; min-height: 46px;
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--f-sans); font-size: .95rem; font-weight: 650; line-height: 1.2;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: transform .18s cubic-bezier(.2, .8, .3, 1), box-shadow .22s ease,
              background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(0) scale(.985); }

/* Shine sweep shared by every button */
.btn::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg); opacity: 0; pointer-events: none; z-index: -1;
}
.btn:hover::before { animation: btnShine .75s ease forwards; }
@keyframes btnShine {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

.btn i { transition: transform .22s ease; }
.btn:hover i { transform: translateX(2px); }

.btn-primary {
  background: var(--g-candy); color: #fff;
  box-shadow: var(--glow-candy);
}
.btn-primary:hover {
  background: var(--g-candy-hover); color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--glow-candy-lg);
}

.btn-violet { background: var(--g-violet); color: #fff; box-shadow: 0 8px 24px rgba(87, 64, 255, .34); }
.btn-violet:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 34px rgba(87, 64, 255, .46); }

.btn-dark { background: var(--c-surface-2); color: #fff; border-color: var(--c-line); }
.btn-dark:hover { transform: translateY(-2px); background: #26262e; color: #fff; border-color: var(--c-candy-line); }

.btn-ghost {
  background: var(--c-surface); color: #fff; border-color: var(--c-line); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--c-candy); color: #fff; transform: translateY(-2px);
  background: var(--c-surface-2); box-shadow: 0 8px 22px rgba(230, 66, 116, .22);
}

.btn-outline-light { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .22); }
.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .45);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 17px; min-height: 40px; font-size: .84rem; }
.btn-lg { padding: 16px 32px; min-height: 54px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

/* --------------------------------------------------------------------------
   5. Breadcrumbs, disclosure, badges
   -------------------------------------------------------------------------- */
.breadcrumbs { font-size: .8rem; color: var(--c-muted); padding: 14px 0 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 7px; }
.breadcrumbs li + li::before { content: "›"; color: var(--c-faint); }
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-candy-dark); }
.breadcrumbs [aria-current="page"] { color: #fff; font-weight: 550; }

.disclosure {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--c-amber-soft); border: 1px solid var(--c-amber-line);
  border-radius: var(--r-md); padding: 14px 18px;
  font-size: .87rem; color: #e3c48d;
  line-height: 1.6;
}
.disclosure i { color: var(--c-amber); margin-top: 3px; flex-shrink: 0; }
.disclosure a { color: #f7c76b; text-decoration: underline; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: .74rem; font-weight: 650; letter-spacing: .03em; text-transform: uppercase;
}
.badge-candy { background: var(--c-candy-soft); color: var(--c-candy-dark); border: 1px solid var(--c-candy-line); }
.badge-grape { background: var(--c-grape-soft); color: var(--c-grape); border: 1px solid var(--c-grape-line); }
.badge-mint  { background: var(--c-mint-soft); color: #4ade80; border: 1px solid var(--c-mint-line); }
.badge-amber { background: var(--c-amber-soft); color: #f5c26b; border: 1px solid var(--c-amber-line); }
.badge-rose  { background: var(--c-rose-soft); color: #ff8a8a; border: 1px solid var(--c-rose-line); }
.badge-light { background: rgba(255, 255, 255, .07); color: #d7dade; border: 1px solid rgba(255, 255, 255, .14); }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--c-candy-dark); margin: 0 0 .7rem;
}
.eyebrow-light { color: #ff9dbc; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--g-hero);
  color: var(--c-body);
  padding: 6px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 340px at 78% 6%, rgba(230, 66, 116, .20), transparent 62%),
              radial-gradient(620px 320px at 6% 92%, rgba(87, 64, 255, .16), transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero .breadcrumbs { color: var(--c-faint); }
.hero .breadcrumbs a { color: var(--c-faint); }
.hero .breadcrumbs a:hover { color: #fff; }
.hero .breadcrumbs [aria-current="page"] { color: #fff; }
.hero .breadcrumbs li + li::before { color: #55585f; }

.hero h1 {
  color: #fff;
  margin-top: 1rem;
  max-width: 20ch;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  text-wrap: balance;
}
.hero-lede { font-size: 1.05rem; color: var(--c-muted); max-width: 58ch; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: clamp(34px, 4.5vw, 60px);
  align-items: start;
  margin-top: 24px;
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }

.hero-points { display: grid; gap: 10px; margin: 22px 0 24px; max-width: 640px; }
.hero-point {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(100deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 14px 17px 14px 14px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero-point::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: currentColor;
}
.hero-point:hover { background: var(--c-surface-2); transform: translateY(-2px); }
.hero-point > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 10px;
  flex-shrink: 0;
}
.hero-point-good { color: var(--c-mint); border-color: rgba(34, 197, 94, .2); }
.hero-point-warn { color: var(--c-amber); border-color: rgba(245, 166, 35, .2); }
.hero-point-good > i { background: rgba(34, 197, 94, .12); }
.hero-point-warn > i { background: rgba(245, 166, 35, .12); }
.hero-point-good:hover { border-color: rgba(34, 197, 94, .42); }
.hero-point-warn:hover { border-color: rgba(245, 166, 35, .42); }
.hero-point-label {
  display: block;
  margin-bottom: 3px;
  font-size: .72rem;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
  color: currentColor;
  font-weight: 750;
}
.hero-point-text { display: block; color: #e5e7eb; font-size: .91rem; line-height: 1.48; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { font-size: .82rem; color: var(--c-faint); margin: 16px 0 0; }

/* --------------------------------------------------------------------------
   6b. Hero character showcase (right column — imagery only)
   -------------------------------------------------------------------------- */
.hero-showcase {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  align-self: start;
  width: 100%;
}
.hero-showcase.showcase-single {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 390px);
  justify-self: center;
}

.showcase-shot {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  transition: transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s ease, border-color .35s ease;
}
.showcase-shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  transition: transform .6s cubic-bezier(.2, .8, .3, 1);
}
.showcase-shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0) 45%, rgba(18, 18, 20, .72) 100%);
}
.showcase-shot:hover { transform: translateY(-6px); border-color: var(--c-candy-line); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(230, 66, 116, .18); }
.showcase-shot:hover img { transform: scale(1.06); }

/* Balanced portrait pair: aligned at the top and tall enough to match the copy column. */
.hero-showcase .shot-a,
.hero-showcase .shot-b { height: 520px; margin-top: 0; }
.hero-showcase.showcase-single .shot-a { height: 520px; margin-top: 0; }

.showcase-tag {
  position: absolute; left: 14px; bottom: 13px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(18, 18, 20, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-size: .72rem; font-weight: 600; color: #fff; letter-spacing: .02em;
}
.showcase-tag i { color: var(--c-candy-dark); font-size: .7rem; }
.showcase-note {
  grid-column: 1 / -1; margin: 4px 0 0;
  font-size: .74rem; line-height: 1.5; color: var(--c-faint);
}

/* Legacy score card (kept for any page that still uses it) */
.score-card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: 26px; color: var(--c-body);
}
.score-card-head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--c-line); }
.score-logo {
  width: 50px; height: 50px; border-radius: 15px; background: var(--g-candy);
  display: grid; place-items: center; color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 20px;
  flex-shrink: 0;
}
.score-card-head h2, .score-card-head .score-title {
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; color: var(--c-ink); margin: 0; line-height: 1.25;
}
.score-card-head p { margin: 2px 0 0; font-size: .8rem; color: var(--c-muted); }
.score-value { display: flex; align-items: baseline; gap: 10px; margin: 20px 0 6px; }
.score-number { font-family: var(--f-display); font-size: 3.3rem; font-weight: 800; line-height: 1; color: var(--c-ink); letter-spacing: -.04em; }
.score-max { font-size: 1.15rem; color: var(--c-faint); font-weight: 600; }
.score-label { font-size: .82rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 650; margin: 0 0 14px; }
.score-bar { height: 9px; border-radius: 999px; background: var(--c-canvas-alt); overflow: hidden; margin-bottom: 20px; }
.score-bar span { display: block; height: 100%; border-radius: 999px; background: var(--g-candy); width: 87%; }
.score-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.score-list li { display: flex; gap: 10px; align-items: flex-start; margin: 0; font-size: .9rem; line-height: 1.5; }
.score-list i { margin-top: 4px; flex-shrink: 0; font-size: .82rem; }
.score-list .ico-good { color: var(--c-mint); }
.score-list .ico-bad { color: var(--c-rose); }
.score-list .ico-info { color: var(--c-grape); }
.score-price {
  background: var(--c-canvas-alt); border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 13px 16px; margin-bottom: 18px; font-size: .88rem;
}
.score-price strong { display: block; font-family: var(--f-display); font-size: 1.35rem; color: var(--c-ink); }
.score-price span { color: var(--c-muted); }
.score-updated { font-size: .78rem; color: var(--c-faint); text-align: center; margin: 14px 0 0; }

/* --------------------------------------------------------------------------
   7. Page layout: centered editorial content
   -------------------------------------------------------------------------- */
.page-body { padding: 44px 0 64px; }
.layout { display: block; width: 100%; max-width: 1060px; margin-inline: auto; }
.layout > *, .article { min-width: 0; }
.article > section > p { max-width: 80ch; }

/* User-supplied character imagery: stable crops, no simulated product UI. */
.hero-imagery { margin: 0 0 20px; }
.hero-imagery > img, .portrait-pair img {
  display: block; width: 100%; height: 230px; object-fit: cover;
  object-position: center 25%; border-radius: 13px; background: var(--c-canvas-alt);
}
.portrait-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.hero-imagery figcaption { font-size: .72rem; line-height: 1.5; color: var(--c-muted); margin-top: 8px; }
.imagery-subtle > img { height: 170px; object-position: center 28%; filter: saturate(.7); }

.editorial-gallery { margin: 24px 0 30px; }
.editorial-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.editorial-gallery img {
  width: 100%; height: 340px; object-fit: cover; object-position: center 22%;
  border-radius: 16px; background: var(--c-canvas-alt); border: 1px solid var(--c-line);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.editorial-gallery img:hover { transform: translateY(-4px); border-color: var(--c-candy-line); box-shadow: var(--shadow-md); }
.editorial-gallery figcaption { font-size: .83rem; color: var(--c-muted); margin-top: 12px; line-height: 1.6; }

.publication-image {
  display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 22px; margin: 22px 0 30px;
  padding: 16px; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 16px;
}
.publication-image img { width: 130px; height: 140px; object-fit: cover; object-position: center 25%; border-radius: 10px; filter: saturate(.75); }
.publication-image figcaption { font-size: .85rem; color: var(--c-muted); }

@media (max-width: 600px) {
  .hero-imagery > img, .portrait-pair img { height: 220px; }
  .imagery-subtle > img { height: 160px; }
  .editorial-gallery-grid { gap: 8px; }
  .editorial-gallery img { height: 185px; border-radius: 10px; }
  .publication-image { grid-template-columns: 90px 1fr; gap: 14px; padding: 12px; }
  .publication-image img { width: 90px; height: 120px; }
}

/* --------------------------------------------------------------------------
   8. Article content
   -------------------------------------------------------------------------- */
.article > section { margin-bottom: 46px; scroll-margin-top: calc(var(--header-h) + 20px); }
.article > section:last-child { margin-bottom: 0; }
.article h2 { margin-bottom: .7em; }
.article h3 { margin-top: 1.8em; }
.article p, .article li { color: var(--c-body); }
.article ul li::marker { color: var(--c-candy-dark); }
.article ol li::marker { color: var(--c-grape); font-weight: 700; }

.lead { font-size: 1.12rem; line-height: 1.65; color: #e4e6ea; }

.section-intro { max-width: 70ch; }

/* Cards */
.card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.card-hover { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-candy-line); background: var(--c-surface-2); }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); }

/* Feature card */
.feature-card { display: flex; flex-direction: column; gap: 10px; }
.feature-icon {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.02rem; flex-shrink: 0;
}
.fi-candy { background: var(--c-candy-soft); color: var(--c-candy-dark); }
.fi-grape { background: var(--c-grape-soft); color: var(--c-grape); }
.fi-mint  { background: var(--c-mint-soft); color: #4ade80; }
.fi-amber { background: var(--c-amber-soft); color: #f5c26b; }
.feature-card h3 { margin: 0; font-size: 1.04rem; }
.feature-card p { margin: 0; font-size: .92rem; color: var(--c-muted); line-height: 1.6; }

/* Icon list grid */
.icon-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.icon-list li {
  display: flex; gap: 10px; align-items: flex-start; margin: 0;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-sm);
  padding: 11px 14px; font-size: .9rem; line-height: 1.5;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.icon-list li:hover { border-color: #35353e; background: var(--c-surface-2); transform: translateY(-2px); }
.icon-list i { color: var(--c-candy-dark); margin-top: 5px; font-size: .72rem; flex-shrink: 0; }
.icon-list.list-mint i { color: var(--c-mint); }
.icon-list.list-grape i { color: var(--c-grape); }

/* Highlight strip */
.highlight-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px;
  background: var(--c-line); border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden;
}
.highlight-strip > div { background: var(--c-surface); padding: 20px 18px; text-align: center; transition: background .2s ease; }
.highlight-strip > div:hover { background: var(--c-surface-2); }
.highlight-strip .hs-value {
  display: block; font-family: var(--f-display); font-size: 1.7rem; font-weight: 780;
  color: var(--c-ink); letter-spacing: -.03em; line-height: 1.15;
}
.highlight-strip .hs-label { display: block; font-size: .8rem; color: var(--c-muted); margin-top: 5px; line-height: 1.4; }

/* Callouts */
.callout {
  border-radius: var(--r-md); padding: 18px 20px; border: 1px solid; display: flex; gap: 14px; align-items: flex-start;
  margin: 0 0 1.3em;
}
.callout i { margin-top: 4px; flex-shrink: 0; font-size: 1.02rem; }
.callout p:last-child { margin-bottom: 0; }
.callout-title { display: block; font-family: var(--f-display); font-weight: 700; color: var(--c-ink); margin-bottom: 5px; }
.callout-info { background: var(--c-grape-soft); border-color: var(--c-grape-line); }
.callout-info > i { color: var(--c-grape); }
.callout-warn { background: var(--c-amber-soft); border-color: var(--c-amber-line); }
.callout-warn > i { color: var(--c-amber); }
.callout-danger { background: var(--c-rose-soft); border-color: var(--c-rose-line); }
.callout-danger > i { color: var(--c-rose); }
.callout-good { background: var(--c-mint-soft); border-color: var(--c-mint-line); }
.callout-good > i { color: var(--c-mint); }

/* Quick verdict */
.verdict {
  background: var(--g-soft); border: 1px solid var(--c-line); border-radius: var(--r-xl);
  padding: 28px; display: grid; grid-template-columns: 168px minmax(0, 1fr); gap: 28px; align-items: start;
  box-shadow: var(--shadow-sm);
}
.verdict-score { text-align: center; }
.verdict-score .vs-num {
  font-family: var(--f-display); font-size: 3.6rem; font-weight: 800;
  background: var(--g-candy); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; letter-spacing: -.04em; display: block;
}
.verdict-score .vs-max { font-size: 1rem; color: var(--c-faint); font-weight: 600; }
.verdict-score .vs-label {
  display: block; margin-top: 8px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 700;
}
.verdict-stars { color: var(--c-amber); font-size: .95rem; margin-top: 10px; letter-spacing: 2px; }
.verdict-body > p:first-child { margin-top: 0; }
.verdict-body > *:last-child { margin-bottom: 0; }

.split-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin: 20px 0 0; }
.split-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 18px; }
.split-card h4 { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: .95rem; }
.split-card p { margin: 0; font-size: .92rem; color: var(--c-muted); line-height: 1.55; }
.split-card.is-good h4 i { color: var(--c-mint); }
.split-card.is-warn h4 i { color: var(--c-amber); }
.split-card.is-good { border-left: 3px solid var(--c-mint); }
.split-card.is-warn { border-left: 3px solid var(--c-amber); }

/* Pros / cons */
.proscons { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pc-panel { border-radius: var(--r-lg); border: 1px solid; padding: 24px; }
.pc-pros { background: var(--c-mint-soft); border-color: var(--c-mint-line); }
.pc-cons { background: var(--c-rose-soft); border-color: var(--c-rose-line); }
.pc-panel h3 { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; font-size: 1.12rem; }
.pc-pros h3 i { color: var(--c-mint); }
.pc-cons h3 i { color: var(--c-rose); }
.pc-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.pc-panel li { margin: 0; padding-left: 26px; position: relative; font-size: .93rem; line-height: 1.55; }
.pc-panel li strong { display: block; color: var(--c-ink); margin-bottom: 2px; }
.pc-panel li::before {
  position: absolute; left: 0; top: 1px;
  font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .82rem;
}
.pc-pros li::before { content: "\f058"; color: var(--c-mint); }
.pc-cons li::before { content: "\f057"; color: var(--c-rose); }

/* Pricing cards */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 20px; align-items: stretch; }
.plan {
  position: relative; background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: 26px 22px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-candy-line); }
.plan-featured { border: 1px solid var(--c-candy); box-shadow: var(--shadow-md), 0 0 0 1px rgba(230, 66, 116, .22); }
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--g-candy); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 15px; border-radius: 999px;
  white-space: nowrap; box-shadow: var(--glow-candy);
}
.plan-name { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--c-ink); margin: 0 0 4px; }
.plan-sub { font-size: .82rem; color: var(--c-muted); margin: 0 0 16px; }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 4px; }
.plan-price .pp-num { font-family: var(--f-display); font-size: 2.5rem; font-weight: 800; color: var(--c-ink); letter-spacing: -.04em; line-height: 1; }
.plan-price .pp-per { font-size: .88rem; color: var(--c-muted); font-weight: 600; }
.plan-billed {
  font-size: .84rem; color: var(--c-body); background: var(--c-canvas-alt);
  border: 1px solid var(--c-line); border-radius: var(--r-sm); padding: 8px 12px; margin: 12px 0 16px;
}
.plan-billed strong { color: var(--c-ink); }
.plan ul { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; }
.plan ul li { margin: 0; display: flex; gap: 9px; align-items: flex-start; font-size: .89rem; line-height: 1.5; }
.plan ul li i { color: var(--c-mint); margin-top: 5px; font-size: .74rem; flex-shrink: 0; }
.plan .btn { margin-top: auto; }
.plan-saving { position: absolute; top: 18px; right: 18px; }

/* Tables */
.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--c-line); border-radius: var(--r-lg); background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}
.table-scroll-hint { font-size: .78rem; color: var(--c-faint); margin: 8px 0 0; display: none; }
table.data { width: 100%; border-collapse: collapse; min-width: 540px; font-size: .92rem; }
table.data caption { caption-side: top; text-align: left; padding: 16px 18px 0; font-size: .84rem; color: var(--c-muted); }
table.data th, table.data td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--c-line-soft); color: var(--c-body); }
table.data thead th {
  background: var(--c-canvas-alt); color: var(--c-ink); font-family: var(--f-display);
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; white-space: nowrap;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr { transition: background .16s ease; }
table.data tbody tr:hover { background: var(--c-surface-2); }
table.data .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
table.data .row-best { background: var(--c-candy-soft); }
table.data .row-best:hover { background: rgba(230, 66, 116, .2); }
table.data .row-best td { font-weight: 600; color: #fff; }

/* Token cost boxes */
.token-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.token-box {
  background: var(--c-surface); border: 1px solid var(--c-line); border-top: 3px solid var(--c-grape-strong);
  border-radius: var(--r-md); padding: 20px; transition: transform .2s ease, box-shadow .2s ease;
}
.token-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.token-box .tb-cost {
  font-family: var(--f-display); font-size: 1.85rem; font-weight: 800; color: var(--c-grape);
  letter-spacing: -.03em; line-height: 1.1; display: block;
}
.token-box .tb-unit { font-size: .84rem; color: var(--c-muted); display: block; margin-top: 3px; }
.token-box h4 { margin: 0 0 8px; font-size: .95rem; }
.token-box .tb-note { font-size: .8rem; color: var(--c-faint); margin: 10px 0 0; line-height: 1.5; }

/* Equation / two-layer visual */
.equation { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; }
.equation-op {
  font-family: var(--f-display); font-size: 1.6rem; font-weight: 800; color: var(--c-candy-dark);
  width: 44px; height: 44px; border-radius: 50%; background: var(--c-candy-soft);
  display: grid; place-items: center; border: 1px solid var(--c-candy-line);
}
.eq-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 22px; height: 100%; }
.eq-card h4 { margin: 0 0 8px; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.eq-card p { margin: 0; font-size: .89rem; color: var(--c-muted); line-height: 1.6; }
.eq-card.eq-sub { border-top: 3px solid var(--c-candy); }
.eq-card.eq-tok { border-top: 3px solid var(--c-grape-strong); }

/* Step timeline */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 17px; top: 12px; bottom: 12px; width: 2px; background: var(--c-line);
}
.timeline > li { position: relative; padding: 0 0 22px 52px; margin: 0; }
.timeline > li:last-child { padding-bottom: 0; }
.timeline .tl-num {
  position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--g-candy); color: #fff; display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 750; font-size: .92rem;
  box-shadow: var(--glow-candy);
}
.timeline.tl-grape .tl-num { background: var(--g-violet); box-shadow: 0 6px 18px rgba(87, 64, 255, .34); }
.timeline h4 { margin: 5px 0 6px; font-size: 1.02rem; }
.timeline p { margin: 0 0 .6em; font-size: .93rem; color: var(--c-muted); }
.timeline p:last-child { margin-bottom: 0; }
.timeline ul { margin: 8px 0 0; font-size: .9rem; }

/* Prompt box */
.prompt-box {
  background: var(--c-surface-2); border: 1px solid var(--c-line); border-radius: var(--r-md);
  padding: 18px 20px; margin: 0 0 1.2em; border-left: 3px solid var(--c-candy);
}
.prompt-box .pb-label {
  display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-candy-dark); font-weight: 700; margin-bottom: 8px;
}
.prompt-box p, .prompt-box q {
  color: #e2e4e9; font-size: .94rem; line-height: 1.62; margin: 0; font-style: normal; display: block;
}
.prompt-box .pb-why { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .1); color: var(--c-muted); font-size: .84rem; }

/* Prompt formula */
.formula {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  background: var(--c-surface); border: 1px dashed #3a3a44; border-radius: var(--r-md); padding: 18px;
}
.formula .fx {
  background: var(--c-grape-soft); color: var(--c-grape); border-radius: 999px;
  padding: 7px 14px; font-size: .85rem; font-weight: 650; white-space: nowrap;
  border: 1px solid var(--c-grape-line);
}
.formula .fp { color: var(--c-faint); font-weight: 700; }

/* Deal status card */
.deal-card {
  background: var(--c-surface); border: 1px solid var(--c-candy-line); border-radius: var(--r-xl);
  padding: 26px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.deal-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--g-candy);
}
.deal-head { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.deal-head h3 { margin: 0; font-size: 1.2rem; }
.deal-rows { display: grid; gap: 12px; margin-bottom: 20px; }
.deal-row { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; padding-bottom: 11px; border-bottom: 1px dashed var(--c-line); }
.deal-row:last-child { border-bottom: 0; padding-bottom: 0; }
.deal-row dt { color: var(--c-muted); margin: 0; }
.deal-row dd { margin: 0; color: var(--c-ink); font-weight: 650; text-align: right; }
.deal-big {
  text-align: center; background: var(--c-candy-soft); border: 1px solid var(--c-candy-line);
  border-radius: var(--r-lg); padding: 20px; margin-bottom: 20px;
}
.deal-big .db-pct { font-family: var(--f-display); font-size: 3rem; font-weight: 850; color: var(--c-candy-dark); line-height: 1; letter-spacing: -.04em; }
.deal-big .db-text { display: block; font-size: .9rem; color: #f0b6c9; margin-top: 6px; font-weight: 600; }

/* Internal link cards */
.link-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.link-card {
  display: flex; flex-direction: column; gap: 7px;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg);
  padding: 20px; text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.link-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--c-candy-line); background: var(--c-surface-2); text-decoration: none;
}
.link-card .lc-icon {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: var(--c-candy-soft); color: var(--c-candy-dark); font-size: .95rem;
  transition: background .2s ease, color .2s ease;
}
.link-card:hover .lc-icon { background: var(--g-candy); color: #fff; }
.link-card .lc-title { font-family: var(--f-display); font-weight: 700; color: var(--c-ink); font-size: 1rem; }
.link-card .lc-desc { font-size: .86rem; color: var(--c-muted); line-height: 1.55; }
.link-card .lc-more { font-size: .84rem; color: var(--c-candy-dark); font-weight: 650; margin-top: 2px; }

/* Inline internal link */
.inline-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-candy-soft); color: var(--c-candy-dark); border: 1px solid var(--c-candy-line);
  padding: 10px 18px; border-radius: 999px; font-weight: 650; font-size: .92rem;
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.inline-link:hover { background: var(--g-candy); color: #fff; text-decoration: none; transform: translateX(3px); }

/* Affiliate CTA block */
.cta-block {
  background: linear-gradient(140deg, #1a1620 0%, #201822 55%, #16161a 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl); padding: 36px; color: var(--c-body);
  position: relative; overflow: hidden; text-align: center;
}
.cta-block::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 240px at 78% 10%, rgba(230, 66, 116, .24), transparent 62%),
              radial-gradient(460px 220px at 12% 90%, rgba(87, 64, 255, .18), transparent 60%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2, .cta-block h3 { color: #fff; margin: 0 0 10px; }
.cta-block p { color: var(--c-muted); max-width: 60ch; margin: 0 auto 20px; font-size: .98rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-fine { font-size: .78rem; color: var(--c-faint); margin: 16px 0 0; }

.cta-inline {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  background: var(--c-surface); border: 1px solid var(--c-line); border-left: 3px solid var(--c-candy);
  border-radius: var(--r-lg); padding: 20px 24px; box-shadow: var(--shadow-sm);
}
.cta-inline p { margin: 0; font-size: .95rem; }
.cta-inline strong { display: block; font-family: var(--f-display); font-size: 1.05rem; color: var(--c-ink); margin-bottom: 2px; }

/* FAQ accordion */
.faq { display: grid; gap: 10px; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease; }
.faq-item:hover { border-color: #35353e; }
.faq-item.is-open { border-color: var(--c-candy-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 17px 20px; font-family: var(--f-display); font-size: 1rem; font-weight: 650; color: var(--c-ink);
  line-height: 1.45; transition: background .18s ease;
}
.faq-q:hover { background: var(--c-surface-2); }
.faq-q .faq-ico {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--c-candy-soft);
  color: var(--c-candy-dark); display: grid; place-items: center; font-size: .76rem; transition: transform .22s ease, background .22s ease, color .22s ease;
}
.faq-q:hover .faq-ico { background: var(--g-candy); color: #fff; }
.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); background: var(--g-candy); color: #fff; }
.faq-a { display: none; padding: 0 20px 18px; font-size: .95rem; color: var(--c-body); }
.faq-a > *:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-a { display: block; animation: fadeSlide .22s ease; }

@keyframes fadeSlide { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* Data grid (safety) */
.data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 14px; }
.data-cat { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 18px; }
.data-cat h4 { display: flex; align-items: center; gap: 9px; margin: 0 0 10px; font-size: .95rem; }
.data-cat h4 i { color: var(--c-grape); }
.data-cat ul { list-style: none; margin: 0; padding: 0; }
.data-cat li { font-size: .87rem; color: var(--c-muted); margin: 0 0 5px; padding-left: 14px; position: relative; }
.data-cat li::before { content: "•"; position: absolute; left: 0; color: var(--c-faint); }

/* Checklist */
.checklist { list-style: none; margin: 0; padding: 0; counter-reset: chk; display: grid; gap: 10px; }
.checklist li {
  counter-increment: chk; position: relative; padding: 14px 18px 14px 52px; margin: 0;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-md);
  font-size: .93rem; line-height: 1.55;
}
.checklist li::before {
  content: counter(chk); position: absolute; left: 15px; top: 13px;
  width: 24px; height: 24px; border-radius: 50%; background: var(--c-mint-soft); color: #4ade80;
  display: grid; place-items: center; font-size: .78rem; font-weight: 750; font-family: var(--f-display);
}

/* Compare (two column) */
.compare { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.compare-col { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 24px; }
.compare-col h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: 1.08rem; }
.compare-col.is-a { border-top: 3px solid var(--c-candy); }
.compare-col.is-b { border-top: 3px solid var(--c-grape-strong); }
.compare-col.is-a h3 i { color: var(--c-candy-dark); }
.compare-col.is-b h3 i { color: var(--c-grape); }
.compare-col ul { margin: 0; padding-left: 1.15em; }
.compare-col li { font-size: .91rem; color: var(--c-muted); }

/* Profile / example cards */
.profile-card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.profile-head { background: var(--g-soft); padding: 20px 22px; border-bottom: 1px solid var(--c-line); }
.profile-head h3 { margin: 0 0 4px; font-size: 1.18rem; }
.profile-head .ph-meta { font-size: .82rem; color: var(--c-muted); }
.profile-body { padding: 20px 22px; display: grid; gap: 12px; }
.profile-row { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 12px; font-size: .89rem; }
.profile-row dt { color: var(--c-faint); font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 700; margin: 2px 0 0; }
.profile-row dd { margin: 0; color: var(--c-body); line-height: 1.55; }
.profile-why {
  background: var(--c-mint-soft); border-top: 1px solid var(--c-mint-line); padding: 16px 22px;
  font-size: .88rem; color: #86e0a8; line-height: 1.6;
}
.profile-why strong { color: #b7f0cd; }

/* Numbered mini-steps */
.mini-steps { list-style: none; counter-reset: ms; margin: 0; padding: 0; display: grid; gap: 12px; }
.mini-steps li { counter-increment: ms; position: relative; padding-left: 44px; margin: 0; font-size: .94rem; line-height: 1.6; }
.mini-steps li::before {
  content: counter(ms); position: absolute; left: 0; top: -1px;
  width: 30px; height: 30px; border-radius: 9px; background: var(--c-grape-soft); color: var(--c-grape);
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 750; font-size: .85rem;
}
.mini-steps li strong { display: block; color: var(--c-ink); }

/* Problem/fix list */
.fixlist { display: grid; gap: 12px; }
.fix {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 16px 18px;
}
.fix h4 { margin: 0; font-size: .95rem; display: flex; align-items: center; gap: 9px; }
.fix h4 i { color: var(--c-rose); font-size: .85rem; }
.fix p { margin: 0; font-size: .9rem; color: var(--c-muted); line-height: 1.6; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  background: rgba(16, 16, 19, .96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: 12px; box-shadow: 0 -6px 22px rgba(0, 0, 0, .55);
  transform: translateY(110%); transition: transform .28s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .sc-text { flex: 1; min-width: 0; }
.sticky-cta .sc-title { display: block; font-family: var(--f-display); font-weight: 700; font-size: .92rem; color: var(--c-ink); line-height: 1.25; }
.sticky-cta .sc-sub { display: block; font-size: .76rem; color: var(--c-muted); }

/* Legal / simple page */
.simple-page { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-sm); }
.simple-page h2 { font-size: 1.35rem; margin-top: 2em; }
.simple-page h2:first-of-type { margin-top: 1em; }

/* Contact form */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 650; color: var(--c-ink); margin-bottom: 6px; font-size: .92rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 15px; font-family: var(--f-sans); font-size: .95rem; color: #fff;
  background: var(--c-canvas-alt); border: 1px solid var(--c-line); border-radius: var(--r-sm);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--c-faint); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  background: var(--c-surface-2); border-color: var(--c-candy); outline: none; box-shadow: 0 0 0 3px var(--c-candy-soft);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-hint { font-size: .8rem; color: var(--c-faint); margin: 5px 0 0; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--r-md); font-size: .92rem; display: none; }
.form-status.is-shown { display: block; }
.form-status.is-ok { background: var(--c-mint-soft); border: 1px solid var(--c-mint-line); color: #86e0a8; }
.form-status.is-err { background: var(--c-rose-soft); border: 1px solid var(--c-rose-line); color: #ff9c9c; }

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #0d0d10; color: var(--c-muted); padding: 52px 0 28px; margin-top: 20px; border-top: 1px solid var(--c-line); }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: var(--c-faint); }
.footer-about { font-size: .89rem; line-height: 1.65; margin: 14px 0 0; max-width: 42ch; color: var(--c-muted); }
.footer-col h3 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col li { margin: 0; }
.footer-col a { color: var(--c-muted); font-size: .89rem; transition: color .18s ease, padding-left .18s ease; }
.footer-col a:hover { color: #fff; padding-left: 3px; text-decoration: none; }
.footer-bottom { padding-top: 22px; display: grid; gap: 12px; font-size: .81rem; line-height: 1.6; }
.footer-disclaimer { color: #cbced4; font-weight: 600; }
.footer-legal { color: var(--c-faint); }

/* --------------------------------------------------------------------------
   10. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-list a { padding: 8px 8px; font-size: .82rem; }
  .nav-list a::after { left: 8px; right: 8px; }
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); gap: 34px; }
  .hero-showcase .shot-a, .hero-showcase .shot-b { height: 480px; }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--c-canvas); padding: 18px 20px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .26s ease; visibility: hidden;
    border-top: 1px solid var(--c-line); margin-left: 0;
  }
  .main-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { padding: 14px 14px; font-size: 1rem; border-radius: var(--r-md); min-height: 48px; display: flex; align-items: center; }
  .nav-list a::after { display: none; }
  .header-cta { display: none; }
  .nav-mobile-cta { display: block; margin-top: 18px; }
  .nav-mobile-note { font-size: .8rem; color: var(--c-faint); text-align: center; margin: 14px 0 0; }

  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .hero h1 { max-width: 22ch; }
  .hero-showcase .shot-b { margin-top: 0; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .equation { grid-template-columns: minmax(0, 1fr); }
  .equation-op { margin: 0 auto; }
  .table-scroll-hint { display: block; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { padding-bottom: 44px; }
  .hero-showcase { gap: 10px; }
  .hero-showcase .shot-a, .hero-showcase .shot-b { height: 280px; border-radius: var(--r-lg); }
  .hero-showcase.showcase-single {
    width: min(100%, 360px);
  }
  .hero-showcase.showcase-single .shot-a { height: 400px; }
  .page-body { padding: 32px 0 48px; }
  .article > section { margin-bottom: 38px; }
  .verdict { grid-template-columns: minmax(0, 1fr); gap: 20px; padding: 22px; text-align: left; }
  .verdict-score { text-align: left; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .verdict-score .vs-label { margin-top: 0; }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .cta-block { padding: 26px 20px; }
  .simple-page { padding: 24px 20px; }
  .card { padding: 20px; }
  .cta-inline { flex-direction: column; align-items: stretch; }
  .cta-inline .btn { width: 100%; }
  .profile-row { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .score-card { padding: 22px; }
  .brand-tag { display: none; }
}

@media (max-width: 400px) {
  .btn { padding: 12px 18px; font-size: .9rem; }
  .sticky-cta .sc-sub { display: none; }
  .hero-showcase .shot-a, .hero-showcase .shot-b { height: 230px; }
}

/* --------------------------------------------------------------------------
   11. Motion preferences & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .card-hover:hover, .btn:hover, .plan:hover, .link-card:hover, .showcase-shot:hover { transform: none; }
  .btn:hover::before { animation: none; }
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .site-footer, .sticky-cta, .cta-block, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
