:root {
  --brand: #a855f7;
  --brand-dark: #7e22ce;
  --shade: #0a0612;
  --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);
  --ff-h: 'Manrope', system-ui, -apple-system, sans-serif;
  --ff-b: 'Manrope', system-ui, -apple-system, sans-serif;
  --hue-shift: 0deg;
}

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

body {
  font-family: var(--ff-b);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-h);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

.section:nth-child(odd) { background: var(--paper-soft); }

.nav {
  background: var(--shade);
  color: var(--ink);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--glow);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }

.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168,85,247,.15);
  border: 1px solid var(--rule);
  border-radius: var(--corner);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--ink);
}

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

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

.tbl-cmp th {
  background: rgba(168,85,247,.1);
  font-weight: 700;
  color: var(--brand);
}

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

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

.tbl-logo {
  margin-right: 0.5rem;
  vertical-align: middle;
}

.tbl-badge {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.top-pick {
  background: rgba(168,85,247,.1);
  border: 1px solid var(--rule);
  border-radius: var(--corner);
  padding: 2rem;
  margin: 2rem 0;
}

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

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

.proc-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 1rem;
}

.qna {
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
}

.qna-q {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--brand);
  user-select: none;
}

.qna-q i {
  margin-right: 0.5rem;
  transition: transform 0.3s;
}

.qna[open] > .qna-q i {
  transform: rotate(180deg);
}

.qna-a {
  padding: 1rem 0 1rem 1.5rem;
  color: var(--ink-soft);
}

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

.guide-card h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.guide-card a { color: var(--brand); text-decoration: none; }
.guide-card a:hover { text-decoration: underline; }

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

.button-acc {
  background: var(--brand);
  color: white;
}

.button-acc:hover {
  background: var(--brand-dark);
}

.button-out {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

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

.foot {
  background: var(--shade);
  color: var(--ink);
  padding: 3rem 0;
  border-top: 1px solid var(--rule);
}

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

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

.risk-bar {
  background: rgba(168,85,247,.1);
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  border-radius: 4px;
  line-height: 1.8;
}

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

.gdpr-prefs {
  display: none;
}

.gdpr.open .gdpr-prefs {
  display: block;
}

.gdpr-row {
  margin: 0.75rem 0;
}

.gdpr-row label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

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

.gdpr-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: var(--glow);
  transition: 0.3s;
}

.gdpr-reopen:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--shade); padding: 1rem; }
  .tbl-cmp { font-size: 0.9rem; }
  .tbl-cmp th, .tbl-cmp td { padding: 0.75rem; }
  .button { padding: 0.5rem 1rem; font-size: 0.9rem; }
  .gdpr { padding: 1rem; }
}
