﻿:root {
  --black: #0b0b0c;
  --surface: #141416;
  --surface-2: #1d1d1f;
  --text: #f5f5f5;
  --muted: #b3b3b3;
  --line: #2b2b2f;
  --radius: 16px;
  --transition: 140ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.lead {
  color: var(--muted);
  max-width: 720px;
}

.note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.card {
  display: grid;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  border-color: #3a3a3f;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.card h2 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  width: fit-content;
}

@media (max-width: 600px) {
  .page {
    padding: 2.5rem 1.25rem 3rem;
  }
}
