/* ============================================================
   ARGOS · Coming Soon — index.css
   ============================================================ */

html, body {
  height: 100%;
  margin: 0;
  font-family: var(--font-ui);
}

body {
  background:
    radial-gradient(ellipse 80% 60% at 20% 110%, rgba(239,107,58,.28) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% -10%, rgba(239,107,58,.14) 0%, transparent 50%),
    #0e0d0c;
}

.wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.logo {
  width: clamp(160px, 28vw, 320px);
  height: auto;
  opacity: 0;
  animation: fadeIn .9s .2s ease forwards;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(.85rem, 1.4vw, 1rem);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: lowercase;
  color: rgba(255,255,255,.38);
  opacity: 0;
  animation: fadeIn .9s .6s ease forwards;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 1.5rem;
  right: 1.75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 10;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s ease;
  white-space: nowrap;
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 0.8px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.11);
  color: #fff;
}

.btn-accent {
  background: var(--c-accent);
  border: 0.8px solid var(--c-accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--c-accent-2);
  border-color: var(--c-accent-2);
}

/* ── Animação dos pontos ── */
.dots span {
  display: inline-block;
  animation: blink 1.4s infinite;
  opacity: 0;
}
.dots span:nth-child(1) { animation-delay: 0s;    }
.dots span:nth-child(2) { animation-delay: .22s;  }
.dots span:nth-child(3) { animation-delay: .44s;  }

@keyframes blink {
  0%, 100% { opacity: 0; }
  40%       { opacity: 1; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}