:root {
  color-scheme: dark;
  --bg: #202626;
  --surface: #2A3338;
  --text: #e0e4e4;
  --muted: #99a3a3;
  --accent: #c0cece;
  --rule: #3a4444;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100% - 2.5rem, 620px);
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.hero {
  margin-bottom: 2.5rem;
}

.logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto;
}

h2 {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.panel {
  background: none;
  border: none;
  border-radius: 0;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
}

.panel + .panel {
  margin-top: 0;
}

.business-footer {
  margin-top: 1.6rem;
  padding-top: 0;
  border-top: none;
}

.business-footer p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.business-footer p + p {
  margin-top: 0.2rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 640px) {
  .page {
    width: min(100% - 4rem, 620px);
    padding-top: 5rem;
  }
}
