*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #0B0E14;
  color: #F8FAFC;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #06B6D4;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

.mesh-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.mesh-orb--violet {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
}

.mesh-orb--teal {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  animation-direction: alternate-reverse;
  animation-duration: 15s;
}

@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, 30px) scale(1.08);
  }
}
.coming-soon {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-bottom: 5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 6vw, 4rem);
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.coming-soon__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 249, 157, 0.1);
  border: 1px solid rgba(217, 249, 157, 0.25);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D9F99D;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #D9F99D;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.coming-soon__headline {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #F8FAFC;
  margin: 0 0 1rem;
}
.coming-soon__headline span {
  background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon__sub {
  font-size: 1rem;
  color: rgba(248, 250, 252, 0.55);
  max-width: 36ch;
  margin: 0 auto 2rem;
}

.notify-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.notify-form input[type=email] {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.625rem;
  padding: 0.6875rem 1rem;
  color: #F8FAFC;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.notify-form input[type=email]::placeholder {
  color: rgba(248, 250, 252, 0.55);
}
.notify-form input[type=email]:focus {
  border-color: rgba(139, 92, 246, 0.6);
}
.notify-form button[type=submit] {
  background: #D9F99D;
  color: #0B0E14;
  border: none;
  border-radius: 0.625rem;
  padding: 0.6875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.notify-form button[type=submit]:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.notify-form button[type=submit]:active {
  transform: translateY(0);
}

.notify-success {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #D9F99D;
  font-weight: 600;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.875rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: blur(8px);
}
.site-footer a {
  color: rgba(248, 250, 252, 0.55);
}
.site-footer a:hover {
  color: #F8FAFC;
}
