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

body {
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top, #2a2a2a 0%, #111 35%, #050505 100%);
  color: #f2f2f2;
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  position: relative;
  max-width: 760px;
  width: 100%;
  text-align: center;
  padding: 80px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.svg-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 32px;
}

.orb {
  width: 100%;
  height: 100%;
  animation: float 6s ease-in-out infinite;
}

.circle,
.line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 1.5;
  transform-origin: center;
}

.circle-1 {
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: draw 3s ease forwards, rotate 18s linear infinite;
}

.circle-2 {
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  animation: draw 3s 0.4s ease forwards, rotateReverse 14s linear infinite;
}

.circle-3 {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 3s 0.8s ease forwards, pulse 3s ease-in-out infinite;
}

.line {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 2s 1s ease forwards;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #aaa;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
  margin-bottom: 24px;
}

.description {
  max-width: 520px;
  margin: 0 auto 36px;
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  font-size: 0.9rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e5e5e5;
  animation: blink 1.4s infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.35;
    transform: scale(1.08);
  }
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes blink {
  50% {
    opacity: 0.25;
    transform: scale(0.75);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 56px 24px;
    border-radius: 24px;
  }

  .svg-wrap {
    width: 170px;
    height: 170px;
  }
}
