/* Landing temporal Kromia Studio */
:root {
  --c1: #23d5d5;
  --c2: #8b5cf6;
  --c3: #ff4f7a;
  --c4: #ffbf2f;
  --bg: #070b18;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    Segoe UI,
    Arial,
    sans-serif;
  background: var(--bg);
  color: #fff;
  overflow: hidden;
}
.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 85%,
      rgba(35, 213, 213, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(139, 92, 246, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(255, 79, 122, 0.18),
      transparent 25%
    ),
    #070b18;
}
.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.logo {
  width: min(320px, 70vw);
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}
h2 {
  letter-spacing: 0.45rem;
  color: #ddd;
  font-size: 0.95rem;
}
h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0.5rem 0;
}
h1 span {
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  -webkit-background-clip: text;
  color: transparent;
}
.subtitle {
  opacity: 0.85;
  margin-bottom: 2rem;
}
.loader {
  width: 90px;
  height: 90px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--c1);
  border-right-color: var(--c3);
  border-bottom-color: var(--c2);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#status {
  margin: 1rem 0 2rem;
  color: #cfcfcf;
}
.services {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.services div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.mail {
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}
footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.85rem;
  color: #999;
}
