:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --text: #1a1a18;
  --muted: #5c5a54;
  --border: #ddd9d0;
  --accent: #0f4c5c;
  --accent-hover: #0a3641;
  --shadow: 0 12px 40px rgba(26, 26, 24, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #e8f1f3 0%, transparent 42%),
    var(--bg);
}

.page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.positioning {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.links {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
  outline: none;
}

.link-label {
  font-weight: 600;
}

.link-hint {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
