:root {
  --bg: #f5f3f2;
  --line: #d6d1cf;
  --text: #1b1d2a;
  --muted: #5e6272;
  --accent-1: #d7263d;
  --accent-2: #3b5bdb;
  --font-display: "Syne", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: clamp(16px, 4vw, 48px);
  color-scheme: light;
}

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

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  padding: calc(var(--gutter) + env(safe-area-inset-top, 0px)) var(--gutter)
    calc(var(--gutter) + env(safe-area-inset-bottom, 0px));
}

/* Main: the logo above the wordmark */
main {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 16px;
}

.map {
  display: grid;
  place-items: center;
}

/* The logo file is white on transparent: filter turns it dark for this light page */
.map img {
  width: clamp(140px, 22vw, 280px);
  height: auto;
  filter: brightness(0);
  opacity: 0.9;
}

/* Wordmark + footnote */
.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 8.5vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
}

h1 .dot {
  color: var(--accent-2);
}

.tagline {
  margin: 14px 0 0;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  color: var(--muted);
}

.year {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
