/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --base: #2B1237;
  --deep: #1A0A22;
  --accent: #B9E24B;
  --accent2: #8B5CF0;
  --surface: #F6F2F8;
  --ink: #1E1224;
  --muted: #6B5C74;

  --radius: 8px;
  --container: 1120px;

  --font-heading: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--surface);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--base);
  line-height: 1.25;
}

h1 {
  font-size: 2.0rem;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 1.55rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover,
a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

ul {
  list-style: none;
}

em {
  font-style: italic;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ============================================================
   UTILITY STRIP
   ============================================================ */
.utility-strip {
  background-color: var(--deep);
  color: var(--muted);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.age-notice {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.utility-right {
  color: var(--muted);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background-color: var(--base);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  flex-wrap: wrap;
}

/* WORDMARK */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  cursor: pointer;
  user-select: none;
  line-height: 1;
  gap: 0;
}

.wordmark:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.wordmark-q {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(185, 226, 75, 0.45);
}

.wordmark-h {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.wordmark-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent2);
  letter-spacing: -0.03em;
  margin-left: 0.05em;
}

.wordmark--footer .wordmark-q,
.wordmark--footer .wordmark-h,
.wordmark--footer .wordmark-num {
  font-size: 1.6rem;
}

/* MAIN NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.main-nav a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  color: #ffffff;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--deep);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(185, 226, 75, 0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #cdf060;
  box-shadow: 0 4px 16px rgba(185, 226, 75, 0.5);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(185, 226, 75, 0.3);
}

.btn-primary:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.btn-large {
  font-size: 1rem;
  padding: 0.7rem 2rem;
}

.nav-cta {
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
}

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 60%, #3d1850 100%);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 2.5rem 0;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
}

.banner-text {
  flex: 1 1 0;
}

.banner-label {
  display: inline-block;
  background-color: var(--accent2);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
  margin-top: 0;
  line-height: 1.3;
}

.banner-headline .accent-text,
.accent-text {
  color: var(--accent);
}

.banner-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.banner-terms {
  flex: 0 0 auto;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(185, 226, 75, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  min-width: 240px;
}

.banner-terms ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner-terms li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  padding: 0.3rem 0;
  padding-left: 1.4em;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.banner-terms li:last-child {
  border-bottom: none;
}

.banner-terms li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.review-article > p,
.review-article > h2,
.review-article > h3,
.review-article > h1 {
  max-width: 72ch;
}

.article-intro {
  font-size: 1.05rem;
  color: var(--muted);
  border-left: 4px solid var(--accent2);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   TABLE SCROLL WRAPPER
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

/* ============================================================
   TABLES — no zebra, thin horizontal rules, accent header text
   ============================================================ */
.facts-table,
.payments-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
  background-color: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
}

.facts-table thead tr,
.payments-table thead tr {
  background-color: var(--base);
}

.facts-table thead th,
.payments-table thead th {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--accent);
}

.facts-table tbody tr,
.payments-table tbody tr {
  border-bottom: 1px solid rgba(107, 92, 116, 0.2);
}

.facts-table tbody tr:last-child,
.payments-table tbody tr:last-child {
  border-bottom: none;
}

.facts-table tbody td,
.payments-table tbody td {
  padding: 0.65rem 1rem;
  color: var(--ink);
  vertical-align: top;
}

.facts-table tbody td:first-child,
.payments-table tbody td:first-child {
  font-weight: 600;
  color: var(--base);
}

.facts-table tbody tr:hover,
.payments-table tbody tr:hover {
  background-color: rgba(139, 92, 240, 0.05);
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
section {
  margin-bottom: 2.5rem;
}

section:last-child {
  margin-bottom: 0;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background-color: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid rgba(107, 92, 116, 0.2);
  border-bottom: 1px solid rgba(107, 92, 116, 0.2);
}

.faq-section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

/* FAQ ACCORDION — CSS only via details/summary */
.faq-item {
  border-bottom: 1px solid rgba(107, 92, 116, 0.25);
  margin-bottom: 0;
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(107, 92, 116, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--base);
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

/* CSS-only rotating chevron */
.faq-question::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--accent2);
  border-bottom: 2.5px solid var(--accent2);
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.2s;
  margin-right: 0.25rem;
  margin-top: -3px;
}

.faq-item[open] .faq-question::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

.faq-item[open] .faq-question {
  color: var(--accent2);
}

.faq-question:hover {
  color: var(--accent2);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-answer {
  padding: 0.25rem 0.25rem 1.25rem 0.25rem;
  color: var(--ink);
  font-size: 0.96rem;
  max-width: 72ch;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.card {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(43, 18, 55, 0.1), 0 1px 3px rgba(43, 18, 55, 0.06);
  border: 1px solid rgba(107, 92, 116, 0.15);
  transition: box-shadow 0.25s, transform 0.2s;
  overflow: visible;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(43, 18, 55, 0.15), 0 2px 6px rgba(43, 18, 55, 0.08);
  transform: translateY(-2px);
}

/* Circled numeral in the corner */
.card-numeral {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: var(--accent2);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(139, 92, 240, 0.45);
  line-height: 1;
}

.card h3 {
  font-size: 1.05rem;
  margin-top: 0.75rem;
  margin-bottom: 0.6rem;
  color: var(--base);
}

.card p {
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0;
}

/* ============================================================
   FINAL CTA BLOCK
   ============================================================ */
.final-section {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(107, 92, 116, 0.15);
  box-shadow: 0 2px 12px rgba(43, 18, 55, 0.08);
}

.cta-block {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.cta-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  border-top: 3px solid var(--base);
  padding: 2.5rem 0 1.5rem;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer-brand .footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-links h3,
.footer-responsible h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

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

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-responsible p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--accent2);
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(139, 92, 240, 0.4);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer {
  font-size: 0.73rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  line-height: 1.55;
}

/* ============================================================
   BONUS BANNER MID
   ============================================================ */
.bonus-banner--mid {
  background: linear-gradient(135deg, #1f0d30 0%, var(--base) 55%, #3a1248 100%);
  border-top-color: var(--accent2);
  border-bottom-color: var(--accent2);
  margin-top: 0;
  margin-bottom: 0;
}

/* ============================================================
   BREAKPOINT: 640px
   ============================================================ */
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .banner-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .banner-terms {
    flex: 0 0 260px;
  }

  .banner-headline {
    font-size: 1.85rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .cta-block {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

/* ============================================================
   BREAKPOINT: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .main-nav {
    gap: 0.15rem;
  }

  .main-nav a {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }

  .banner-headline {
    font-size: 2rem;
  }

  .banner-terms {
    flex: 0 0 300px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .facts-table,
  .payments-table {
    min-width: 0;
  }

  .utility-strip {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ============================================================
   FOCUS VISIBLE GLOBAL FALLBACK
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 3px solid var(--accent2);
  outline-offset: 3px;
}