:root {
  --page-bg: #80878c;
  --frame-bg: #626c74;
  --ink: #20293a;
  --ink-soft: rgba(32, 41, 58, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--frame-bg);
}

body {
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  display: grid;
  place-items: center;
}

.viewport {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  background: var(--frame-bg);
  padding: 24px;
}

.scene {
  width: min(calc(100vw - 48px), calc((100vh - 48px) * 1129 / 750));
  height: auto;
  aspect-ratio: 1129 / 750;
  display: block;
  background: var(--page-bg);
  box-shadow: 0 24px 48px rgba(16, 22, 30, 0.18);
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-lockup {
  fill: var(--ink);
}

.brand-word {
  dominant-baseline: alphabetic;
}

.strike-zero {
  font-family: "Roboto Mono", Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.meta,
.intro {
  font-family: "Space Grotesk", sans-serif;
  fill: var(--ink-soft);
  font-size: 18px;
}

.meta {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.intro {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.003em;
}

.speech-copy {
  width: 465px;
  height: 82px;
  display: flex;
  align-items: center;
}

.speech-copy p {
  margin: 0;
  width: 100%;
  color: rgba(32, 41, 58, 0.9);
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.site-note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.8px;
  letter-spacing: 0.18em;
  fill: rgba(32, 41, 58, 0.72);
}
