:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --border: #1e1e2e;
  --accent: #ff5c35;
  --accent2: #ff8a5c;
  --text: #f0f0f5;
  --muted: #8888aa;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.nav-cta {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  transition: border-color 0.2s, color 0.2s;
}

.nav-cta:hover { border-color: var(--accent); color: var(--accent); }

/* HERO */
.hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: rgba(255,92,53,0.12);
  color: var(--accent2);
  border: 1px solid rgba(255,92,53,0.3);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-sub em { color: var(--text); font-style: normal; }

/* SLOTS */
.slots-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.slots-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.slots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  width: 0%;
  transition: width 1s ease;
}

.slots-text { font-size: 0.9rem; color: var(--muted); }
.slots-remaining { color: var(--text); font-weight: 700; font-size: 1.1rem; }

/* CTA BUTTON */
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(255,92,53,0.3);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,92,53,0.45);
}

.hero-fine {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

/* HOW IT WORKS */
.how {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.how-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.how-step p { color: var(--muted); font-size: 0.95rem; }

/* COMPARE */
.compare {
  padding: 5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  text-align: center;
}

.compare h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-col {
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: left;
}

.compare-them {
  background: var(--surface);
  border: 1px solid var(--border);
  opacity: 0.7;
}

.compare-us {
  background: rgba(255,92,53,0.08);
  border: 1px solid rgba(255,92,53,0.3);
}

.compare-col h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-us h3 { color: var(--accent2); }

.compare-col ul { list-style: none; }
.compare-col li { padding: 0.4rem 0; font-size: 0.95rem; color: var(--muted); }
.compare-us li { color: var(--text); }

/* CTA BOTTOM */
.cta-bottom {
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-bottom h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

/* FOOTER */
footer {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

footer a { color: var(--muted); }

@media (max-width: 600px) {
  .compare-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
}
