:root {
  --bg: #111110;
  --bg-card: #1b1b19;
  --bg-card-hover: #222220;
  --lime: #cbe83a;
  --lime-dim: #9fb82a;
  --text: #f2f0e8;
  --text-dim: #a8a59c;
  --border: #2e2e2b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 140vw);
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(203, 232, 58, 0.14) 0%, rgba(203, 232, 58, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero {
  width: 100%;
  max-width: 900px;
  padding: clamp(2.5rem, 8vw, 5rem) 1.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.wordmark {
  width: min(100%, 560px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.tagline {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  text-transform: uppercase;
  margin-top: 1.25rem;
}

.grid {
  width: 100%;
  max-width: 900px;
  padding: 1rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--lime-dim);
  transform: translateY(-2px);
}

.card-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(203, 232, 58, 0.1);
  border: 1px solid rgba(203, 232, 58, 0.25);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  width: fit-content;
}

.card h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: 0.01em;
}

.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

.card-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  margin-top: 0.4rem;
}

footer {
  width: 100%;
  text-align: center;
  padding: 1.5rem 1rem 2.5rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

footer p { margin: 0; }
