/* ==========================================================================
   GoLove AI Review — Independent review publication
   Dark theme aligned to the official goloveai.com UI:
   near-black canvas, neon magenta accent, violet secondary, pill buttons.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — sampled from the official GoLove UI */
  --brand: #e51a75;
  --brand-bright: #ff2a85;
  --brand-deep: #b31259;
  --violet: #8d1fff;
  --violet-soft: #a655ff;

  /* Brand washes on dark */
  --brand-wash: rgba(229, 26, 117, .10);
  --brand-line: rgba(229, 26, 117, .32);
  --violet-wash: rgba(141, 31, 255, .10);
  --violet-line: rgba(141, 31, 255, .30);

  /* Canvas + panels */
  --bg: #0a090b;
  --bg-deep: #060507;
  --surface: #131118;
  --surface-alt: #17151d;
  --surface-tint: #1d1a24;
  --surface-hi: #232030;

  /* Lines */
  --line: #262330;
  --line-soft: #1e1b26;
  --line-strong: #34303f;

  /* Text */
  --text: #f3f1f6;
  --text-soft: #cfcbd8;
  --text-muted: #a5a1b0;
  --text-dim: #78737f;

  /* Semantic (dark-tuned) */
  --good: #3ddc97;
  --good-wash: rgba(61, 220, 151, .10);
  --good-line: rgba(61, 220, 151, .30);
  --warn: #ffc555;
  --warn-wash: rgba(255, 197, 85, .10);
  --warn-line: rgba(255, 197, 85, .30);
  --bad: #ff7b7b;
  --bad-wash: rgba(255, 123, 123, .10);
  --bad-line: rgba(255, 123, 123, .30);
  --info: #7fb0ff;
  --info-wash: rgba(127, 176, 255, .10);
  --info-line: rgba(127, 176, 255, .30);

  /* Layout */
  --container: 1200px;
  --measure: 820px;
  --header-h: 68px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  /* Shadows / glows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .45);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .5);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, .62);
  --glow-brand: 0 8px 26px rgba(229, 26, 117, .40);
  --glow-brand-lg: 0 12px 38px rgba(229, 26, 117, .55);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 42, 133, .3);
  transition: color .16s ease, border-color .16s ease;
}
a:hover { color: #ff5ca1; border-bottom-color: #ff5ca1; }

:focus-visible {
  outline: 2px solid var(--violet-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); letter-spacing: -0.035em; }
h2 {
  font-size: clamp(1.5rem, 2.9vw, 2.05rem);
  margin-top: 2.4em;
  letter-spacing: -0.03em;
}
h3 { font-size: clamp(1.15rem, 1.9vw, 1.35rem); margin-top: 1.8em; }
h4 { font-size: 1.05rem; margin-top: 1.5em; }

p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.3em; padding-left: 1.35em; }
li { margin-bottom: .5em; }
li::marker { color: var(--brand); }
strong { color: var(--text); font-weight: 650; }
em { color: var(--text-soft); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--violet-soft);
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 11, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-stuck {
  background: rgba(10, 9, 11, .94);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  flex-shrink: 0;
  border: 0;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--violet) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -.04em;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(229, 26, 117, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover .brand-mark {
  transform: translateY(-1px) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(229, 26, 117, .5);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 750; font-size: 1.02rem; letter-spacing: -.03em; }
.brand-tag {
  font-size: .68rem;
  color: var(--text-dim);
  font-weight: 500;
}

.primary-nav { margin-left: auto; min-width: 0; }
.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  position: relative;
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 550;
  color: var(--text-muted);
  white-space: nowrap;
  border: 0;
  transition: color .16s ease, background .16s ease;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s cubic-bezier(.2, .8, .3, 1);
}
.nav-list a:hover { color: var(--text); background: rgba(255, 255, 255, .04); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: var(--brand-bright); }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background .2s ease;
}
.nav-toggle:hover { border-color: var(--brand-line); background: var(--surface-tint); }
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: background .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s 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 { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* The in-drawer CTA is for the mobile menu only */
.nav-cta-mobile { display: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 650;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s cubic-bezier(.2, .8, .3, 1),
              box-shadow .25s ease,
              background .25s ease,
              border-color .25s ease,
              color .2s ease;
}
.btn i { transition: transform .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .05s; }

/* sheen sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg,
    transparent 25%, rgba(255, 255, 255, .28) 48%, transparent 68%);
  transform: translateX(-130%);
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.btn:hover::after { transform: translateX(130%); }

/* Primary — neon magenta → violet */
.btn-primary {
  background: linear-gradient(120deg, var(--brand) 0%, #f02a8a 55%, var(--violet) 130%);
  background-size: 160% 100%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: var(--glow-brand);
  border-color: rgba(255, 255, 255, .08);
}
.btn-primary:hover {
  color: #fff;
  background-position: 100% 50%;
  box-shadow: var(--glow-brand-lg);
}
.btn-primary:hover i.fa-arrow-right { transform: translateX(4px); }

/* Secondary — glass outline */
.btn-secondary {
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  color: #fff;
  border-color: var(--brand-line);
  background: rgba(229, 26, 117, .12);
  box-shadow: 0 8px 24px rgba(229, 26, 117, .18);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-bright);
  border-color: var(--brand-line);
}
.btn-ghost:hover {
  background: var(--brand-wash);
  color: #fff;
  box-shadow: 0 8px 22px rgba(229, 26, 117, .2);
}

.btn-sm { padding: 9px 17px; font-size: .85rem; }
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.header-cta { flex-shrink: 0; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 16px 0 0;
  font-size: .82rem;
  color: var(--text-dim);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: '/'; color: var(--line-strong); }
.breadcrumbs a { color: var(--text-muted); border: 0; }
.breadcrumbs a:hover { color: var(--brand-bright); }
.breadcrumbs [aria-current="page"] { color: var(--text-soft); font-weight: 550; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 28px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(46% 55% at 18% 18%, rgba(229, 26, 117, .22) 0%, transparent 70%),
    radial-gradient(42% 50% at 84% 8%, rgba(141, 31, 255, .20) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr);
  gap: 52px;
  align-items: center;
  margin-top: 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-bright);
  background: var(--brand-wash);
  border: 1px solid var(--brand-line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: .45em; }
.hero-lede {
  font-size: 1.13rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 1.5em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: .85rem;
  color: var(--text-dim);
}
.hero-meta strong { color: var(--text-soft); font-weight: 600; }

.hero-facts {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.hero-facts li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 0;
  font-size: .96rem;
  color: var(--text-muted);
}
.hero-facts .fi { color: var(--brand); margin-top: .32em; font-size: .9rem; }

/* ---------- Hero media collage (model images) ---------- */
.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: -14% -10%;
  background: radial-gradient(58% 48% at 50% 42%, rgba(229, 26, 117, .30), transparent 72%);
  filter: blur(34px);
  z-index: 0;
  pointer-events: none;
}
.hero-media--single {
  display: block;
  width: min(100%, 420px);
  margin: 0;
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-tint);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero-media--single img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.hm-col {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}
.hm-col--offset { transform: translateY(34px); }

.hm-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-tint);
  box-shadow: var(--shadow-lg);
  transition: transform .35s cubic-bezier(.2, .8, .3, 1),
              border-color .35s ease, box-shadow .35s ease;
}
.hm-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .8, .3, 1);
}
.hm-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-line);
  box-shadow: 0 26px 60px rgba(229, 26, 117, .26);
}
.hm-card:hover img { transform: scale(1.06); }

/* ---------- Spec / rating card (inner-page hero aside) ---------- */
.rating-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.rating-card-head {
  background:
    radial-gradient(90% 140% at 15% 0%, rgba(229, 26, 117, .30), transparent 65%),
    radial-gradient(90% 140% at 90% 100%, rgba(141, 31, 255, .28), transparent 65%),
    var(--surface-tint);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  text-align: center;
}
.rating-card-head .rc-name {
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -.025em;
  margin: 0 0 3px;
  color: #fff;
}
.rating-card-head .rc-sub {
  font-size: .7rem;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 650;
}
.rating-card-body { padding: 0 24px 24px; }
.rc-verdict {
  text-align: center;
  font-size: .98rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.rc-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 15px; }
.rc-list li { margin: 0; }
.rc-label {
  display: block;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-dim);
  font-weight: 750;
  margin-bottom: 4px;
}
.rc-val { font-size: .93rem; color: var(--text-soft); }
.rc-foot { margin-top: 15px; text-align: center; font-size: .76rem; color: var(--text-dim); }

/* ---------- Disclosure ---------- */
.disclosure {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.disclosure .fi { color: var(--text-dim); margin-top: .22em; flex-shrink: 0; }
.disclosure strong { color: var(--text); }

/* ---------- Main article layout ---------- */
.page-body { padding: 40px 0 72px; }
.layout { display: block; }

.article {
  max-width: var(--measure);
  min-width: 0;
  margin-inline: auto;
}
.article > h2:first-child { margin-top: 0; }
.article h2, .article h3 { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ---------- Quick verdict ---------- */
.verdict {
  position: relative;
  background:
    linear-gradient(150deg, var(--surface-alt) 0%, rgba(229, 26, 117, .07) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 0 0 36px;
  overflow: hidden;
}
.verdict::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--violet), transparent);
}
.verdict h2 { margin-top: 0 !important; }
.verdict-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.verdict-score { text-align: center; }
.verdict-score .vs-num {
  font-size: 3.7rem;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, var(--brand-bright), var(--violet-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.verdict-score .vs-den {
  font-size: .8rem;
  color: var(--text-dim);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.verdict-text p:last-child { margin-bottom: 0; }

/* ---------- Facts panel (moved hero spec cards) ---------- */
.facts-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin: 0 0 30px;
  box-shadow: var(--shadow-sm);
}
.facts-panel div {
  padding: 17px 20px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.facts-label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-dim);
  font-weight: 750;
  margin-bottom: 5px;
}
.facts-value {
  display: block;
  font-size: .95rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

/* ---------- Cards / grids ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.card h3, .card h4 { margin-top: 0; }
.card p:last-child, .card ul:last-child, .card ol:last-child { margin-bottom: 0; }

.grid { display: grid; gap: 18px; margin: 0 0 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-card { text-align: left; position: relative; overflow: hidden; }
.feature-card .fi-badge {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-wash), var(--violet-wash));
  border: 1px solid var(--brand-line);
  color: var(--brand-bright);
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card h3, .feature-card h4 { font-size: 1.02rem; margin-bottom: .4em; }
.feature-card p { font-size: .92rem; color: var(--text-muted); margin-bottom: 0; }
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}
.feature-card:hover .fi-badge {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 6px 18px rgba(229, 26, 117, .3);
}

/* Stat strip */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .25s ease, transform .25s ease;
}
.stat:hover { border-color: var(--brand-line); transform: translateY(-2px); }
.stat-num {
  display: block;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--brand-bright), var(--violet-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

/* ---------- Figures / media ---------- */
.figure {
  margin: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.figure img { width: 100%; height: auto; display: block; background: var(--surface-tint); }
.figure figcaption {
  padding: 13px 18px;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.figure figcaption strong { color: var(--text-soft); }

.figure-shot { background: var(--bg-deep); text-align: center; }
.figure-shot img {
  max-height: 620px;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
}
.figure-shot figcaption { text-align: left; }
.figure-lead { margin-bottom: 34px; }

/* ---------- Character gallery ---------- */
.char-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.char-gallery li { margin: 0; }
.char-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-tint);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1),
              box-shadow .3s ease, border-color .3s ease;
}
.char-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-line);
  box-shadow: 0 20px 44px rgba(229, 26, 117, .22);
}
.char-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.2, .8, .3, 1);
}
.char-card:hover img { transform: scale(1.07); }
.char-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 12px 10px;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(6, 5, 7, .92), transparent);
}
.gallery-note { font-size: .82rem; color: var(--text-dim); margin: 0 0 30px; }

/* ---------- Callouts ---------- */
.callout {
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 28px;
  border: 1px solid;
  border-left-width: 3px;
  font-size: .96rem;
}
.callout h3, .callout h4 {
  margin-top: 0;
  margin-bottom: .45em;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.callout p:last-child, .callout ul:last-child { margin-bottom: 0; }

.callout-warn { background: var(--warn-wash); border-color: var(--warn-line); border-left-color: var(--warn); }
.callout-warn h3, .callout-warn h4 { color: var(--warn); }
.callout-info { background: var(--info-wash); border-color: var(--info-line); border-left-color: var(--info); }
.callout-info h3, .callout-info h4 { color: var(--info); }
.callout-good { background: var(--good-wash); border-color: var(--good-line); border-left-color: var(--good); }
.callout-good h3, .callout-good h4 { color: var(--good); }
.callout-bad { background: var(--bad-wash); border-color: var(--bad-line); border-left-color: var(--bad); }
.callout-bad h3, .callout-bad h4 { color: var(--bad); }

/* ---------- Pros & cons ---------- */
.proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 30px;
}
.pc-panel { border-radius: var(--radius); padding: 22px; border: 1px solid; }
.pc-pros { background: var(--good-wash); border-color: var(--good-line); }
.pc-cons { background: var(--bad-wash); border-color: var(--bad-line); }
.pc-panel h3 { margin-top: 0; font-size: 1.05rem; display: flex; align-items: center; gap: 9px; }
.pc-pros h3 { color: var(--good); }
.pc-cons h3 { color: var(--bad); }
.pc-panel ul { list-style: none; margin: 0; padding: 0; }
.pc-panel li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: .93rem;
  color: var(--text-muted);
}
.pc-panel li:last-child { margin-bottom: 0; }
.pc-panel li::before {
  position: absolute;
  left: 0;
  top: .18em;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .82rem;
}
.pc-pros li::before { content: '\f00c'; color: var(--good); }
.pc-cons li::before { content: '\f00d'; color: var(--bad); }
.pc-panel li strong { display: block; margin-bottom: 2px; color: var(--text); }

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
.table-wrap table { margin: 0; border: 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 480px;
}
caption {
  caption-side: top;
  text-align: left;
  padding: 14px 18px 0;
  font-size: .82rem;
  color: var(--text-dim);
}
th, td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--text-muted);
}
thead th {
  background: var(--surface-tint);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-soft);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
tbody th { color: var(--text); font-weight: 600; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody tr { transition: background .18s ease; }
tbody tr:hover { background: rgba(255, 255, 255, .03); }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-note { font-size: .82rem; color: var(--text-dim); margin: -18px 0 28px; padding-left: 2px; }
.scroll-hint { display: none; font-size: .78rem; color: var(--text-dim); margin: -20px 0 24px; }

/* ---------- Pricing cards ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 18px;
  margin: 0 0 12px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.plan:hover {
  border-color: var(--brand-line);
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .55);
}
.plan.is-featured {
  border-color: var(--brand);
  background: linear-gradient(165deg, var(--surface) 0%, rgba(229, 26, 117, .09) 100%);
  box-shadow: 0 14px 40px rgba(229, 26, 117, .18);
}
.plan-flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--brand), var(--violet));
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(229, 26, 117, .45);
}
.plan-name {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-dim);
  font-weight: 750;
  margin: 0 0 8px;
}
.plan-price {
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1.1;
  margin: 0 0 3px;
}
.plan-per { font-size: .84rem; color: var(--text-dim); margin: 0 0 18px; }
.plan ul { list-style: none; margin: 0 0 20px; padding: 0; font-size: .89rem; }
.plan li { padding-left: 23px; position: relative; margin-bottom: 9px; color: var(--text-muted); }
.plan li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: .1em;
  color: var(--good);
  font-size: .76rem;
}
.plan .btn { margin-top: auto; }

/* ---------- Two-wallet diagram ---------- */
.wallet-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  margin: 0 0 14px;
}
.wallet {
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .25s ease, transform .25s ease;
}
.wallet:hover { transform: translateY(-2px); }
.wallet-1 { background: linear-gradient(160deg, var(--surface), var(--violet-wash)); }
.wallet-1:hover { border-color: var(--violet-line); }
.wallet-2 { background: linear-gradient(160deg, var(--surface), var(--brand-wash)); }
.wallet-2:hover { border-color: var(--brand-line); }
.wallet h3 { margin-top: 0; font-size: 1.02rem; display: flex; align-items: center; gap: 9px; }
.wallet p { font-size: .91rem; color: var(--text-muted); margin-bottom: 0; }
.wallet-plus { display: grid; place-items: center; font-size: 1.5rem; color: var(--text-dim); font-weight: 700; }

/* ---------- Conflict comparison ---------- */
.conflict-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 18px;
}
.conflict {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease;
}
.conflict:hover { transform: translateY(-3px); }
.conflict-src {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 750;
  color: var(--text-dim);
  margin: 0 0 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.conflict p { font-size: .91rem; margin-bottom: 0; color: var(--text-muted); }
.conflict-a { border-top: 3px solid var(--good); }
.conflict-b { border-top: 3px solid var(--warn); }
.conflict-c { border-top: 3px solid var(--info); }

/* ---------- Step timeline ---------- */
.timeline { list-style: none; margin: 0 0 30px; padding: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-line), var(--violet-line), transparent);
}
.timeline li { position: relative; padding-left: 52px; margin-bottom: 24px; }
.timeline li:last-child { margin-bottom: 0; }
.timeline .step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--brand);
  color: var(--brand-bright);
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: .88rem;
  z-index: 1;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.timeline li:hover .step-num {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(229, 26, 117, .16);
}
.timeline h3, .timeline h4 { margin: 4px 0 .35em; font-size: 1.02rem; }
.timeline p { font-size: .94rem; color: var(--text-muted); }
.timeline p:last-child { margin-bottom: 0; }

/* ---------- Flow diagram ---------- */
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.flow li {
  flex: 1 1 130px;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 12px;
  text-align: center;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color .25s ease, transform .25s ease, color .25s ease;
}
.flow li:hover { border-color: var(--brand-line); transform: translateY(-3px); color: var(--text); }
.flow li .fi { display: block; color: var(--brand); margin-bottom: 8px; font-size: 1rem; }

/* ---------- Prompt box ---------- */
.prompt-box {
  background: var(--bg-deep);
  border: 1px solid var(--violet-line);
  color: var(--text-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 26px;
  font-size: .93rem;
  line-height: 1.65;
  overflow-x: auto;
  box-shadow: inset 0 0 40px rgba(141, 31, 255, .07);
}
.prompt-box .pb-label {
  display: block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--violet-soft);
  font-weight: 700;
  margin-bottom: 10px;
}
.prompt-box .pb-formula { color: var(--brand-bright); font-weight: 600; }
.prompt-box code, .prompt-box .pb-example {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86rem;
  color: #9fe8c4;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  white-space: pre-wrap;
}

/* ---------- Deal status ---------- */
.deal-status {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 26px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.deal-item { padding: 20px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.deal-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-dim);
  font-weight: 750;
  margin: 0 0 6px;
}
.deal-value { font-size: 1.02rem; font-weight: 650; color: var(--text); margin: 0; line-height: 1.4; }
.deal-value.is-positive { color: var(--good); }
.deal-value.is-neutral { color: var(--text-soft); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid;
}
.badge-good { background: var(--good-wash); color: var(--good); border-color: var(--good-line); }
.badge-warn { background: var(--warn-wash); color: var(--warn); border-color: var(--warn-line); }
.badge-info { background: var(--info-wash); color: var(--info); border-color: var(--info-line); }
.badge-neutral { background: var(--surface-tint); color: var(--text-muted); border-color: var(--line); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0 0 26px; padding: 0; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: 12px; font-size: .95rem; }
.checklist li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: .06em;
  color: var(--brand);
  font-size: 1.02rem;
}

/* ---------- CTA block ---------- */
.cta-block {
  position: relative;
  background:
    radial-gradient(70% 120% at 20% 0%, rgba(229, 26, 117, .22) 0%, transparent 60%),
    radial-gradient(70% 120% at 90% 100%, rgba(141, 31, 255, .22) 0%, transparent 60%),
    var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 36px 0;
  text-align: center;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--violet), transparent);
}
.cta-block h2, .cta-block h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: .45em;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
}
.cta-block p { color: var(--text-muted); max-width: 60ch; margin: 0 auto 24px; font-size: .98rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-fine { font-size: .76rem; color: var(--text-dim); margin: 20px 0 0; }

/* Inline contextual CTA */
.cta-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--surface), rgba(229, 26, 117, .08));
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 28px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.cta-inline:hover { box-shadow: 0 12px 34px rgba(229, 26, 117, .16); }
.cta-inline p { margin: 0; flex: 1 1 260px; font-size: .95rem; color: var(--text-muted); }
.cta-inline strong { color: var(--text); }

/* ---------- Internal link cards ---------- */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}
.link-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  color: inherit;
  transition: transform .25s cubic-bezier(.2, .8, .3, 1),
              box-shadow .25s ease, border-color .25s ease;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .5);
  border-color: var(--brand-line);
  color: inherit;
}
.link-card .fi-badge {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--violet-wash), var(--brand-wash));
  border: 1px solid var(--violet-line);
  color: var(--violet-soft);
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  font-size: .92rem;
  transition: transform .3s ease;
}
.link-card:hover .fi-badge { transform: scale(1.08) rotate(-5deg); }
.link-card h2, .link-card h3 { font-size: 1rem; margin: 0 0 5px; color: var(--text); }
.link-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.link-card .lc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .84rem;
  font-weight: 650;
  color: var(--brand-bright);
}
.link-card .lc-more i { transition: transform .25s ease; }
.link-card:hover .lc-more i { transform: translateX(4px); }

/* ---------- FAQ accordion ---------- */
.faq { margin: 0 0 30px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 18px 4px;
  font: inherit;
  font-weight: 650;
  font-size: 1rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  line-height: 1.45;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--brand-bright); }
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-tint);
  border: 1px solid var(--line);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  font-size: .68rem;
  margin-top: .16em;
  transition: transform .28s cubic-bezier(.2, .8, .3, 1), background .25s ease,
              color .25s ease, border-color .25s ease;
}
.faq-q:hover .faq-icon { border-color: var(--brand-line); color: var(--brand-bright); }
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(135deg);
  background: linear-gradient(135deg, var(--brand), var(--violet));
  border-color: transparent;
  color: #fff;
}
.faq-a { display: none; padding: 0 4px 20px; font-size: .95rem; color: var(--text-muted); }
.faq-a.is-open { display: block; animation: fade-in .24s ease both; }
.faq-a p:last-child { margin-bottom: 0; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Final verdict ---------- */
.final-verdict {
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--surface-alt), rgba(229, 26, 117, .06));
  padding: 26px 28px;
  margin: 0 0 30px;
}
.final-verdict h3 { margin-top: 0; }
.final-verdict p:last-child { margin-bottom: 0; }
.final-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: linear-gradient(120deg, var(--brand), var(--violet));
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 750;
  margin-top: 8px;
  box-shadow: var(--glow-brand);
}
.final-rating .fr-num { font-size: 1.35rem; letter-spacing: -.02em; }
.final-rating .fr-label { font-size: .78rem; opacity: .9; font-weight: 600; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 9, 11, .95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .6);
  transform: translateY(110%);
  transition: transform .32s cubic-bezier(.2, .8, .3, 1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-text { flex: 1; min-width: 0; font-size: .8rem; line-height: 1.3; color: var(--text-muted); }
.sticky-cta-text strong { display: block; color: var(--text); font-size: .9rem; }

/* ---------- Sections ---------- */
.section-tint {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}
.section-head { max-width: 62ch; margin-bottom: 30px; }
.section-head h2 { margin-top: 0; }
.section-head p { color: var(--text-muted); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  padding: 54px 0 28px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-about { font-size: .87rem; line-height: 1.65; margin-bottom: 0; max-width: 40ch; color: var(--text-dim); }
.footer-col h3 {
  color: var(--text);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: var(--text-muted);
  font-size: .875rem;
  border: 0;
  transition: color .18s ease, padding-left .18s ease;
}
.footer-col a:hover { color: var(--brand-bright); padding-left: 4px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-dim);
}
.footer-bottom p { margin: 0; }
.footer-disclaimer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  margin: 24px 0 0;
  font-size: .81rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- Contact form ---------- */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-field .req { color: var(--brand-bright); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface-alt);
  box-shadow: 0 0 0 3px rgba(229, 26, 117, .18);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-hint { font-size: .82rem; color: var(--text-dim); margin-top: 5px; }
.form-status { display: none; border-radius: var(--radius-sm); padding: 14px 16px; font-size: .9rem; margin-bottom: 18px; }
.form-status.is-success { display: block; background: var(--good-wash); border: 1px solid var(--good-line); color: var(--good); }
.form-status.is-error { display: block; background: var(--bad-wash); border: 1px solid var(--bad-line); color: var(--bad); }

/* ---------- Legal page ---------- */
.legal-page { max-width: 76ch; }
.legal-page h2 { font-size: 1.4rem; }
.updated-note {
  font-size: .85rem;
  color: var(--text-dim);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.legal-page pre {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  overflow-x: auto;
}
.legal-page pre code { background: none; border: 0; padding: 0; color: #9fe8c4; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.small { font-size: .86rem; color: var(--text-muted); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1320px) {
  .nav-list a { padding: 8px 8px; font-size: .84rem; }
  .brand-tag { display: none; }
}

@media (max-width: 1180px) {
  .nav-list a { padding: 8px 6px; font-size: .8rem; }
  .header-inner { gap: 10px; }
  .header-cta { padding: 9px 14px; font-size: .82rem; }
}

@media (max-width: 960px) {
  :root { --header-h: 62px; }

  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2, .8, .3, 1);
    margin-left: 0;
    visibility: hidden;
  }
  .primary-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a {
    padding: 14px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-list a::after { display: none; }
  .nav-cta-mobile { display: block; margin-top: 20px; }
  .nav-cta-mobile .btn { width: 100%; }

  body.nav-open { overflow: hidden; }

  .article { max-width: none; }

  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-media { max-width: 460px; margin-inline: auto; }

  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .conflict-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }

  .sticky-cta { display: flex; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .proscons { grid-template-columns: minmax(0, 1fr); }
  .wallet-diagram { grid-template-columns: minmax(0, 1fr); }
  .wallet-plus { padding: 4px 0; }

  .verdict { padding: 22px; }
  .verdict-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .verdict-score { text-align: left; display: flex; align-items: baseline; gap: 10px; }
  .verdict-score .vs-num { font-size: 3rem; }

  .hero { padding: 20px 0 44px; }
  .hero-actions .btn { width: 100%; }
  .hm-col--offset { transform: translateY(20px); }
  .hero-media { gap: 12px; }
  .hm-col { gap: 12px; }

  .cta-block { padding: 28px 20px; }
  .cta-actions .btn { width: 100%; }

  .deal-item, .facts-panel div { border-right: 0; }

  .scroll-hint { display: block; }
  table { font-size: .88rem; min-width: 440px; }
  th, td { padding: 11px 14px; }

  .flow li { flex: 1 1 100%; }

  .page-body { padding: 28px 0 90px; }
  .section-tint { padding: 38px 0; }
  .timeline li { padding-left: 46px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 400px) {
  .prompt-box { padding: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hm-col--offset { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .sticky-cta, .cta-block, .cta-inline, .hero-media { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .layout { display: block; }
  .figure, .char-card { break-inside: avoid; }
}
