:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #ff3d5a;
  --accent-glow: rgba(255, 61, 90, 0.15);
  --accent-2: #5b4fff;
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255,61,90,0.25);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-gradient {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,61,90,0.12) 0%, rgba(91,79,255,0.06) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ---- SECTION SHARED ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* ---- HOW ---- */
.how {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

.how-inner {
  max-width: 860px;
  margin: 0 auto;
}

.steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,61,90,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- TIERS ---- */
.tiers {
  padding: 100px 24px;
}

.tiers-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.tiers-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 48px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}

.tier-pop {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255,61,90,0.08);
}

.tier-popular {
  position: absolute;
  top: -12px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 100px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.tier-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Tier CTA button */
.tier-cta {
  display: block;
  margin-top: 24px;
  padding: 12px 0;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, border-color 0.15s;
}
.tier-cta:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
}
.tier-cta-pop {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}
.tier-cta-pop:hover {
  background: var(--accent-hover, #e6c200);
  border-color: var(--accent-hover, #e6c200);
  color: #0a0a0a;
}

/* ---- EDGE / COMPARISON ---- */
.edge {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

.edge-inner {
  max-width: 860px;
  margin: 0 auto;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.comp-col {
  padding: 32px 28px;
  border-radius: var(--radius);
}

.comp-them {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.comp-us {
  background: linear-gradient(135deg, rgba(255,61,90,0.08), rgba(91,79,255,0.06));
  border: 1px solid rgba(255,61,90,0.2);
}

.comp-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.comp-them h3 { color: var(--fg-muted); }

.comp-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-col li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 24px;
  position: relative;
}

.comp-them li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #555;
  font-size: 0.85rem;
}

.comp-us li {
  color: var(--fg);
}

.comp-us li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .hero { min-height: 70vh; padding: 80px 20px 60px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.5rem; }
  
  .step { flex-direction: column; gap: 12px; }
  .step-number { font-size: 2rem; width: auto; }
  
  .tier-grid { grid-template-columns: 1fr; gap: 16px; }
  
  .comparison { grid-template-columns: 1fr; }
  
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  section h2 { font-size: 1.5rem; }
}