:root {
  --bg: #0b1020;
  --panel: #121a31;
  --text: #e8ecf9;
  --muted: #9aa6c4;
  --primary: #2dd4bf;
  --primary-dark: #14b8a6;
  --border: #26304f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #090d1a, #0b1020 20%);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.hero-content {
  padding: 3rem 0 0;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.subtitle {
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #041110;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline,
.btn-ghost {
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--primary);
}

.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.stats li,
.card {
  background: rgba(18, 26, 49, 0.7);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.stats strong {
  display: block;
}

.stats span,
.card p {
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: rgba(18, 26, 49, 0.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.tags span {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: #111932;
  color: #c8d4f2;
  text-align: center;
  font-size: 0.94rem;
}

.cta {
  padding-top: 0;
}

.cta-content {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.16), rgba(20, 184, 166, 0.06));
  border: 1px solid rgba(45, 212, 191, 0.38);
  border-radius: 1.2rem;
  padding: 2rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
}
