/* ==========================================================================
   bonus theme - design system
   FONT     system sans only. No serif anywhere.
   WEIGHT   body 400 - secondary 500-600 - labels 700-800 - headings 800
   ========================================================================== */

:root {
  /* surfaces */
  --page:        #f4f7fb;
  --card:        #ffffff;
  --hairline:    #d7dfeb;
  --rule:        #edf1f6;
  --track:       #e1e7ef;

  /* text */
  --heading:     #172033;
  --body:        #263247;
  --secondary:   #5b667a;
  --muted:       #6c7687;
  --muted-2:     #727b8b;

  /* primary */
  --primary:     #2457a6;
  --primary-deep:#173b73;
  --primary-tint:#e8f0fb;
  --primary-line:#c8d7ea;

  /* accent (purple) */
  --accent:      #6d3cc3;
  --accent-tint: #f6f3ff;
  --accent-line: #e7def8;

  /* negative */
  --negative:    #d14f5f;
  --neg-deep:    #a93b49;
  --neg-tint:    #fbeaec;
  --neg-line:    #efcbd0;

  /* gold */
  --gold:        #b7791f;
  --gold-soft:   #f2b84b;
  --gold-btn:    #ffcc4d;
  --gold-tint:   #fff8e6;
  --gold-line:   #f5dfaa;

  /* misc */
  --positive:    #22a06b;
  --cyan:        #70d6ff;
  --hero-1:      #24104f;
  --hero-2:      #51258a;
  --hero-3:      #2457a6;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --wrap: 840px;
  --pad:  24px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  background: var(--page);
  font-family: var(--font);
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
}

/* full-bleed inside .wrap */
.bleed { margin-left: calc(var(--pad) * -1); margin-right: calc(var(--pad) * -1); }

/* ==========================================================================
   SITE HEADER
   ========================================================================== */

.site-header {
  background: var(--hero-1);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-header__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.site-header__logo img { max-height: 34px; width: auto; }
.site-header__emoji { font-size: 26px; line-height: 1; }

/* ==========================================================================
   SECTION STICKERS
   ========================================================================== */

.sticker {
  display: block;
  height: auto;
  max-width: 40%;
  pointer-events: none;
  user-select: none;
}
.sticker--right { float: right; margin: 0 0 14px 22px; }
.sticker--left  { float: left;  margin: 0 22px 14px 0; }
.sticker--center { float: none; margin: 4px auto 18px; }

@media (max-width: 720px) {
  .sticker--right, .sticker--left {
    float: none;
    margin: 2px auto 14px;
  }
  .sticker { max-width: 96px; }
}
.site-header__logo span { font-size: 18px; font-weight: 800; color: #ffffff; letter-spacing: -.2px; }

.site-nav { display: flex; flex-wrap: wrap; gap: 4px 20px; margin-left: auto; }
.site-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: #dce9f8;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #ffffff; border-bottom-color: var(--gold-soft); }

/* ---- dropdown ---- */
.site-nav__group { position: relative; }
.site-nav__toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 0;
  background: transparent;
  border: 0; border-bottom: 1px solid transparent;
  color: #dce9f8;
  font-family: var(--font);
  font-size: 14.5px; font-weight: 600;
  cursor: pointer;
}
.site-nav__toggle:hover, .site-nav__toggle:focus-visible,
.site-nav__group.is-open .site-nav__toggle { color: #ffffff; border-bottom-color: var(--gold-soft); }
.site-nav__caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .15s ease;
}
.site-nav__group.is-open .site-nav__caret { transform: rotate(180deg); }
.site-nav__drop {
  display: none;
  position: absolute; left: 0; top: calc(100% + 10px); z-index: 40;
  min-width: 232px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(23,32,51,.18);
}
.site-nav__group.is-open .site-nav__drop { display: block; }
.site-nav__drop a {
  display: block;
  padding: 9px 11px;
  color: var(--body);
  font-size: 14.5px; font-weight: 600;
  text-decoration: none;
  border: 0; border-radius: 6px;
}
.site-nav__drop a:hover, .site-nav__drop a:focus-visible {
  color: var(--heading);
  background: var(--primary-tint);
  border-bottom-color: transparent;
}

.header-burger {
  display: none;
  flex: 0 0 auto;
  width: 40px; height: 34px;
  margin-left: auto;
  padding: 8px 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 7px;
  cursor: pointer;
}
.header-burger span { display: block; height: 2px; background: #ffffff; border-radius: 2px; }
.header-burger span + span { margin-top: 4px; }

.lang-switch { position: relative; flex: 0 0 auto; }
.lang-switch__current {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 7px;
  color: #ffffff;
  font-family: var(--font);
  font-size: 13.5px; font-weight: 700;
  cursor: pointer;
}
.lang-switch__flag { width: 18px; height: auto; border-radius: 2px; }
.lang-switch__list {
  display: none;
  position: absolute; right: 0; top: calc(100% + 6px); z-index: 40;
  min-width: 168px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(23,32,51,.18);
}
.lang-switch.is-open .lang-switch__list { display: block; }
.lang-switch__list a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px;
  color: var(--body);
  font-size: 14.5px; font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
}
.lang-switch__list a:hover { background: var(--primary-tint); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  margin: 0 calc(var(--pad) * -1) 46px;
  padding: 58px 30px 46px;
  background: linear-gradient(135deg, var(--hero-1) 0%, var(--hero-2) 56%, var(--hero-3) 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
  box-shadow: 0 18px 50px rgba(36,16,79,.22);
}
.hero--image { position: relative; }
.hero--image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(36,16,79,.88) 0%, rgba(81,37,138,.82) 56%, rgba(36,87,166,.86) 100%);
}
.hero--image > * { position: relative; }

.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; }
.hero__eyebrow span { display: block; width: 26px; height: 1px; background: var(--gold-soft); }
.hero__eyebrow em {
  font-style: normal;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: #ffe2a3;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: 46px; line-height: 1.16; font-weight: 800;
  color: #ffffff; letter-spacing: -.6px;
}
.hero h1 em { color: var(--cyan); font-style: normal; }

.hero__sub { margin: 0 auto; max-width: 560px; font-size: 18px; color: #e9e2f8; line-height: 1.65; }

.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(18,8,42,.42);
  overflow: hidden;
}
.hero__stat { flex: 1 1 120px; padding: 20px 10px; border-right: 1px solid #4670aa; }
.hero__stat:last-child { border-right: 0; }
.hero__stat b { display: block; font-size: 30px; font-weight: 800; color: #ffffff; line-height: 1; }
.hero__stat b.is-negative { color: var(--negative); }
.hero__stat b.is-positive { color: #8ee0b4; }
.hero__stat b.is-accent   { color: var(--cyan); }
.hero__stat i {
  display: block; margin-top: 8px;
  font-style: normal;
  font-size: 11.5px; font-weight: 800;
  color: #dce9f8; text-transform: uppercase; letter-spacing: 1.4px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 15px; font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--gold  { padding: 15px 30px; background: var(--gold-btn); color: var(--hero-1); box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.btn--ghost { background: rgba(255,255,255,.1); color: #ffffff; border-color: rgba(255,255,255,.38); }
.btn--accent{ background: var(--accent); color: #ffffff; }
.btn--sm    { padding: 13px 26px; font-size: 14px; border-radius: 7px; }

/* CTA sits between paragraphs, so it needs normal flow spacing.
   clear:both keeps it away from a floated section sticker. */
.cta-row { margin: 6px 0 30px; text-align: center; clear: both; }
.cta-row--tight { margin-top: 0; }
/* use when the button follows a card grid and should hug it */
.cta-row--pull { margin-top: -22px; }
.prose .cta-row .btn { margin: 0; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.lead { margin: 0 0 18px; font-size: 19.5px; line-height: 1.8; color: var(--body); }

.prose h2, h2.section-title {
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 5px solid var(--accent);
  font-size: 31px; font-weight: 800;
  color: var(--heading); letter-spacing: -.4px; line-height: 1.3;
}
.prose h3, h3.sub-title {
  margin: 0 0 18px;
  font-size: 24px; font-weight: 800;
  color: var(--heading); letter-spacing: -.2px;
}
.prose h4 { margin: 0 0 14px; font-size: 19px; font-weight: 800; color: var(--heading); }
.prose h2:not(:first-child), .prose h3:not(:first-child) { margin-top: 44px; }

.prose p  { margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }
.prose a  { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover, .prose a:focus-visible { color: var(--primary-deep); }

/* buttons and cards inside .prose must not inherit the link styling above */
.prose .btn,
.prose .test__cta,
.prose .verdict__cta,
.prose .bonus-card__cta { text-decoration: none; }
.prose .bonus-card__cta { color: #ffffff; }
.prose .bonus-card__cta--gold { color: var(--hero-1); }
.prose .bonus-card__cta:hover,
.prose .bonus-card__cta:focus-visible { text-decoration: none; color: #ffffff; }
.prose .bonus-card__cta--gold:hover,
.prose .bonus-card__cta--gold:focus-visible { color: var(--hero-1); }
.prose .btn--gold   { color: var(--hero-1); }
.prose .btn--accent { color: #ffffff; }
.prose .btn--ghost  { color: #ffffff; }
.prose .btn:hover, .prose .btn:focus-visible { text-decoration: none; }
.prose .btn--gold:hover   { color: var(--hero-1); }
.prose .btn--accent:hover { color: #ffffff; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { font-weight: 800; color: var(--heading); }
.prose blockquote {
  margin: 0 0 26px;
  padding: 18px 22px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-line);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  color: #30415d;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose hr { margin: 40px 0; border: 0; border-top: 1px solid var(--hairline); }
.prose code {
  padding: 2px 6px;
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  border-radius: 4px;
  font-size: 14.5px;
}

/* tables */
.prose table, .data-table {
  width: 100%;
  margin: 0 0 30px;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  font-size: 15.5px;
}
.prose thead th, .data-table thead th {
  padding: 13px 16px;
  background: var(--primary-tint);
  border-bottom: 1px solid var(--primary-line);
  color: var(--heading);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.3px;
  text-align: left;
}
.prose td, .prose th, .data-table td, .data-table th {
  padding: 13px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.prose tbody tr:last-child td, .data-table tbody tr:last-child td { border-bottom: 0; }
.prose tbody tr:hover, .data-table tbody tr:hover { background: #fafbfd; }

.data-table__ok   { color: var(--positive); font-weight: 800; }
.data-table__fail { color: var(--negative); font-weight: 800; }

.table-scroll { margin: 0 0 30px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll > table { margin-bottom: 0; }

/* ==========================================================================
   TOC
   ========================================================================== */

.toc {
  margin: 0 0 54px;
  padding: 26px 28px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--primary);
  border-radius: 10px;
}
.toc__label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.toc__list { display: flex; flex-wrap: wrap; gap: 4px 28px; font-size: 15px; line-height: 2.05; }
.toc__list a { color: #334155; text-decoration: none; border-bottom: 1px solid #dbe2ec; }
.toc__list a:hover { color: var(--primary); border-bottom-color: var(--primary); }
/* Hugo .TableOfContents markup */
.toc__list ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 4px 28px; }
.toc__list ul ul { display: none; }
.toc__list li { margin: 0; }

/* ==========================================================================
   CALLOUT / FORMULA
   ========================================================================== */

.callout {
  margin: 0 0 52px;
  padding: 26px 28px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-line);
  border-radius: 10px;
}
.callout--neg  { background: var(--neg-tint);   border-color: var(--neg-line); }
.callout--gold { background: var(--gold-tint);  border-color: var(--gold-line); }
.callout__label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.callout--neg  .callout__label { color: var(--negative); }
.callout--gold .callout__label { color: var(--gold); }
.callout__note { margin: 16px 0 0; font-size: 15px; color: #495c77; line-height: 1.65; }
.callout__body > :first-child { margin-top: 0; }
.callout__body > :last-child  { margin-bottom: 0; }

.formula { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 16px; }
.formula__chip {
  font-weight: 800;
  padding: 11px 18px;
  background: var(--card);
  border: 1px solid var(--primary-line);
  border-radius: 10px;
  color: var(--body);
}
.formula__chip--result { background: var(--primary); border-color: var(--primary); color: #ffffff; }
.formula__op { color: var(--muted-2); font-size: 18px; }

/* ==========================================================================
   BONUS CARD
   ========================================================================== */

.bonus-cards { margin-bottom: 40px; }

.bonus-card {
  margin: 0 0 12px;
  padding: 24px 26px;
  background: linear-gradient(145deg, #ffffff 0%, var(--accent-tint) 100%);
  border: 1px solid var(--accent-line);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(63,35,110,.10);
}
.bonus-card--neg {
  background: linear-gradient(145deg, #ffffff 0%, #fff3f5 100%);
  border-color: #f2d9de;
  border-top-color: var(--negative);
  box-shadow: 0 12px 32px rgba(112,36,56,.09);
}
.bonus-card--gold {
  background: linear-gradient(145deg, #ffffff 0%, #fff9e9 100%);
  border-color: #f0dfb6;
  border-top-color: var(--gold-soft);
  box-shadow: 0 12px 32px rgba(130,86,20,.09);
}
.bonus-cards > .bonus-card:last-child { margin-bottom: 0; }

.bonus-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 18px; }
.bonus-card__logo {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: #ffffff;
  font-size: 16px; font-weight: 800;
  overflow: hidden;
}
.bonus-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.bonus-card__id { flex: 1 1 170px; }
.bonus-card__name { font-size: 23px; font-weight: 800; color: var(--heading); line-height: 1.2; letter-spacing: -.3px; }
.bonus-card__tag  { font-size: 14px; color: var(--muted-2); margin-top: 2px; }
.bonus-card__badge {
  padding: 5px 13px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-line);
  border-radius: 6px;
  color: var(--heading);
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase;
}
.bonus-card__badge--pick { border-color: var(--primary); }
.bonus-card__badge--neg  { background: var(--neg-tint); border-color: var(--neg-line); }

.bonus-card__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  gap: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}
.metric {
  min-width: 0;
  padding: 14px;
  background: var(--accent-tint);
  border: 1px solid var(--accent-line);
  border-radius: 8px;
}
.metric--warn { background: var(--gold-tint); border-color: var(--gold-line); }
.metric__label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.3px; }
.metric__value { font-size: 19px; font-weight: 800; color: var(--body); margin-top: 5px; }
.metric__value--primary { color: var(--primary); }
.metric__value--neg     { color: var(--negative); }

.bonus-card__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.bonus-card__terms { font-size: 13px; color: var(--secondary); }
.bonus-card__cta {
  display: block; flex: 1 1 220px;
  text-align: center;
  padding: 14px 24px;
  font-size: 14px; font-weight: 800;
  text-decoration: none;
  border-radius: 7px;
  background: var(--accent);
  color: #ffffff;
}
.bonus-card__cta--gold { background: var(--gold-btn); color: var(--hero-1); box-shadow: 0 5px 14px rgba(183,121,31,.22); }

/* ==========================================================================
   PANEL (chart / generic white block)
   ========================================================================== */

.panel {
  margin: 0 0 54px;
  padding: 28px 30px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.panel__label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.panel__note { margin: 0 0 26px; font-size: 15px; color: var(--secondary); line-height: 1.65; }

/* horizontal bars */
.bar { margin-bottom: 18px; }
.bars > .bar:last-of-type { margin-bottom: 22px; }
.bar__head { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; margin-bottom: 7px; }
.bar__name { color: var(--body); }
.bar__value { font-weight: 800; color: var(--muted); }
.bar__track { height: 8px; background: var(--track); border-radius: 1px; overflow: hidden; }
.bar__fill  { height: 100%; background: var(--primary); }
.bar__fill--warn { background: var(--gold); }
.bar__fill--neg  { background: var(--negative); }

.legend {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 13px; font-weight: 600; color: var(--muted-2);
}
.legend__key { display: inline-block; width: 8px; height: 8px; margin-right: 7px; }
.legend__key--ok   { background: var(--primary); }
.legend__key--warn { background: var(--gold); }
.legend__key--neg  { background: var(--negative); }
.legend__note { margin-left: auto; }

/* column chart */
.columns { display: flex; align-items: flex-end; gap: 14px; height: 190px; }
.columns__col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; text-align: center; }
.columns__value { font-weight: 800; font-size: 17px; margin-bottom: 8px; color: var(--primary); }
.columns__value--warn { color: var(--gold); }
.columns__value--neg  { color: var(--negative); }
.columns__bar { background: var(--primary); border-radius: 6px 2px 0 0; }
.columns__bar--warn { background: var(--gold); }
.columns__bar--neg  { background: var(--negative); }
.columns__axis { display: flex; gap: 14px; padding-top: 12px; border-top: 1px solid var(--hairline); }
.columns__tick { flex: 1; text-align: center; font-size: 14px; color: var(--body); }
.columns__tick span { display: block; color: var(--muted); font-size: 13px; font-weight: 600; }

/* ==========================================================================
   TILE GRIDS
   ========================================================================== */

.tiles { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 54px; }
.tiles--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.tiles--grid-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.tiles--tight { margin-bottom: 22px; }

.tile {
  flex: 1 1 230px;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.tile--top-primary { border-top: 2px solid var(--primary); }
.tile--top-accent  { border-top: 2px solid var(--accent); }
.tile--top-neg     { border-top: 2px solid var(--negative); }
.tile--top-gold    { border-top: 2px solid var(--gold); }
.tile--top-positive{ border-top: 2px solid var(--positive); }

.tile__kicker { font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 8px; color: var(--primary); }
.tile__kicker--accent   { color: var(--accent); }
.tile__kicker--neg      { color: var(--negative); }
.tile__kicker--gold     { color: var(--gold); }
.tile__kicker--positive { color: var(--positive); }
.tile__title { font-weight: 800; font-size: 18px; color: var(--heading); margin-bottom: 8px; }
.tile__text  { font-size: 15px; color: var(--secondary); line-height: 1.65; }
.tile__foot {
  font-size: 13.5px; font-weight: 700;
  margin-top: 12px; padding-top: 11px;
  border-top: 1px solid var(--rule);
  color: var(--heading);
}
.tile__foot--warn { color: var(--negative); }

/* numbered tiles */
.tile__head { display: flex; align-items: center; gap: 12px; }
.tile__num {
  width: 28px; height: 28px; flex: 0 0 28px;
  background: var(--accent); color: #ffffff;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.tile__head .tile__title { margin-bottom: 0; font-size: 17px; line-height: 1.25; }
.tile__head + .tile__text { margin-top: 12px; }

/* ==========================================================================
   COMPARE (two columns)
   ========================================================================== */

.compare { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 54px; }
.compare__col {
  flex: 1 1 280px;
  padding: 24px 26px;
  border-radius: 10px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-line);
}
.compare__col--neg { background: var(--neg-tint); border-color: var(--neg-line); }
.compare__label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.compare__col--neg .compare__label { color: var(--negative); }
.compare__list { font-size: 15px; color: #30415d; line-height: 2; }
.compare__col--neg .compare__list { color: #4c3441; }
.compare__list ul { margin: 0; padding: 0; list-style: none; }
.compare__list li { position: relative; padding-left: 24px; }
.compare__list li::before {
  content: "+"; position: absolute; left: 0; top: 0;
  font-weight: 800; color: var(--positive);
}
.compare__col--neg .compare__list li::before { content: "\2212"; color: var(--negative); }
.compare__list--plain li { padding-left: 0; }
.compare__list--plain li::before { content: none; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-block { margin: 0 0 54px; }
.faq-block__heading {
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 5px solid var(--accent);
  font-size: 31px; font-weight: 800;
  color: var(--heading); letter-spacing: -.4px; line-height: 1.3;
}
.faq-item {
  margin-bottom: 10px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item > summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  padding: 18px 22px;
  font-size: 17px; font-weight: 800;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 20px; font-weight: 800; line-height: 1;
  color: var(--accent);
}
.faq-item[open] > summary::after { content: "\2212"; }
.faq-item[open] > summary { border-bottom: 1px solid var(--rule); }
.faq-item__body { padding: 18px 22px; font-size: 16px; color: var(--secondary); line-height: 1.7; }
.faq-item__body > :first-child { margin-top: 0; }
.faq-item__body > :last-child  { margin-bottom: 0; }

/* ==========================================================================
   ARTICLE META (single)
   ========================================================================== */

.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  margin: 0 0 30px; padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px; color: var(--secondary);
}
.article-meta__author { font-weight: 700; color: var(--heading); }

.breadcrumbs { margin: 0 0 22px; font-size: 13.5px; color: var(--muted-2); }
.breadcrumbs a { color: var(--secondary); text-decoration: none; border-bottom: 1px solid #dbe2ec; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 7px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--hero-1);
  color: #cfd7e6;
  font-size: 14.5px;
  line-height: 1.75;
}
.site-footer__inner { max-width: var(--wrap); margin: 0 auto; padding: 46px var(--pad) 34px; }
.site-footer__top { display: flex; flex-wrap: wrap; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.14); }
.site-footer__brand { flex: 1 1 260px; }
.site-footer__brand img { max-height: 40px; width: auto; margin-bottom: 14px; }
.site-footer__brand p { margin: 0; color: #a9b5c9; }
.site-footer__col { flex: 0 1 200px; }
.site-footer__col h3 {
  margin: 0 0 12px;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: #ffe2a3;
}
.site-footer__col ul { margin: 0; padding: 0; list-style: none; }
.site-footer__col a { color: #cfd7e6; text-decoration: none; }
.site-footer__col a:hover { color: #ffffff; text-decoration: underline; }

.site-footer__legal {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding-top: 22px;
  font-size: 13px; color: #94a2ba;
}
.site-footer__age {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border: 2px solid var(--gold-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  font-size: 12.5px; font-weight: 800;
}
.site-footer__copy { margin-left: auto; }

/* ==========================================================================
   POPUP
   ========================================================================== */

.popup-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 90;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(16,10,32,.7);
}
.popup-overlay.is-visible { display: flex; }
.popup {
  position: relative;
  max-width: 440px; width: 100%;
  padding: 38px 32px 32px;
  background: linear-gradient(135deg, var(--hero-1) 0%, var(--hero-2) 60%, var(--hero-3) 100%);
  background-size: cover; background-position: center;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  text-align: center;
  color: #ffffff;
}
.popup__close {
  position: absolute; top: 10px; right: 12px;
  width: 32px; height: 32px;
  background: transparent; border: 0;
  color: #ffffff; font-size: 26px; line-height: 1;
  cursor: pointer;
}
.popup__title { margin: 0 0 12px; font-size: 26px; font-weight: 800; letter-spacing: -.3px; }
.popup__text  { margin: 0 0 22px; font-size: 16px; color: #e9e2f8; line-height: 1.6; }

/* ==========================================================================
   404
   ========================================================================== */

.notfound { max-width: 560px; margin: 0 auto; padding: 90px var(--pad); text-align: center; }
.notfound img { max-height: 56px; width: auto; margin: 0 auto 26px; }
.notfound h1 { margin: 0 0 12px; font-size: 40px; font-weight: 800; color: var(--heading); letter-spacing: -.5px; }
.notfound p  { margin: 0 0 28px; color: var(--secondary); }

/* ==========================================================================
   SPEC CARDS (label / value rows)
   ========================================================================== */

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 46px;
}
.specs--wide { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.specs--sm   { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.specs--tight { margin-bottom: 22px; }

.spec {
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.spec--top-primary { border-top: 2px solid var(--primary); }
.spec--top-accent  { border-top: 2px solid var(--accent); }
.spec--top-neg     { border-top: 2px solid var(--negative); }
.spec--top-gold    { border-top: 2px solid var(--gold); }
.spec--top-positive{ border-top: 2px solid var(--positive); }

.spec__kicker { font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 8px; color: var(--primary); }
.spec__kicker--accent   { color: var(--accent); }
.spec__kicker--neg      { color: var(--negative); }
.spec__kicker--gold     { color: var(--gold); }
.spec__kicker--positive { color: var(--positive); }

.spec__title { font-weight: 800; font-size: 18px; color: var(--heading); margin-bottom: 8px; }
.spec__text  { font-size: 15px; color: var(--secondary); line-height: 1.65; margin-bottom: 4px; }

.spec__row {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--body);
}
.spec__key { color: var(--secondary); }
.spec__val { font-weight: 700; text-align: right; }
.spec__val--neg      { color: var(--negative); }
.spec__val--warn     { color: var(--gold); }
.spec__val--positive { color: var(--positive); }

.spec__foot {
  font-size: 13.5px; font-weight: 700;
  margin-top: 12px; padding-top: 11px;
  border-top: 1px solid var(--rule);
  color: var(--heading);
}
.spec__foot--warn { color: var(--negative); }

/* ==========================================================================
   REAL-MONEY TEST CARD
   ========================================================================== */

.test {
  display: block;
  padding: 22px 24px;
  margin: 0 0 14px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-left: 6px solid var(--primary);
  border-radius: 14px;
}
.test:last-of-type { margin-bottom: 22px; }
.test--ok   { background: linear-gradient(135deg, #f3fff8, #ffffff); border-color: #ccebd9; border-left-color: var(--positive); }
.test--neg  { border-color: #f1d6dc; border-left-color: var(--negative); }
.test--warn { border-color: var(--gold-line); border-left-color: var(--gold-soft); }

.test__head {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.test__name { font-size: 21px; font-weight: 800; color: var(--heading); }
.test__sub  { font-size: 13px; color: var(--secondary); }
.test__status {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  color: var(--heading);
  background: var(--rule);
}
.test__status--ok   { background: #daf5e6; }
.test__status--neg  { background: var(--neg-tint); }
.test__status--warn { background: var(--gold-tint); }

.test__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.test__metric {
  padding: 13px 14px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 9px;
}
.test__label { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; color: var(--muted); }
.test__value { font-size: 17px; font-weight: 800; color: var(--heading); margin-top: 4px; }

.test__foot {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.test__terms { font-size: 13px; color: var(--secondary); }
.test__cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold-btn);
  color: var(--hero-1);
  font-size: 14px; font-weight: 800;
  text-decoration: none;
  border-radius: 7px;
}

/* ==========================================================================
   VERDICT
   ========================================================================== */

.verdict {
  margin: 0 0 54px;
  padding: 44px 34px;
  background: var(--primary);
  border-radius: 10px;
  text-align: center;
}
.verdict__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 20px;
}
.verdict__eyebrow span { display: block; width: 22px; height: 1px; background: var(--gold); }
.verdict__eyebrow em {
  font-style: normal;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: #ffe2a3;
}
.verdict__title { font-size: 30px; font-weight: 800; color: #ffffff; line-height: 1.3; margin-bottom: 12px; }
.verdict__sub   { margin: 0 0 28px; font-size: 16px; font-weight: 500; color: #dce9f8; }
.verdict__cta {
  display: inline-block;
  padding: 15px 44px;
  background: #ffe2a3;
  color: var(--primary-deep);
  font-size: 16px; font-weight: 800; letter-spacing: .6px;
  text-decoration: none;
  border-radius: 6px;
}
.verdict__legal { margin: 22px 0 0; font-size: 12px; font-weight: 500; color: #dce9f8; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .site-nav {
    display: none;
    order: 3;
    flex: 1 1 100%;
    flex-direction: column;
    gap: 0;
    margin: 10px 0 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 9px 0; }
  .site-nav__group { position: static; }
  .site-nav__toggle { width: 100%; justify-content: space-between; padding: 9px 0; }
  .site-nav__drop {
    position: static;
    min-width: 0;
    margin: 0 0 6px;
    padding: 4px 0 4px 14px;
    background: transparent;
    border: 0;
    border-left: 2px solid rgba(255,255,255,.22);
    border-radius: 0;
    box-shadow: none;
  }
  .site-nav__drop a { color: #dce9f8; padding: 8px 0; }
  .site-nav__drop a:hover, .site-nav__drop a:focus-visible { color: #ffffff; background: transparent; }
  .header-burger { display: block; margin-left: auto; }
  .site-header__inner { flex-wrap: wrap; }
  .lang-switch { order: 2; margin-left: 10px; }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .hero { padding: 42px 20px 34px; }
  .hero h1 { font-size: 33px; letter-spacing: -.3px; }
  .hero__sub { font-size: 16.5px; }
  .hero__stat b { font-size: 25px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .lead { font-size: 18px; }
  .prose h2, h2.section-title, .faq-block__heading { font-size: 25px; padding-left: 13px; border-left-width: 4px; }
  .prose h3, h3.sub-title { font-size: 21px; }
  .panel, .callout, .toc { padding: 22px 20px; }
  .bonus-card { padding: 20px 18px; }
  .spec, .test { padding: 20px 18px; }
  .test__name { font-size: 19px; }
  .verdict { padding: 34px 22px; }
  .verdict__title { font-size: 25px; }
  .verdict__cta { padding: 14px 28px; width: 100%; }
  .cta-row { margin: 4px 0 24px; }
  .cta-row .btn { display: block; width: 100%; padding: 14px 20px; }
  .bonus-card__name { font-size: 20px; }
  .columns { height: 150px; }
  .legend__note { margin-left: 0; flex: 1 1 100%; }
  .site-footer__copy { margin-left: 0; flex: 1 1 100%; }
}

@media (max-width: 480px) {
  :root { --pad: 16px; }
  .hero h1 { font-size: 28px; }
  .hero__stat { flex: 1 1 50%; border-right: 0; border-bottom: 1px solid #4670aa; }
  .bonus-card__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .test__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .test__foot { flex-direction: column; align-items: stretch; }
  .bonus-card__foot { flex-direction: column; align-items: stretch; }
  /* column flex makes flex-basis apply to HEIGHT - reset it or the button
     grows into a 220px block */
  .bonus-card__cta { flex: 0 0 auto; width: 100%; padding: 14px 20px; }
  .toc__list, .toc__list ul { flex-direction: column; gap: 0; }
}

@media print {
  .site-header, .site-footer, .popup-overlay, .cta-row, .hero__actions { display: none; }
  .verdict__cta, .test__cta { display: none; }
  body { background: #ffffff; }
}
