:root {
  --c-acc: #a855f7;
  --c-acc-dark: #7e22ce;
  --c-dark: #0a0612;
  --c-bg: #110a1c;
  --c-bg-soft: #1a1029;
  --c-border: rgba(168,85,247,.18);
  --c-text: #f0e9ff;
  --c-muted: rgba(255,255,255,.6);
  --rhythm: 80px;
  --radius: 14px;
  --shadow: 0 0 32px rgba(168,85,247,.18);
  --ff-h: 'Manrope', system-ui, -apple-system, sans-serif;
  --ff-b: 'Manrope', system-ui, -apple-system, sans-serif;
  --hue-shift: 0deg;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--ff-h); font-weight: 700; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a { color: var(--c-acc); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.sec {
  padding: var(--rhythm) 0;
  background: var(--c-bg);
}

.sec-dark { background: var(--c-dark); }

.sec-soft { background: var(--c-bg-soft); }

.hd {
  background: var(--c-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.hd-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
}

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

.hd-link {
  color: var(--c-muted);
  transition: color 0.3s;
}

.hd-link:hover { color: var(--c-acc); }

.hd-burger {
  display: none;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 120px 0;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; }

.hero p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--c-muted); }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-chips {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.chip {
  display: inline-block;
  background: rgba(168,85,247,.2);
  color: var(--c-text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.trust-bar {
  background: var(--c-bg-soft);
  padding: var(--rhythm) 0;
}

.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item { padding: 1rem; }

.trust-n {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-acc);
  margin-bottom: 0.5rem;
}

.trust-l { font-size: 1rem; color: var(--c-muted); }

.cmp {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cmp thead {
  background: var(--c-bg-soft);
}

.cmp th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--c-border);
}

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

.cmp tbody tr:last-child td { border-bottom: none; }

.cmp tbody tr:hover { background: rgba(168,85,247,.05); }

.cmp a { color: var(--c-acc); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-acc {
  background: var(--c-acc);
  color: #fff;
}

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

.btn-outline {
  border: 1px solid var(--c-acc);
  color: var(--c-acc);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(168,85,247,.1);
  text-decoration: none;
}

.edit-big {
  background: var(--c-bg-soft);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.ep-badge {
  display: inline-block;
  background: var(--c-acc);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.ep-rating {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--c-acc);
}

.edit-big ul {
  margin: 1rem 0 1rem 2rem;
}

.edit-big li {
  margin-bottom: 0.5rem;
}

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

.meth-card {
  background: var(--c-bg-soft);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  text-align: center;
}

.meth-num {
  font-size: 3rem;
  color: var(--c-acc);
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-item {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--c-bg-soft);
  transition: background 0.3s;
}

.faq-q:hover { background: rgba(168,85,247,.1); }

.faq-icon {
  display: inline-block;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

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

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 1.25rem;
}

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

.guide-card {
  background: var(--c-bg-soft);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  display: block;
  transition: all 0.3s;
}

.guide-card:hover {
  border-color: var(--c-acc);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.guide-card h3 { margin-bottom: 0.5rem; }

.guide-card p { color: var(--c-muted); margin-bottom: 1rem; }

.read-more {
  color: var(--c-acc);
  font-weight: 600;
}

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

.proscons h3 { margin-bottom: 1rem; }

.proscons ul {
  list-style: none;
  margin: 0;
}

.proscons li {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

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

.alt-card {
  background: var(--c-bg-soft);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.alt-card h4 {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.alt-card .rating { color: var(--c-acc); margin-bottom: 0.5rem; }

.inline-logo {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.bp {
  text-align: center;
  padding: 2rem;
  background: var(--c-bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  margin-bottom: 2rem;
}

.bp-logo {
  margin-bottom: 1rem;
}

.bp-cap {
  font-size: 0.95rem;
  color: var(--c-muted);
}

.fact-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

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

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

.fact-table td:first-child {
  font-weight: 600;
  width: 40%;
}

.score-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

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

.score-table td {
  padding: 0.75rem 1rem;
}

.score-table td:first-child {
  font-weight: 600;
}

.score-table td:last-child {
  color: var(--c-acc);
  text-align: right;
}

.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--c-muted);
}

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

.rating-block {
  font-size: 1.3rem;
  margin: 0.5rem 0 1rem;
  color: var(--c-acc);
}

.byline {
  font-size: 0.95rem;
  color: var(--c-muted);
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
}

.byline i { margin-right: 0.25rem; }

.risk-strip {
  background: rgba(168,85,247,.1);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 3rem;
}

.risk-strip p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.ft {
  background: var(--c-dark);
  color: var(--c-text);
  padding: var(--rhythm) 0;
  margin-top: 3rem;
}

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

.ft h4, .ft h5 {
  margin-bottom: 1rem;
}

.ft a {
  color: var(--c-acc);
}

.ft ul {
  list-style: none;
}

.ft ul li {
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0,0,0,.3);
}

.cookie-banner.hidden {
  display: none;
}

.cb-content {
  max-width: 1280px;
  margin: 0 auto;
}

.cb-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cb-content p {
  margin-bottom: 1rem;
  color: var(--c-muted);
}

.cb-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cb-prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

.cb-prefs label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--c-text);
}

.cb-prefs input {
  margin-right: 0.5rem;
}

.cb-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-acc);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.cb-reopen.show {
  display: flex;
}

@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .proscons { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hd-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--c-dark);
    padding: 1rem;
    gap: 1rem;
  }

  .hd-nav.open {
    display: flex;
  }

  .hd-burger {
    display: block;
  }

  h1 { font-size: 1.5rem; }
  
  .hero {
    padding: 60px 0;
  }

  .hero h1 { font-size: 1.8rem; }
  
  .hero-btns {
    flex-direction: column;
  }

  .meth-grid { grid-template-columns: 1fr; }
  
  .guides-grid { grid-template-columns: 1fr; }
  
  .alt-cards { grid-template-columns: 1fr; }
  
  .cmp {
    font-size: 0.9rem;
  }

  .cmp th, .cmp td {
    padding: 0.75rem;
  }

  .ft-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 15px; }
  
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  
  .hero-chips {
    flex-direction: column;
  }

  .chip { width: 100%; }

  .cmp {
    font-size: 0.8rem;
  }

  .cmp th, .cmp td {
    padding: 0.5rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .cookie-banner {
    padding: 1rem;
  }

  .cb-buttons {
    flex-direction: column;
  }

  .btn { width: 100%; text-align: center; }
}
