/* ══════════════════════════════════════════════
   PADAS — Coming Soon
   ══════════════════════════════════════════════ */

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

:root {
  --accent:  #8a9e7a;
  --accent2: #c8d4b8;
  --bg:      #141619;
  --text:    #e8edf2;
  --muted:   rgba(200, 212, 184, 0.55);
  --dim:     rgba(200, 212, 184, 0.28);
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  overflow: hidden;
}

/* ── Background ─────────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  background-image: url('../assets/background.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 80% at 50% 55%,
    rgba(20, 22, 25, 0.30)   0%,
    rgba(20, 22, 25, 0.80)  65%,
    rgba(20, 22, 25, 0.95) 100%
  );
}

/* ── Scan-lines ─────────────────────────────── */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent, transparent 3px,
    rgba(0, 0, 0, 0.05) 3px, rgba(0, 0, 0, 0.05) 4px
  );
}

/* ── Corner brackets ────────────────────────── */
.corner {
  position: fixed;
  width: 52px;
  height: 52px;
  opacity: 0.4;
  z-index: 3;
}

.corner--tl { top: 28px; left: 28px;  border-top: 1px solid var(--accent2); border-left:  1px solid var(--accent2); }
.corner--tr { top: 28px; right: 28px; border-top: 1px solid var(--accent2); border-right: 1px solid var(--accent2); }
.corner--bl { bottom: 28px; left: 28px;  border-bottom: 1px solid var(--accent2); border-left:  1px solid var(--accent2); }
.corner--br { bottom: 28px; right: 28px; border-bottom: 1px solid var(--accent2); border-right: 1px solid var(--accent2); }

/* ── Top status bar ─────────────────────────── */
.status-bar {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent2);
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1.4s ease 0.4s forwards;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s infinite;
}

/* ── Main stage ─────────────────────────────── */
.stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

/* ── Logo ───────────────────────────────────── */
.logo-img-wrap {
  opacity: 0;
  animation: fadeUp 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  margin-bottom: 1.8rem;
}

.logo-img {
  width: clamp(110px, 15vw, 190px);
  mix-blend-mode: lighten;
  opacity: 0.82;
}

/* ── Wordmark ───────────────────────────────── */
.wordmark {
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.wordmark-pre {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 300;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.wordmark-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  line-height: 1.18;
  color: var(--text);
}

.wordmark-dash {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  letter-spacing: 0.5em;
  color: var(--accent);
  margin-top: 0.25rem;
}

/* ── Divider ────────────────────────────────── */
.divider {
  width: 200px;
  height: 1px;
  margin: 1.8rem auto;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
}

/* ── Tagline ────────────────────────────────── */
.tagline {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s ease 1.05s forwards;
  margin-bottom: 2.6rem;
}

/* ── Under construction badge ───────────────── */
.badge-wrap {
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(138, 158, 122, 0.3);
  background: rgba(138, 158, 122, 0.07);
  backdrop-filter: blur(4px);
}

.badge-icon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}

.badge-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent2);
}

/* ── Progress bar ───────────────────────────── */
.progress-wrap {
  margin-top: 1.8rem;
  width: min(340px, 88vw);
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.5rem;
}

.progress-track {
  height: 1px;
  background: rgba(138, 158, 122, 0.15);
  position: relative;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: progressGrow 2.5s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 2px; height: 7px;
  background: var(--accent2);
  box-shadow: 0 0 6px var(--accent2);
}

/* ── Bottom coordinates ─────────────────────── */
.coords {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
}

/* ── Keyframes ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.5; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

@keyframes progressGrow {
  from { width: 0; }
  to   { width: 42%; }
}
