:root {
  color-scheme: dark;
  --bg: #05060a;
  --panel: #0c111b;
  --panel-alt: #111828;
  --text: #f3f5f7;
  --muted: #bac1cc;
  --accent: #2bb3ff;
  --accent-strong: #1557ff;
  --stroke: #1e2a3a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #0d1422 0%, #06070d 45%, #020207 100%);
  color: var(--text);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.nav img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 2.2rem + 1.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: var(--text);
  box-shadow: 0 10px 30px rgba(14, 111, 255, 0.3);
}

.btn.secondary {
  background: var(--panel-alt);
  color: var(--text);
  border: 1px solid var(--stroke);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.metrics div {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
}

.metrics strong {
  display: block;
  font-size: 1.4rem;
}

.metrics span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: linear-gradient(145deg, #0f1725, #0c111a);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(3, 8, 20, 0.6);
  display: grid;
  gap: 24px;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.card-info h3 {
  margin-bottom: 12px;
}

.card-info p {
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.grid article {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  min-height: 180px;
}

.grid h3 {
  margin-bottom: 12px;
}

.grid p {
  color: var(--muted);
  line-height: 1.6;
}

.highlight {
  background: linear-gradient(120deg, rgba(25, 71, 156, 0.22), rgba(5, 14, 32, 0.9));
  border: 1px solid rgba(43, 179, 255, 0.3);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.highlight h2 {
  margin-bottom: 12px;
}

.highlight p {
  color: var(--muted);
  line-height: 1.7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  background: var(--panel-alt);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--stroke);
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
