:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #111414;
  color: #f3f0e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(33, 82, 78, 0.35), rgba(118, 47, 31, 0.22)),
    #111414;
}

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

.hero {
  max-width: 760px;
  margin-bottom: 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9fc9bd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.95;
}

.lede {
  max-width: 620px;
  margin: 18px 0 0;
  color: #c9c3b6;
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.tile {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(243, 240, 232, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: inherit;
  text-decoration: none;
}

.tile:hover {
  border-color: rgba(159, 201, 189, 0.65);
  background: rgba(159, 201, 189, 0.11);
}

.tile strong {
  font-size: 1.35rem;
}

.tile span:last-child {
  color: #c9c3b6;
  line-height: 1.45;
}

.tile-kicker {
  color: #9fc9bd;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.muted {
  opacity: 0.78;
}
