:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #172026;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  padding-bottom: calc(clamp(24px, 6vw, 72px) + 64px);
}

.brand-block {
  width: min(100%, 720px);
  display: grid;
  justify-items: center;
  gap: clamp(20px, 4vw, 32px);
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(64vw, 320px);
  max-height: 180px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 8px;
}

.brand-copy p {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-footer {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  padding: 20px clamp(24px, 6vw, 72px);
  text-align: center;
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
  line-height: 1.35;
  background: #ffffff;
}

@media (max-width: 480px) {
  .brand-logo {
    width: min(72vw, 240px);
    max-height: 140px;
  }
}
