:root {
  --bg: #0a0d12;
  --bg-elev: #11151c;
  --bg-card: #161b24;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e7eaef;
  --text-dim: rgba(231, 234, 239, 0.65);
  --text-muted: rgba(231, 234, 239, 0.45);
  --accent: #5ec4ff;
  --accent-dim: rgba(94, 196, 255, 0.16);
  --max-width: 720px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease;
}
a:hover { border-bottom-color: var(--accent); }

main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 96px;
}

header {
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}

header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  border: none;
}

header .brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

header nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

header nav a {
  color: var(--text-dim);
  border-bottom: none;
}

header nav a:hover { color: var(--text); }

footer {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

footer a {
  color: var(--text-muted);
  border-bottom: none;
}
footer a:hover { color: var(--text-dim); }

h1, h2, h3 {
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 6px;
  color: var(--text);
}

p { margin: 0 0 14px; color: var(--text-dim); }

ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--text-dim);
}

li { margin-bottom: 4px; }

.lede {
  font-size: 18px;
  color: var(--text);
}

.meta {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero {
  padding: 28px 0 12px;
}

.tagline {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p {
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 560px) {
  main { padding: 40px 20px 64px; }
  h1 { font-size: 28px; }
  .cards { grid-template-columns: 1fr; }
  header nav { gap: 14px; }
}
