:root {
  --bg: #0d1117;
  --bg-alt: #161b22;
  --bg-card: #1c2128;
  --text: #e6edf3;
  --text-dim: #8b949e;
  --gold: #f5c518;
  --gold-dark: #d4a017;
  --red: #e63946;
  --green: #2ea043;
  --border: #30363d;
  --radius: 10px;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Age gate banner */
.age-gate {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}
.age-gate a { color: #fff; text-decoration: underline; }

/* Header / Hero */
.hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,197,24,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230,57,70,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
  border-bottom: 1px solid var(--border);
}

.navbar {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.hero-content {
  padding: 80px 20px 80px;
  text-align: center;
  max-width: 850px;
}
.badge {
  display: inline-block;
  background: rgba(46,160,67,0.15);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(46,160,67,0.3);
}
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.lead strong { color: var(--text); }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(245,197,24,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.45);
}
.btn-large {
  padding: 18px 36px;
  font-size: 18px;
  width: 100%;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-mini {
  display: inline-block;
  background: var(--gold);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.trust-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 14px;
}

/* Sections */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--text);
}

p { margin-bottom: 16px; }

main a { color: var(--gold); }
main a:hover { color: var(--gold-dark); }

/* Comparison table */
.table-wrapper {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
.comparison th {
  background: var(--bg-alt);
  text-align: left;
  padding: 16px 14px;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison tr:last-child td { border-bottom: none; }
.comparison tr.featured {
  background: rgba(245,197,24,0.05);
}
.comparison tr.featured td:first-child {
  position: relative;
}
.comparison tr.featured td:first-child::before {
  content: '★';
  color: var(--gold);
  margin-right: 4px;
}
.comparison small {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
  margin-top: 2px;
}
.small-print {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.feature {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature h3 { font-size: 18px; margin-top: 0; }
.feature p { font-size: 14px; color: var(--text-dim); margin: 0; }

/* Reviews */
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  scroll-margin-top: 20px;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.review h3 {
  margin: 0 0 6px;
  font-size: 22px;
}
.stars {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}
.stars span { color: var(--text-dim); margin-left: 6px; font-weight: 400; }
.rank-badge {
  background: var(--green);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.review p { font-size: 15px; color: var(--text); }

/* Steps */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 30px 0;
}
.steps li {
  counter-increment: step;
  background: var(--bg-card);
  padding: 24px 24px 24px 80px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.steps h3 { margin-top: 0; font-size: 18px; }
.steps p { margin-bottom: 0; color: var(--text-dim); font-size: 15px; }

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, rgba(245,197,24,0.1) 0%, rgba(230,57,70,0.1) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.cta-box h3 { margin-top: 0; }

/* Bonus grid */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.bonus-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.bonus-card h4 { font-size: 17px; margin-bottom: 8px; }
.bonus-card p { font-size: 14px; color: var(--text-dim); margin: 0; }

/* Payments table */
.payments-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.payments {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
.payments th, .payments td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.payments th {
  background: var(--bg-alt);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.payments tr:last-child td { border-bottom: none; }

/* Callout */
.callout {
  background: rgba(230,57,70,0.08);
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  border-radius: 6px;
  margin: 24px 0;
  font-size: 15px;
}

/* Form */
.lead-form {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}
.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.hp {
  position: absolute !important;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
  cursor: pointer;
}
.checkbox-row input { margin-top: 3px; cursor: pointer; }
.form-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}
.form-status {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(46,160,67,0.15);
  color: var(--green);
  border: 1px solid rgba(46,160,67,0.3);
}
.form-status.error {
  display: block;
  background: rgba(230,57,70,0.15);
  color: var(--red);
  border: 1px solid rgba(230,57,70,0.3);
}

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  user-select: none;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  transition: transform .2s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item summary:hover { background: rgba(255,255,255,0.02); }
.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
}

/* Footer */
.site-footer {
  background: #06080c;
  padding: 50px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
}
.footer-grid a:hover { color: var(--gold); }
.footer-grid p { font-size: 14px; color: var(--text-dim); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1a1a;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(245,197,24,0.5);
  z-index: 100;
  transition: transform .2s;
}
.floating-cta:hover { transform: scale(1.05); }

@media (max-width: 768px) {
  .hero-content { padding: 50px 20px; }
  .nav-links { display: none; }
  .review { padding: 22px; }
  .steps li { padding: 20px 20px 20px 70px; }
  .steps li::before { left: 18px; top: 20px; width: 36px; height: 36px; font-size: 16px; }
  .floating-cta { padding: 12px 16px; font-size: 13px; bottom: 14px; right: 14px; }
  .lead-form { padding: 24px; }
}
