:root {
  --bg: #faf8fd;
  --paper: #ffffff;
  --ink: #2a2440;
  --muted: #6a637f;
  --brand: #8B6FC9;
  --brand-dark: #6f52ab;
  --accent: #c9a9e8;
  --border: #e3daf3;
  --alt-bg: #f2edfa;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

.disclosure-bar {
  width: 100%;
  background: linear-gradient(90deg, #6f52ab 0%, #8B6FC9 50%, #6f52ab 100%);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  text-align: center;
}

.disclosure-bar__inner { max-width: 1100px; margin: 0 auto; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand span { color: var(--brand); }

.site-header__nav {
  display: flex;
  gap: 1.25rem;
  flex: 1;
}

.site-header__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

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

.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: var(--paper); color: var(--brand); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--alt-bg); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

.hero { padding: 3rem 1.25rem 2.5rem; }

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
  background: var(--alt-bg);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

.lede { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.4rem; }

.cta-group { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 0.7rem; }

.affiliate-note { font-size: 0.78rem; color: var(--muted); margin: 0.4rem 0 0; }

.hero__media { display: flex; justify-content: center; }

.hero__icon-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(139,111,201,0.12);
}

.hero__icon { width: 180px; height: 180px; }

.hero__icon-caption { font-size: 0.72rem; color: var(--muted); margin: 0.5rem 0 0; }

.section { padding: 2.75rem 1.25rem; }
.section--alt { background: var(--alt-bg); }
.section__inner { max-width: 900px; margin: 0 auto; }
.section__inner--center { text-align: center; }
.section__sub { color: var(--muted); margin-top: -0.4rem; }

h2 { font-size: 1.5rem; margin: 0 0 1rem; }
h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}

.feature-card__icon { font-size: 1.6rem; color: var(--brand); margin-bottom: 0.5rem; }

.checklist { list-style: none; padding: 0; margin: 0 0 1.5rem; }

.checklist li {
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

.checklist--muted li::before { content: "•"; color: var(--muted); }

.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.7rem;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-answer { margin-top: 0.6rem; color: var(--muted); }

.section--disclaimer {
  background: var(--alt-bg);
  font-size: 0.85rem;
  color: var(--muted);
}

.section--cta { text-align: center; }

.site-footer {
  background: #221d38;
  color: #cfc7e6;
  padding: 2.5rem 1.25rem 1.25rem;
  margin-top: 1rem;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.site-footer h4 { color: #fff; margin: 0 0 0.7rem; font-size: 0.95rem; }

.site-footer ul { list-style: none; padding: 0; margin: 0; }

.site-footer li { margin-bottom: 0.45rem; font-size: 0.85rem; }

.site-footer a { color: #cfc7e6; text-decoration: none; }
.site-footer a:hover { color: #fff; }

.operator-name { color: #fff; font-weight: 700; }

.site-footer__bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem;
  color: #9c93bb;
}

.operator-geo-note { font-size: 0.85em; color: var(--muted); font-weight: 400; }

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--paper);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.12);
  padding: 1rem 1.25rem;
  display: none;
}
.cookie-consent.is-visible { display: block; }
.cookie-consent__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.85rem;
}
.cookie-consent__text { font-size: 0.85rem; color: var(--ink); max-width: 640px; margin: 0; }
.cookie-consent__buttons { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-consent__buttons button {
  font-family: inherit; font-size: 0.85rem; font-weight: 700;
  padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer; border: 1px solid var(--border);
}
.cookie-consent__accept { background: var(--brand); color: #fff; border-color: var(--brand); }
.cookie-consent__accept:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.cookie-consent__reject { background: transparent; color: var(--ink); }
.cookie-consent__reject:hover { background: var(--alt-bg); }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-header__nav { display: none; }
}
