:root {
  color-scheme: light;
  --text: #17211b;
  --muted: #5a665f;
  --line: #d9dfda;
  --surface: #f6f8f5;
  --accent: #116149;
  --accent-2: #7b3f00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f8faf8 0%, #eef3ef 55%, #f7f1e8 100%);
}

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

.intro {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  line-height: 1;
}

.intro p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.grid a {
  min-height: 96px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.grid a:hover,
.grid a:focus-visible {
  border-color: var(--accent-2);
  transform: translateY(-2px);
  outline: none;
}

