:root {
  --brand-green: #18A225;
  --brand-orange: #FF5400;
  --brand-red: #F43535;
  --ink: #141210;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--brand-orange);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: clamp(1.25rem, 2.7vw, 3rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.logo {
  display: block;
  width: min(55vw, 40rem);
  height: auto;
}

.statement {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .page {
    gap: 2.5rem;
  }

  .logo {
    width: min(78vw, 22rem);
  }
}
