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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(ellipse at center, #0a1f6e 0%, #050e2d 50%, #020818 100%);
  color: #ffffff;
}

.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65vw;
  max-width: 700px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.watermark img {
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(96,165,250,0.3);
  font-size: 0.85rem;
  font-weight: 400;
  color: #d1d4dc;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: #51a1ff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.wordmark {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.wordmark .white { color: #ffffff; }
.wordmark .blue  { color: #4db8ff; }

.divider {
  display: block;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 128px;
  margin: 1rem auto 2rem;
  color: transparent;
  background: transparent;
  height: 0;
  outline: none;
  box-shadow: none;
}

.subheading {
  font-size: 1.85rem;
  font-weight: 300;
  color: #d1d4dc;
  margin-bottom: 1.5rem;
}

.body-copy {
  font-size: 0.95rem;
  font-weight: 300;
  color: #7a9cc0;
  max-width: 520px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .wordmark { font-size: 2.8rem; }
  .body-copy { font-size: 0.88rem; }
  .subheading { font-size: 1.1rem; }
}
