* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; background: #0b0b0c; }
body {
  color: #e8e8e8;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px 16px;
}
.brand { font-weight: 800; letter-spacing: 0.18em; font-size: 14px; }
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(44px, 11vw, 128px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.date {
  font-family: ui-monospace, monospace;
  font-size: clamp(18px, 3vw, 28px);
  color: #ffcc00;
  letter-spacing: 0.08em;
}
.footer { text-align: center; font-size: 12px; color: #7a7a82; }
