:root {
  color-scheme: dark;
  font-family: "Inter", "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(91, 39, 245, 0.25), transparent 50%),
    #050506;
  color: #f2f2f2;
}

a {
  color: inherit;
}

.hero {
  padding: 32px clamp(20px, 5vw, 96px) 64px;
  background: linear-gradient(120deg, rgba(5, 5, 20, 0.95), rgba(22, 7, 55, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7c4dff;
  display: inline-block;
}

.hero__links {
  display: inline-flex;
  gap: 24px;
  font-size: 14px;
  opacity: 0.85;
}

.hero__links a {
  text-decoration: none;
}

.hero__ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background: linear-gradient(120deg, #8c52ff, #5c3dff);
  color: #fff;
  box-shadow: 0 8px 24px rgba(92, 61, 255, 0.35);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #e0e0e0;
  background: transparent;
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.hero__body {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 12px 0 16px;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.6;
}

.hero__actions {
  display: inline-flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.hero__panel {
  display: grid;
  gap: 16px;
}

.stat-card {
  background: rgba(3, 4, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.stat-value {
  font-size: 28px;
  font-weight: 600;
  margin-top: 8px;
}

main {
  padding: 64px clamp(20px, 5vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.muted {
  background: rgba(255, 255, 255, 0.02);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section__header h2 {
  margin: 8px 0;
  font-size: clamp(28px, 3vw, 40px);
}

.card-grid,
.resource-panel,
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card,
.resource-card {
  background: rgba(6, 6, 12, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  min-height: 160px;
}

.card h3,
.resource-card h3 {
  margin-top: 0;
}

.card a,
.resource-card a {
  color: #8f7fff;
  text-decoration: none;
  font-weight: 500;
}

.soon-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(143, 127, 255, 0.15);
  font-size: 12px;
  margin-top: 12px;
}

.dev-footer {
  text-align: center;
  padding: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

@media (max-width: 768px) {
  .hero__nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__links {
    order: 3;
    flex-wrap: wrap;
    gap: 12px;
  }

  .section.muted {
    padding: 32px;
  }
}
.dev-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.dev-contact-form input,
.dev-contact-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 10, 24, 0.8);
  color: #f5f5ff;
  padding: 10px 12px;
  font-size: 14px;
}

.dev-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.dev-contact-form button {
  align-self: flex-start;
}
