:root {
  --bg: #ffffff;
  --text: #101828;
  --muted: #475467;
  --accent: #0b6a88;
  --accent-soft: #e7f4f8;
  --line: #d0e6ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
}

.panel {
  position: relative;
  width: min(680px, 100%);
  text-align: center;
  padding: 42px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.07);
}

.logo {
  width: min(220px, 62vw);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.description {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.notify-button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.notify-button:hover,
.notify-button:focus-visible {
  transform: translateY(-1px);
  background: #095a73;
  box-shadow: 0 12px 26px rgba(11, 106, 136, 0.28);
}

.glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.glow-top {
  width: 360px;
  height: 360px;
  top: -130px;
  right: -100px;
  background: radial-gradient(circle, rgba(11, 106, 136, 0.17) 0%, rgba(11, 106, 136, 0) 70%);
}

.glow-bottom {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -200px;
  background: radial-gradient(circle, rgba(11, 106, 136, 0.12) 0%, rgba(11, 106, 136, 0) 72%);
}

@media (max-width: 520px) {
  .panel {
    padding: 34px 20px;
    border-radius: 16px;
  }

  .description {
    font-size: 0.96rem;
  }
}
