:root {
  color-scheme: light;
  --bg: #f7fbfa;
  --bg-soft: #edf6f3;
  --ink: #202334;
  --muted: #64706f;
  --accent: #11d9bb;
  --line: rgba(32, 35, 52, 0.12);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(17, 217, 187, 0.42);
  text-underline-offset: 0.18em;
}

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

.soon {
  width: min(100% - 32px, 920px);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(56px, 9vw, 96px) 0;
}

.soon-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.logo {
  width: clamp(136px, 28vw, 260px);
  height: auto;
  border-radius: 25%;
  filter: drop-shadow(0 24px 42px rgba(32, 35, 52, 0.18));
}

.eyebrow {
  margin: clamp(28px, 5vw, 44px) 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 13vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.status {
  margin: clamp(18px, 3.8vw, 30px) 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 650;
}

.site-footer {
  width: min(100% - 32px, 920px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 560px) {
  .site-footer {
    min-height: 104px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
