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

* {
  box-sizing: border-box;
}

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

body {
  background-color: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.page-shell {
  width: min(100%, 720px);
  padding: 40px 32px;
  border-radius: 30px;
  background: #f2f2f2;
  box-shadow: 0 28px 80px rgba(21, 21, 21, 0.12);
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 4rem);
  letter-spacing: -0.06em;
}

.logo-wrap {
  margin: 40px auto;
  max-width: 440px;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.phone {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #444;
}

.phone,
.page-shell,
.hero {
  pointer-events: auto;
}

.phone-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(68, 68, 68, 0.5);
  padding-bottom: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  z-index: 1;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: #111;
  border-bottom-color: #111;
  outline: none;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 32px 24px;
  }

  .hero h1 {
    font-size: 3rem;
  }
}
