/* ==========================================================================
   Import Car 360 - Minimalist Coming Soon Stylesheet
   ========================================================================== */

:root {
  --bg-main: #080c14;
  --accent-cyan: #00d2ff;
  --accent-blue: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #00d2ff 0%, #3b82f6 100%);
  --text-main: #ffffff;
  --text-muted: #64748b;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html, body {
  height: 100%;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

/* Fondo con resplandor ambiental sutil */
.ambient-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 700px);
  height: min(90vh, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 75%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Envoltorio centrado */
.site-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 1.5rem;
}

/* Contenedor central Hero */
.hero {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

/* Logotipo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.35));
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.logo-text .highlight {
  color: var(--accent-cyan);
}

/* Texto COMING SOON */
.coming-soon {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-left: 0.22em; /* Compensa visualmente el espaciado de letras */
  background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 20px rgba(0, 210, 255, 0.2));
  line-height: 1;
}

/* Footer sutil */
.footer {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
  }

  .coming-soon {
    letter-spacing: 0.15em;
    margin-left: 0.15em;
  }
}
