:root {
  --bg: #0b0b0b;
  --ink: #ecebe8;
  --mute: #8d8a84;
  --line: #242422;
  --card: #111110;
  --hover: #333330;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.page {
  height: 100dvh;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(0.85rem, 3vh, 2rem) 1.25rem clamp(0.55rem, 1.6vh, 1rem);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero {
  flex: 0 0 auto;
  margin-bottom: clamp(0.65rem, 2.4vh, 1.4rem);
}

h1 {
  font-size: clamp(1.55rem, 4.2vw, 2.25rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.35rem;
}

.lede {
  color: var(--mute);
  max-width: 28em;
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
}

.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1.4vh, 0.9rem);
  flex: 1 1 auto;
  min-height: 0;
  align-content: stretch;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(0.7rem, 2vh, 1.15rem) clamp(0.75rem, 2vw, 1.15rem);
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.card:hover {
  border-color: var(--hover);
}

.card h2 {
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  font-weight: 560;
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
}

.card p {
  color: var(--mute);
  font-size: clamp(0.82rem, 1.7vw, 0.95rem);
}

footer {
  flex: 0 0 auto;
  margin-top: clamp(0.55rem, 2vh, 1rem);
  color: var(--mute);
  font-size: 0.75rem;
}
