:root {
  color-scheme: light;
  --background: #ff00ff;
  --text: #160014;
  --muted: rgba(22, 0, 20, 0.72);
  --line: rgba(22, 0, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 64px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}

.brand {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-stretch: expanded;
  line-height: 1;
}

.header-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
}

.header-note:last-child {
  text-align: right;
}

.landing {
  display: grid;
  min-height: calc(100vh - 64px);
  place-items: center;
  padding: 48px 24px;
}

.intro {
  width: min(100%, 680px);
  text-align: center;
}

.kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.96;
  font-weight: 750;
}

.summary {
  max-width: 460px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .site-header {
    min-height: 56px;
    padding: 0 18px;
  }

  .header-note {
    font-size: 11px;
  }

  .landing {
    min-height: calc(100vh - 56px);
    padding: 40px 20px;
  }

  h1 {
    font-size: 42px;
  }
}
