:root {
  --green: #22c55e;
  --yellow: #eab308;
  --red: #ef4444;
  --gray: #94a3b8;
  --bg: #0f172a;
  --surface: #1e293b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #3b82f6;
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: #052e16;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid #334155;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
}

.stats-bar {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  margin: 40px auto;
  max-width: 700px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
}

.legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.dot.available { background: var(--green); }
.dot.limit { background: var(--yellow); }
.dot.empty { background: var(--red); }
.dot.unknown { background: var(--gray); }

section {
  padding: 48px 0;
}

section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
}

.feature h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
}

.faq-item {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
}

.cta {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.08));
}

footer {
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid #334155;
}

@media (max-width: 600px) {
  .hero { padding: 40px 0 24px; }
  .stats-bar { gap: 16px; }
}
