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

:root {
  --primary: #17184B;
  --accent: #D8E63C;
  --blue: #273287;
  --lilac: #D6B4FC;
  --light-gray: #D3DDE7;
  --warm-white: #F0EEE9;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--primary);
  font-family: 'Inter', sans-serif;
  color: var(--warm-white);
}

#network-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.02em;
  color: var(--warm-white);
  line-height: 1;
}

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

.dot {
  color: var(--lilac);
}

.tagline {
  margin-top: 1.2rem;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--light-gray);
  max-width: 500px;
  line-height: 1.6;
  opacity: 0.85;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1.8rem 0;
  opacity: 0.6;
}

.status {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--lilac);
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
