:root {
  --color-bg: #fafafa;
  --color-text: #1a1a1a;
  --color-muted: #6b7280;
  --color-accent: #4f7cac;
  --color-accent-hover: #3d6291;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* ── Page ── */

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 1.5vh, 1rem);
  padding: 1rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

/* ── Logo ── */

.logo {
  width: clamp(500px, 70vh, 900px);
  height: auto;
}

/* ── Links ── */

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  width: 100%;
}

.links__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.6rem;
}

.links__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0.75rem;
}

.links__item {
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.875rem, 1.8vh, 1.1rem);
  font-weight: 500;
  transition: color 0.15s ease;
}

.links__item:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* ── Quote ── */

.quote {
  font-style: italic;
  color: var(--color-muted);
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quote__text {
  font-size: clamp(0.8rem, 1.5vh, 0.95rem);
  line-height: 1.5;
}

.quote__attribution {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
}

/* ── Responsive ── */

