:root {
  --bg: #08090b;
  --bg-soft: #121418;
  --text: #f2f3f5;
  --muted: #a3a7af;
  --line: #2a2f38;
  --brand: #e8281e;
  --brand-soft: #ff473d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(
      900px circle at 85% -10%,
      rgba(232, 40, 30, 0.28),
      transparent 52%
    ),
    var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 20px rgba(232, 40, 30, 0.7);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  margin-bottom: 14px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.2;
}

p {
  margin: 0 0 10px;
}

ul {
  margin: 10px 0;
  padding-left: 18px;
}

li {
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 860px) {
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }
}
