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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  background: #f5f5f5;
  overflow-x: clip;
}

.landing {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 1.75rem);
  padding-top: max(clamp(1rem, 4vw, 1.75rem), env(safe-area-inset-top, 0px));
  padding-right: max(clamp(1rem, 4vw, 1.75rem), env(safe-area-inset-right, 0px));
  padding-bottom: max(clamp(1rem, 4vw, 1.75rem), env(safe-area-inset-bottom, 0px));
  padding-left: max(clamp(1rem, 4vw, 1.75rem), env(safe-area-inset-left, 0px));
}

.landing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.35rem);
  width: 100%;
  max-width: min(100%, 26rem);
}

.logo {
  display: block;
  width: clamp(11.25rem, 52vw, 18.75rem);
  max-width: 100%;
  height: auto;
}

.tagline {
  margin: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-size: clamp(0.875rem, 2.6vw + 0.55rem, 1.0625rem);
  line-height: 1.55;
  color: #2a2a2a;
  hyphens: auto;
  overflow-wrap: break-word;
}

.tagline-faded {
  opacity: 0.52;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 0.85rem);
  margin-top: 0.15rem;
}

.social-link {
  display: inline-flex;
  line-height: 0;
  border-radius: 0.25rem;
  opacity: 0.82;
  transition: opacity 0.15s ease;
}

.social-link:hover {
  opacity: 1;
}

.social-link:focus-visible {
  outline: 2px solid #2a2a2a;
  outline-offset: 3px;
  opacity: 1;
}

.social-icon {
  display: block;
  width: clamp(1.125rem, 3.2vw, 1.375rem);
  height: auto;
  max-width: 100%;
}
