:root {
  --bg: #0b0c10;
  --panel: #12141b;
  --text: #e9eef5;
  --muted: #b8c2cf;
  --link: #89b4ff;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.container {
  margin: 0 auto;
  max-width: 1100px;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 480px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Shared header/footer structure (matches Alert Bridge) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 12, 16, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.main-content {
  padding: 34px 0 44px 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

a {
  color: var(--link);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* Content styling */
.hero h1 {
  margin: 0 0 10px 0;
  font-size: 38px;
  letter-spacing: 0.2px;
}

.tagline {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 74ch;
}

/* Match “panel card” style used by Alert Bridge */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}

.card h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.links {
  margin: 0;
  padding-left: 18px;
}
