:root {
  --bg:           #081B26;
  --border:       #1A3145;
  --muted:        #B7C3D0;
  --fg:           #F4F7FA;
  --blue:         #1C6ED5;
  --blue-hover:   #2F80ED;
  --green:        #0F7A4D;
  --green-hover:  #1E9B63;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* ── Background ── */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(35deg,  #1A3145 1px, transparent 1px),
    linear-gradient(-55deg, #1A3145 1px, transparent 1px);
  background-size: 90px 90px;
}

.bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 10% 85%, rgba(15,122,77,0.18),  transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 25%, rgba(28,110,213,0.10), transparent 60%),
    radial-gradient(ellipse 500px 350px at 70% 90%, rgba(30,155,99,0.10),  transparent 60%);
}

/* ── Content ── */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
}

/* ── Logo ── */
.logo-wrap {
  width: min(480px, 84vw);
  aspect-ratio: 24 / 7;
  background: url('/assets/metrimo-logo-white.svg') no-repeat center / contain;
  opacity: 0;
  transform: translateY(-12px);
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

/* ── Coming Soon ── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(-8px);
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.coming-soon-label {
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue-hover), var(--green-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

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

.cursor {
  animation: blink 1s step-start infinite;
}

/* ── Footer ── */
footer {
  position: fixed;
  bottom: 1.5rem;
  width: 100%;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(183, 195, 208, 0.25);
  letter-spacing: 0.03em;
  user-select: none;
  z-index: 10;
}
