

```css
:root {
  --bg: #0b0f14;
  --card: #121821;
  --text: #e6edf3;
  --muted: #9aa6b2;
  --accent: #6ea8fe;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid #1f2a37;
  background: radial-gradient(1200px 400px at 20% -10%, #1d2a3a 0%, transparent 60%);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 480px;
  max-width: 95vw;
  height: auto;
}

.hero-intro {
  margin: 20px 0;
  color: var(--muted);
  max-width: 680px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta {
  background: var(--accent);
  color: #0b0f14;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.cta-note {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #0f141b;
  border-top: 1px solid #1f2a37;
  border-bottom: 1px solid #1f2a37;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.section-lead {
  color: var(--muted);
  margin: 0 0 18px;
}

.card {
  background: var(--card);
  padding: 18px;
  border: 1px solid #1f2a37;
  border-radius: 10px;
  margin-bottom: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.meta {
  color: var(--muted);
  font-size: 12px;
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid #1f2a37;
}
```

After saving, drag‑drop the folder to Netlify again to redeploy.