/* Home - With The Market shutdown page */

body.wtm-landing {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--wtm-bg);
  color: var(--wtm-fg);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wtm-landing__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  min-height: 0;
  text-align: center;
}

.wtm-landing__logo {
  display: block;
  margin: 0;
  max-width: min(320px, 78vw);
}

.wtm-landing__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.wtm-landing__status {
  margin: 0;
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wtm-fg-muted);
}

.wtm-landing__intro {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--wtm-fg-muted);
}

.wtm-landing__contact {
  color: var(--wtm-fg);
  text-decoration: none;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

.wtm-landing__contact:hover,
.wtm-landing__contact:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.wtm-landing__contact:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

