:root {
  --navy: #021F49;
  --green: #408A17;
  --text: #25333d;
  --muted: #66727a;
  --line: #dce5e0;
  --background: #fbfcfb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 3rem 1.25rem 2rem;
}

.brand-card {
  width: min(100%, 820px);
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(100%, 29rem);
  height: auto;
  margin: 0 auto clamp(2.75rem, 7vw, 4.5rem);
}

h1 {
  max-width: 780px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(2.4rem, 7vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.coming-soon {
  margin: 2rem 0 0;
  color: var(--green);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.rule {
  width: 52px;
  height: 2px;
  margin: 2.25rem auto 1.5rem;
  background: var(--line);
}

.company {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  padding: 0 1.25rem 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}
