:root {
  --bg: #09090b;
  --bg-2: #111113;
  --bg-3: #18181b;
  --border: #27272a;
  --text: #fafafa;
  --muted: #71717a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent); text-decoration: none; }
code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.875em;
  color: var(--accent);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav a:hover { color: var(--text); }

/* Button */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 8px;
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.88; }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover { opacity: 0.75; }

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

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

/* How it works */
.how-it-works {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.how-it-works h2,
.pricing h2,
.faq h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-align: center;
}

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

.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step strong { color: var(--text); }

/* Pricing */
.pricing {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 12px;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

#priceDisplay {
  font-size: inherit;
  font-weight: inherit;
  color: var(--accent);
  letter-spacing: inherit;
}

.price-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.features-list {
  list-style: none;
  margin-bottom: 24px;
}

.features-list li {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li:last-child { border-bottom: none; }

.features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.example-box {
  background: var(--accent-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text);
}

.example-box strong { color: var(--accent); }

/* FAQ */
.faq {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.15s;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-answer {
  display: none;
  padding-bottom: 20px;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-answer strong { color: var(--text); }


/* Discord / discount callout */
.discord-note {
  max-width: 520px;
  margin: 20px auto 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.discord-note strong { color: var(--text); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Other tools section */
.other-tools-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.other-tools-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.tool-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tool-icon {
  font-size: 2rem;
}

.tool-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.tool-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.other-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.other-tool-link {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.other-tool-link:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .nav { gap: 16px; }
  .nav a:not(:last-child) { display: none; }
  .footer .container { flex-direction: column; text-align: center; }
  .tools-grid { grid-template-columns: 1fr; }
}
