:root {
  --bg-color: #0F172A;
  --accent-color: #38BDF8;
  --gold-color: #FBBF24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  /* Was `height:100vh; overflow:hidden` — on phones that clipped the contact form
     and blocked scrolling. min-height lets the page grow and scroll when the content
     is taller than the screen; column keeps the footer below the content. */
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

/* Background Gradients */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--gold-color);
  bottom: -200px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
  100% { transform: translate(-50px, 100px) scale(0.9); }
}

.construction-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 520px;
  z-index: 10;
}

.logo-wrapper {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-color);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.app-logo-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow-banner {
  color: var(--accent-color);
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 1.5rem;
  text-transform: uppercase;
  background: rgba(56, 189, 248, 0.1);
  padding: 1rem 3rem;
  border-radius: 9999px;
  border: 2px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  text-align: center;
}

.contact-footer {
  /* Was position:absolute — it overlapped the contact form on mobile. In normal flow
     it simply sits below the content. */
  margin-top: 2.5rem;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  z-index: 10;
}

/* Small screens: shrink the logo/banner so everything fits and reads cleanly. */
@media (max-width: 480px) {
  .construction-container { gap: 1.5rem; }
  .logo-wrapper { width: 190px; height: 190px; }
  .eyebrow-banner { font-size: 1.1rem; letter-spacing: 3px; padding: 0.75rem 1.5rem; }
}

.contact-footer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.contact-footer a:hover {
  color: var(--gold-color);
}
