@font-face {
  font-family: "NetwOURks";
  src: url("fonts/NetwOURks-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --brand: #0078D4;
  --brand1: #ffffff;
  --brand2: #2c3e50;
  --brand3: #111827;
  --white: #ffffff;
  --slate: #2c3e50;
  --ink: #111827;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--white);
  font-family: "NetwOURks", "Segoe UI", system-ui, sans-serif;
  overflow: hidden;
}

#drawing_canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
}

.bg-wash {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(17, 24, 39, 0.82) 0%, rgba(17, 24, 39, 0.45) 45%, rgba(17, 24, 39, 0) 75%),
    linear-gradient(180deg, rgba(44, 62, 80, 0.35) 0%, rgba(17, 24, 39, 0.15) 40%, rgba(17, 24, 39, 0.75) 100%);
}

.stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1.5rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  animation: rise 0.9s 0.05s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(0, 120, 212, 0.7);
  animation: pulse-blue 2s infinite;
}
.dot1 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand1);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-white 2s infinite;
}

.dot2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand2);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-slate 2s infinite;
}

.dot3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand3);
  box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.7);
  animation: pulse-dark 2s infinite;
}

.wordmark {
  margin: 0;
  font-size: clamp(3rem, 13vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  animation: rise 1s 0.15s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wordmark .net { color: var(--white); }
.wordmark .our {
  background: linear-gradient(100deg, var(--brand) 0%, #00FFFF 50%, var(--brand) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}

.tagline {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.35rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  color: var(--white);
  animation: rise 1s 0.3s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tagline .accent { color: var(--brand); }

.soon {
  margin: 0;
  font-size: clamp(0.8rem, 1.8vw, 1.05rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  animation: rise 1s 0.45s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.soon .ellipsis::after {
  content: "";
  animation: dots 1.8s steps(4, end) infinite;
}

.rule {
  width: min(420px, 70vw);
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 120, 212, 0.9), transparent);
  animation: rise 1s 0.4s both ease-out;
}

.footer {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-bottom: 1px;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--brand);
  border-color: rgba(0, 120, 212, 0.9);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

@keyframes shine {
  to { background-position: 200% center; }
}

@keyframes pulse-blue {
  0% { box-shadow: 0 0 0 0 rgba(0, 120, 212, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(0, 120, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 120, 212, 0); }
}

@keyframes pulse-white {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes pulse-slate {
  0% { box-shadow: 0 0 0 0 rgba(44, 62, 80, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(44, 62, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(44, 62, 80, 0); }
}

@keyframes pulse-dark {
  0% { box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(17, 24, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 24, 39, 0); }
}

@keyframes dots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75% { content: "..."; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}
