:root {
  --bg-color: #ffffff;
  --text-dark: #0f172a;
  --accent-color: #0ea5e9;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

#networkCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 15%, black 60%);
  mask-image: radial-gradient(ellipse at center, transparent 15%, black 60%);
}

.content {
  text-align: center;
  max-width: 1000px;
  width: 90%;
}

.logo {
  max-width: 400px;
  width: 100%;
  margin-bottom: 30px;
  mix-blend-mode: multiply;
  animation: simpleFadeIn 1.2s ease-out both; 
}

.teaser {
  font-family: 'Outfit', sans-serif;
  font-size: 2.35rem; /* Reduced to favor a single-line presentation */
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 45px;
  color: #64748b;
  letter-spacing: -0.5px;
  animation: fadeIn 1.2s ease-out 0.8s both;
}

.text-highlight {
  font-weight: 600;
  color: #0f172a;
}

.nowrap {
  white-space: nowrap;
}

.stay-tuned-box {
  display: inline-block;
  padding: 14px 44px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border: none;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15); /* Softer, grounded shadow */
  cursor: default; /* Non-clickable */
  animation: fadeIn 1.2s ease-out 1.0s both; /* Staggered after teaser */
}

@keyframes simpleFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .teaser {
    font-size: 1.6rem;
  }
  .logo {
    max-width: 280px;
    margin-bottom: 25px;
  }
}
