:root {
  --brand: #a855f7;
  --brand-dark: #7e22ce;
  --shade: #110a1c;
  --paper: #110a1c;
  --paper-soft: #1a1029;
  --rule: rgba(168,85,247,.18);
  --ink: #f0e9ff;
  --ink-soft: rgba(255,255,255,.6);
  --space: 80px;
  --corner: 14px;
  --glow: 0 0 32px rgba(168,85,247,.18);
  --type-head: 'Manrope', system-ui, -apple-system, sans-serif;
  --type-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --hue-shift: 10deg;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--type-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--type-head);
  margin-bottom: 0.5em;
  font-weight: 700;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; margin-top: 1em; }
h3 { font-size: 1.5em; }

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  filter: hue-rotate(10deg);
}

.page-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .page-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--type-head);
  font-size: 1.5em;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-link {
  color: var(--ink);
  transition: color 0.3s;
}

.header-link:hover {
  color: var(--brand);
}

.header-link.cta-acc {
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--corner);
  text-decoration: none;
}

.header-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-burger {
    display: block;
  }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper-soft);
    padding: 1rem;
    gap: 1rem;
  }
}

section {
  padding: var(--space) 0;
}

.intro, .comparison, .top-pick, .methodology, .guides, .faq, .cta-block, .risk-strip {
  background: var(--paper);
}

.metrics {
  background: var(--paper-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: var(--space) 0;
}

.metric {
  text-align: center;
}

.metric-n {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--brand);
}

.metric-l {
  font-size: 0.9em;
  color: var(--ink-soft);
}

.intro h1 {
  margin-bottom: 0.5em;
}

.intro p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  color: var(--ink-soft);
}

.intro-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.intro-cta a {
  padding: 0.75rem 1.5rem;
  border-radius: var(--corner);
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}

.intro-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pill {
  background: var(--paper-soft);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9em;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
}

.cta-acc {
  background: var(--brand);
  color: #fff !important;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-acc:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.cta-out {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  cursor: pointer;
  transition: background 0.3s;
}

.cta-out:hover {
  background: var(--brand);
  color: #fff;
}

.tbl-cmp {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  border-radius: var(--corner);
  overflow: hidden;
}

.tbl-cmp thead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.tbl-cmp th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--brand);
}

.tbl-cmp td {
  padding: 1rem;
  border-bottom: 1px solid var(--rule);
}

.tbl-cmp tr:hover {
  background: rgba(168,85,247,.08);
}

.tbl-badge {
  background: var(--brand);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75em;
  margin-left: 0.5rem;
}

.top-pick {
  background: var(--paper-soft);
}

.top-pick-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
}

.brand-logo {
  width: 100%;
  border-radius: var(--corner);
}

.brand-header {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--paper-soft);
  border-radius: var(--corner);
}

.brand-caption {
  font-size: 0.9em;
  color: var(--ink-soft);
}

.rating-block {
  text-align: center;
  padding: 2rem;
  background: var(--paper-soft);
  border-radius: var(--corner);
  margin: 2rem 0;
}

.big-rating {
  font-size: 2em;
  color: var(--brand);
  margin-bottom: 0.5em;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros, .cons {
  padding: 1.5rem;
  border-radius: var(--corner);
  background: var(--paper-soft);
}

.pros h3, .cons h3 {
  color: var(--brand);
  margin-bottom: 1em;
}

.pros ul, .cons ul {
  list-style: none;
}

.pros li::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: bold;
}

.cons li::before {
  content: "⚠ ";
  color: #ff9800;
}

.pros li, .cons li {
  margin-bottom: 0.75em;
  line-height: 1.5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step-card {
  padding: 1.5rem;
  background: var(--paper-soft);
  border-radius: var(--corner);
  border: 1px solid var(--rule);
}

.step-num {
  font-size: 2em;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 0.5em;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.guide-card {
  padding: 1.5rem;
  background: var(--paper-soft);
  border-radius: var(--corner);
  border: 1px solid var(--rule);
}

.guide-card h3 {
  margin-bottom: 1em;
}

.guide-card a {
  color: var(--brand);
}

.faq-items {
  margin: 2rem 0;
}

.qna {
  margin-bottom: 1rem;
  background: var(--paper-soft);
  border-radius: var(--corner);
  overflow: hidden;
  border: 1px solid var(--rule);
}

.qna-q {
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  color: var(--ink);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-size: 1em;
}

.qna-q::after {
  content: " ▼";
  float: right;
  transition: transform 0.3s;
}

.qna.open .qna-q::after {
  transform: rotate(180deg);
}

.qna-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.qna.open .qna-a {
  max-height: 1000px;
  padding: 1rem;
}

.cta-block {
  text-align: center;
  padding: var(--space) 0;
}

.cta-block h2 {
  margin-bottom: 0.5em;
}

.cta-block a {
  padding: 1rem 2rem;
  border-radius: var(--corner);
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.risk-strip {
  background: rgba(255, 152, 0, 0.1);
  border-left: 4px solid #ff9800;
  padding: 1.5rem;
  margin: var(--space) 0;
  border-radius: var(--corner);
}

.risk-strip p {
  margin: 0;
  line-height: 1.8;
}

.footer {
  background: var(--paper-soft);
  border-top: 1px solid var(--rule);
  padding: var(--space) 0 2rem;
  margin-top: var(--space);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  margin-bottom: 1em;
  color: var(--brand);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.5em;
}

.footer a {
  color: var(--ink);
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--brand);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.9em;
}

.gdpr {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--rule);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: var(--glow);
  display: none;
}

.gdpr.open {
  display: block;
}

.gdpr-content h3 {
  margin-bottom: 0.5em;
  color: var(--brand);
}

.gdpr-content p {
  margin-bottom: 1em;
  font-size: 0.9em;
}

.gdpr-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.gdpr-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--corner);
  cursor: pointer;
  font-weight: 600;
}

#consent-accept {
  background: var(--brand);
  color: #fff;
}

#consent-reject, #consent-options {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.gdpr-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  z-index: 999;
  display: none;
}

.gdpr-reopen.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9em;
  color: var(--ink-soft);
}

.breadcrumb a {
  color: var(--brand);
}

.byline {
  font-size: 0.9em;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.byline i {
  margin-right: 0.5em;
}

table.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table.spec-table tr {
  border-bottom: 1px solid var(--rule);
}

table.spec-table td {
  padding: 1rem;
}

table.spec-table td:first-child {
  font-weight: 600;
  color: var(--brand);
  width: 30%;
}

.guides-list, .guides-grid, .alt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.guide-item, .alt-card {
  padding: 1.5rem;
  background: var(--paper-soft);
  border-radius: var(--corner);
  border: 1px solid var(--rule);
}

.alt-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--corner);
  margin-bottom: 1rem;
}

.not-found-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  h1 { font-size: 1.8em; }
  h2 { font-size: 1.3em; }
  .pros-cons { grid-template-columns: 1fr; }
  .intro-cta { flex-direction: column; }
  .top-pick-content { grid-template-columns: 1fr; }
}
-----
