:root {
  --bg: #04070d;
  --card: rgba(9, 15, 27, 0.55);
  --line: rgba(119, 154, 255, 0.16);
  --text: #f4f7fd;
  --muted: #8b9bb8;
  --accent: #78c8ff;
  --email: #d9efff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(77, 130, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(120, 200, 255, 0.1), transparent 18%),
    linear-gradient(180deg, #020409 0%, #07101b 50%, #03060d 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(120, 200, 255, 0.06), transparent 0 22%),
    radial-gradient(circle at 80% 72%, rgba(77, 130, 255, 0.06), transparent 0 20%);
}

.site-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/cdl-large.svg');
  background-repeat: no-repeat;
  background-position: center 18%;
  background-size: min(1500px, 125vw);
  opacity: 0.14;
}

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

.soon {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 32px;
  box-sizing: border-box;
}

.soon-card {
  max-width: 580px;
  width: 100%;
  margin-inline: auto;
  padding: 40px 36px 44px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.soon-logo {
  margin: 0 auto 10px;
  width: min(490px, 100%);
  aspect-ratio: 245 / 256;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(77, 130, 255, 0.24));
}

.soon-title {
  margin: 0;
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 6vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.soon-line {
  margin: 22px 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.soon-email {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--email);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 239, 255, 0.35);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.soon-email:hover,
.soon-email:focus-visible {
  color: var(--accent);
  border-color: rgba(120, 200, 255, 0.55);
  outline: none;
}

.soon-foot {
  width: 100%;
  max-width: 100%;
  padding: 0 20px 28px;
  text-align: center;
  box-sizing: border-box;
}

.soon-foot p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .soon-card {
    padding: 32px 24px 36px;
  }

  .site-bg::before {
    background-position: center 12%;
    background-size: min(1200px, 140vw);
  }
}
