:root {
  color-scheme: light;
  --bg: #eef4f4;
  --bg-2: #dceff2;
  --bg-3: #f8f3e8;
  --text: #2f3e46;
  --muted: #5d7079;
  --accent: #3a7a85;
  --accent-hover: #2f646d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--bg), var(--bg-2) 52%, var(--bg-3));
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.4;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

body::before {
  width: 240px;
  height: 240px;
  background: #9bd5de;
  top: -70px;
  left: -60px;
}

body::after {
  width: 200px;
  height: 200px;
  background: #b8d8b8;
  bottom: -70px;
  right: -50px;
  animation-delay: 1.5s;
}

.coming-soon {
  max-width: 560px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(3px);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(47, 62, 70, 0.1);
  position: relative;
  z-index: 1;
  animation: appear 0.7s ease-out both;
}

.logo {
  width: min(220px, 60vw);
  height: auto;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
}

p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(47, 100, 109, 0.25);
}

.icon {
  display: inline-flex;
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}
