:root {
  --bg: #0b0b0f;
  --bg-elev: #101018;
  --text: #e7e8ef;
  --muted: #a6a8b3;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.04);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --rose-1: #ff72b6;
  --violet-1: #7c4dff;
  --cyan-1: #22d3ee;
  --accent-grad: linear-gradient(135deg, var(--rose-1), var(--violet-1));
  --accent-grad-2: radial-gradient(1200px 1200px at 80% 20%, rgba(124,77,255,0.15), transparent 60%), radial-gradient(800px 800px at 20% 80%, rgba(34,211,238,0.12), transparent 50%);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page layout for scrollable presentation */
.page { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 56px 22px 120px; }
section { margin: 36px 0; }
h1, h2, h3, h4 { font-family: Unbounded, Inter, system-ui, sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h1.title { font-size: 44px; margin-bottom: 10px; }
.subtitle { font-size: 18px; color: var(--muted); margin-bottom: 20px; }

/* Global FX background */
.bg.fx-grid {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.0)),
              repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px),
              repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}

.bg.fx-glow {
  position: fixed;
  inset: -10% -10% -10% -10%;
  background: var(--accent-grad-2);
  filter: blur(30px) saturate(120%);
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
  animation: floatGlow 16s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -2%, 0) scale(1.02); }
}

/* Remove Reveal-specific rules; using simple page styles */

.grad-rose {
  background: linear-gradient(135deg, #fff, #d2ccff 30%, #ff76b8 60%, #9a7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(124, 77, 255, 0.25);
}

.pill-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.pill {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.cta-row { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #0a0a0d;
  background: var(--accent-grad);
  box-shadow: 0 10px 30px rgba(124,77,255,0.25), 0 2px 8px rgba(255,114,182,0.25);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(124,77,255,0.35), 0 4px 14px rgba(255,114,182,0.3); }
.btn-ghost {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-color: var(--line);
}
.btn-sm { padding: 10px 14px; border-radius: 10px; font-size: 14px; }
.btn-block { width: 100%; }

.lede { color: var(--muted); font-size: 20px; margin-bottom: 22px; }

.bullets { padding-left: 0; list-style: none; display: grid; gap: 8px; }
.bullets li {
  position: relative;
  padding-left: 28px;
}
.bullets li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #d2ccff 40%, #7c4dff 100%);
  box-shadow: 0 0 0 4px rgba(124,77,255,0.15), 0 2px 8px rgba(0,0,0,0.5);
}

blockquote {
  margin-top: 18px;
  padding: 16px 18px;
  color: var(--muted);
  border-left: 3px solid rgba(124,77,255,0.5);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 10px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid var(--line); border-radius: 14px; padding: 14px 14px; box-shadow: var(--shadow); backdrop-filter: blur(6px); }

.highlight-box {
  margin-top: 14px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, linear-gradient(135deg, rgba(255,114,182,0.5), rgba(124,77,255,0.5)) border-box;
  text-align: center;
}
.highlight-title { color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: 12px; margin-bottom: 4px; }
.highlight-value { font-family: Unbounded, Inter, sans-serif; font-size: 44px; font-weight: 800; background: var(--accent-grad); -webkit-background-clip: text; color: transparent; margin: 2px 0; }
.highlight-note { color: var(--muted); font-size: 14px; }

.tiers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.tier { position: relative; padding: 16px; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.tier:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(0,0,0,0.6); }
.tier-name { font-weight: 800; letter-spacing: 0.02em; font-family: Unbounded, Inter, sans-serif; margin-bottom: 8px; }
.tier .price { font-size: 24px; font-weight: 800; margin: 4px 0; }
.tier .price-note { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.tier .badge-hot { border: 1px solid rgba(255,114,182,0.4); padding: 10px 12px; border-radius: 12px; background: rgba(255,114,182,0.08); color: #ffd9ea; margin: 10px 0 14px; }
.tier .tier-bonuses { display: grid; gap: 8px; color: var(--muted); font-size: 14px; margin: 8px 0 14px; }

.guarantee {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34,211,238,0.12), rgba(124,77,255,0.12));
  border: 1px solid rgba(124,77,255,0.35);
  box-shadow: var(--shadow);
}

.faq details { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)); }
.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin-top: 8px; }

.steps { padding-left: 18px; }
.steps li { margin: 8px 0; }

/* Removed sticky CTA and modal styles */

/* Responsive */
@media (max-width: 900px) {
  h1.title { font-size: 34px; }
  .subtitle { font-size: 16px; }
  .grid-2, .tiers { grid-template-columns: 1fr; }
}
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 30px 20px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  margin: 0 10px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-bottom: 14px;
}

.footer-info p {
  margin: 4px 0;
  line-height: 1.4;
}


