@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(../fonts/heading.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(../fonts/heading-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(../fonts/body.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(../fonts/body-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --accent: #e87cad;
  --accent-dark: #c65a8f;
  --dark: #2a1a1a;
  --bg: #fdf8f5;
  --bg-soft: #f5ebe3;
  --border: #e8d9cb;
  --text: #2a1a1a;
  --muted: rgba(0,0,0,.55);
  --rhythm: 88px;
  --radius: 18px;
  --shadow: 0 6px 28px rgba(0,0,0,.05);
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0 0 .6em; }
h3 { font-size: 1.2rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: .7em 1.4em;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.1;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.cta:hover { transform: translateY(-1px); }
.cta-acc { background: var(--accent); color: #fff; }
.cta-acc:hover { background: var(--accent-dark); }
.cta-out { border-color: var(--accent); color: var(--accent-dark); background: transparent; }
.cta-out:hover { background: var(--accent); color: #fff; }
.cta-ghost { background: transparent; color: var(--text); border-color: var(--border); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }
.block { padding: var(--rhythm) 0; }
.block-soft { background: var(--bg-soft); }
.block-dark { background: var(--dark); color: #fff; }
.block-dark h2 { color: #fff; }
.block-intro { color: var(--muted); max-width: 620px; margin-bottom: 2em; }

.nav { background: var(--bg); border-bottom: 1px solid var(--border); padding: 18px 0; }
.nav-top { display: flex; align-items: center; justify-content: center; position: relative; }
.nav-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-menu { display: flex; justify-content: center; gap: 28px; margin-top: 14px; }
.nav-link { color: var(--text); text-decoration: none; font-weight: 500; font-size: .95rem; }
.nav-link:hover { color: var(--accent-dark); }
.nav-toggle { display: none; position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: 0; width: 40px; height: 40px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); }

.lead { text-align: center; }
.lead-sub { font-size: 1.1rem; color: var(--muted); max-width: 680px; margin: 0 auto 1.6em; }
.lead-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8em; }
.lead-tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lead-tag { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: .35em 1em; font-size: .85rem; color: var(--text); }
.lead-list { text-align: left; }
.lead-list .lead-sub { margin-left: 0; }

.rank-wrap { list-style: none; counter-reset: rank; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.rank {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--bg);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}
.rank-lead { outline: 2px solid var(--accent); }
.rank-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--accent); min-width: 40px; text-align: center; }
.rank-body { flex: 1; min-width: 0; }
.rank-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.rank-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--text); text-decoration: none; }
.rank-name:hover { color: var(--accent-dark); }
.rank-badge { background: var(--accent); color: #fff; font-size: .72rem; font-weight: 600; padding: .25em .7em; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; }
.rank-focus { color: var(--muted); margin: 0 0 .6em; }
.rank-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .9rem; }
.rank-facts strong { color: var(--text); font-weight: 600; }
.rank-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; min-width: 170px; }
.rank-review { font-size: .85rem; color: var(--accent-dark); text-decoration: none; }
.rank-review:hover { text-decoration: underline; }

.mini-logo { border-radius: 50%; flex-shrink: 0; }

.rate { display: inline-flex; align-items: center; gap: 8px; }
.rate-bar { display: inline-block; width: 90px; height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.rate-bar > span { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.rate-num { font-weight: 700; color: var(--text); font-size: .95rem; }
.rate-bar-sm { width: 120px; }

.top-pick { background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 28px; }
.pick-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pick-tab { background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff; padding: .5em 1.1em; border-radius: 999px; font: inherit; font-weight: 600; cursor: pointer; }
.pick-tab.is-active { background: var(--accent); border-color: var(--accent); }
.pick-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pick-head h3 { color: #fff; margin: 0; }
.pick-head .rank-badge { margin-left: auto; }
.pick-panel .rate-bar { background: rgba(255,255,255,.18); }
.pick-bullets { margin: 0 0 1em; padding-left: 1.2em; }
.pick-bullets li { margin-bottom: .3em; }
.pick-panel p { color: rgba(255,255,255,.85); }

.stats { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; text-align: center; }
.stat { flex: 1; min-width: 140px; background: var(--bg); border: none; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 16px; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.stat-lbl { display: block; color: var(--muted); font-size: .9rem; margin-top: 4px; }

.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proc-card { background: var(--bg); border: none; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.proc-num { display: inline-block; font-size: .8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }

.qa-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.qa-item { background: var(--bg); border: none; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.qa-q { width: 100%; text-align: left; background: none; border: 0; font: inherit; font-weight: 600; font-size: 1.02rem; color: var(--text); padding: 20px 22px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qa-chev { flex-shrink: 0; transition: transform .25s ease; color: var(--accent); }
.qa-item.is-open .qa-chev { transform: rotate(180deg); }
.qa-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.qa-a > div { overflow: hidden; }
.qa-item.is-open .qa-a { grid-template-rows: 1fr; }
.qa-a p { margin: 0; padding: 0 22px 20px; color: var(--muted); }

.cta-band { text-align: center; }
.cta-band .block-intro { margin-left: auto; margin-right: auto; }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guide-card { background: var(--bg); border: none; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; text-decoration: none; color: var(--text); display: block; transition: transform .12s ease; }
.guide-card:hover { transform: translateY(-2px); }
.guide-card p { color: var(--muted); }
.guide-more { color: var(--accent-dark); font-weight: 600; font-size: .9rem; }

.news-form { display: flex; gap: 12px; max-width: 480px; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 200px; padding: .7em 1em; border: 1px solid var(--border); border-radius: 999px; font: inherit; }

.risk-bar { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 20px 0; }
.risk-bar p { margin: 0; font-size: .88rem; color: var(--muted); text-align: center; }

.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.4em; }
.crumbs a { color: var(--accent-dark); text-decoration: none; }
.review-head-rate { display: flex; align-items: center; gap: 12px; margin-bottom: 1em; }
.byline { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--muted); margin-bottom: 1.6em; }
.byline svg { color: var(--accent); }
.brand-head { text-align: center; margin: 1.6em 0; }
.brand-head-logo { margin: 0 auto 10px; border-radius: 50%; }
.brand-head-cap { font-size: .9rem; color: var(--muted); }
.review-hero-cta { margin-bottom: 1.8em; }
.review-lead { font-size: 1.12rem; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 2em 0; }
.pros, .cons { background: var(--bg-soft); border-radius: var(--radius); padding: 22px 24px; }
.pros ul, .cons ul { margin: 0; padding-left: 1.1em; }
.pros li, .cons li { margin-bottom: .4em; }
.score-table { width: 100%; border-collapse: collapse; margin: 1em 0 2em; }
.score-table td { padding: 10px 8px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.score-table td:first-child { font-weight: 500; }
.score-n { text-align: right; font-weight: 700; white-space: nowrap; }
.alt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.alt-card { background: var(--bg-soft); border-radius: var(--radius); padding: 20px; }
.alt-card .mini-logo { margin-bottom: 8px; }
.alt-card p { color: var(--muted); font-size: .92rem; }

.editor-card { display: flex; gap: 18px; align-items: flex-start; background: var(--bg-soft); border-radius: var(--radius); padding: 24px; margin: 1em 0 2em; }
.editor-avatar { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }
.editor-name { font-weight: 700; margin: 0; }
.editor-role { color: var(--accent-dark); font-size: .9rem; margin: 0 0 .6em; }
.editor-bio { color: var(--muted); margin: 0; }

.error-block { text-align: center; }
.error-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2em; }
.error-card { background: var(--bg-soft); border-radius: var(--radius); padding: 22px; text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 4px; }
.error-card span { color: var(--muted); font-size: .9rem; }

.gdpr { position: fixed; left: 0; right: 0; bottom: 0; background: var(--bg); border-top: 1px solid var(--border); box-shadow: 0 -6px 28px rgba(0,0,0,.08); padding: 18px 0; z-index: 50; }
.gdpr-text { margin: 0 0 12px; font-size: .9rem; color: var(--muted); }
.gdpr-prefs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.gdpr-row { font-size: .9rem; display: flex; gap: 8px; align-items: center; }
.gdpr-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.gdpr-reopen { position: fixed; left: 16px; bottom: 16px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 40; box-shadow: var(--shadow); }

.foot { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 40px 0 28px; }
.foot-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.foot-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text); text-decoration: none; }
.foot-logo span { color: var(--accent); }
.foot-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-nav a { color: var(--text); text-decoration: none; font-size: .92rem; }
.foot-nav a:hover { color: var(--accent-dark); }
.foot-copy { margin: 0; color: var(--muted); font-size: .88rem; }
.ft-bottom { padding-top: 18px; }
.foot-disclosure { font-size: .82rem; color: var(--muted); margin: 0 0 10px; }
.foot-legal { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.foot-legal a { font-size: .82rem; color: var(--muted); text-decoration: none; }
.foot-legal a:hover { color: var(--accent-dark); }
.foot-entity { font-size: .8rem; color: var(--muted); margin: 0; }
.foot-entity a { color: var(--accent-dark); }

@media (max-width: 1024px) {
  .proc-grid, .guide-grid, .alt-grid, .error-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { display: none; flex-direction: column; gap: 14px; margin-top: 16px; }
  .nav-menu.open { display: flex; }
  .rank { flex-direction: column; align-items: stretch; }
  .rank-side { align-items: stretch; min-width: 0; }
  .rank-side .cta { width: 100%; }
  .proscons { grid-template-columns: 1fr; }
  .proc-grid, .guide-grid, .alt-grid, .error-cards { grid-template-columns: 1fr; }
  .foot-grid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .lead-actions { flex-direction: column; }
  .lead-actions .cta { width: 100%; }
}
