* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #080b16;
  color: #f8fafc;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: rgba(8, 11, 22, 0.85);
  border-bottom: 1px solid #1e293b;
}

.logo,
.footer-logo {
  font-size: 24px;
  font-weight: 800;
}

.logo span {
  color: #22c55e;
}

.navbar nav,
footer nav {
  display: flex;
  gap: 25px;
}

.navbar a,
footer a {
  color: #cbd5e1;
}

.user {
  background: #1e293b;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 8%;
}

.badge,
.section-label {
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 10px;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  font-weight: 600;
}

h1 {
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 25px;
}

h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

h3 {
  margin: 12px 0;
}

p {
  color: #94a3b8;
  line-height: 1.7;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
}

.primary {
  background: #22c55e;
  color: #052e16;
}

.secondary {
  background: #1e293b;
  color: #f8fafc;
}

.code-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.code-header {
  padding: 15px 20px;
  background: #111827;
  color: #38bdf8;
  font-weight: 700;
}

pre {
  padding: 25px;
  overflow-x: auto;
  color: #e2e8f0;
}

.success {
  padding: 18px 20px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-weight: 700;
}

.cta,
.features,
.steps {
  padding: 90px 8%;
  text-align: center;
}

.cta {
  background: linear-gradient(135deg, #052e16, #020617);
}

.cta .buttons {
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.card,
.step {
  text-align: left;
  background: #0f172a;
  border: 1px solid #1e293b;
  padding: 30px;
  border-radius: 18px;
}

.card {
  font-size: 32px;
}

.step strong {
  color: #22c55e;
  font-size: 28px;
}

footer {
  padding: 50px 8%;
  border-top: 1px solid #1e293b;
  background: #020617;
}

footer p {
  margin: 15px 0 25px;
  max-width: 650px;
}

footer small {
  display: block;
  margin-top: 25px;
  color: #64748b;
}

@media (max-width: 900px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
  }
}

#editor {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #334155;
}