:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f7f7f7;
  --surface-hover: #f1f1f1;
  --text: #111111;
  --muted: #5a5a5a;
  --border: #e8e8e8;
  --shadow: 0 0px 0px rgba(0, 0, 0, 0.06);
  --radius: 9px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 48px 20px;
  text-align: center;
}

.hero,
.cards {
  width: 100%;
}

.hero {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.intro {
  margin: 14px 0 0;
  font-size: 1rem;
  color: var(--muted);
}

.cards,
.content-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}

.card {
  width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  background: var(--surface-hover);
  border-color: #dcdcdc;
}

.card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4vw, 32px);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card-link {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--text);
  word-break: break-word;
}

@media (max-width: 640px) {
  .page {
    padding: 32px 16px;
  }
}
