:root {
  --bg: #0b0d0b;
  --card: #121613;
  --text: #f2eee6;
  --muted: #a8afa9;
  --line: rgba(255, 255, 255, 0.08);
  --green: #2d8a52;
  --green-soft: rgba(45, 138, 82, 0.14);
  --amber: #c88a14;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "SF Pro Text", system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(45, 138, 82, 0.14), transparent 38%),
    var(--bg);
  color: var(--text);
}

a {
  color: var(--text);
}

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.hero,
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.hero {
  margin-bottom: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #b9efcb;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(45, 138, 82, 0.16);
}

h1, h2 {
  margin: 18px 0 12px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
}

h2 {
  font-size: 22px;
}

p, li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(200, 138, 20, 0.35);
  color: #f0c776;
  border-radius: 999px;
  background: rgba(200, 138, 20, 0.08);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card + .card {
  margin-top: 16px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  background: rgba(255,255,255,0.03);
}

ul {
  padding-left: 20px;
}

.meta {
  margin-top: 20px;
  font-size: 14px;
  color: #858b86;
}
