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

html,
body {
  height: 100%;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #f7f7ff;
  background: radial-gradient(circle at top left, #262347 0, #070616 52%, #04020b 100%);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(126, 103, 255, 0.8), transparent 65%);
  filter: blur(20px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  animation: float 16s ease-in-out infinite alternate;
}

.glow-1 {
  top: -180px;
  left: -120px;
}

.glow-2 {
  bottom: -220px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 128, 199, 0.8), transparent 65%);
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(20px, -18px, 0) scale(1.04);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6f5cff, #ff6fd8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.03em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.brand-tagline {
  font-size: 12px;
  color: rgba(235, 235, 255, 0.76);
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 222, 255, 0.82);
  margin-bottom: 12px;
}

.headline {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 16px;
}

.subcopy {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(226, 222, 255, 0.82);
  max-width: 480px;
}

.cta-group {
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(19, 15, 40, 0.92);
  border: 1px solid rgba(173, 160, 255, 0.46);
  backdrop-filter: blur(14px);
}

.coming-soon-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #3dffb5);
  box-shadow: 0 0 12px rgba(61, 255, 181, 0.7);
}

.hint {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(200, 197, 238, 0.86);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.card {
  position: relative;
  width: min(360px, 100%);
  padding: 20px 20px 22px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #262347 0, #0e0b24 40%, #07051a 100%);
  border: 1px solid rgba(166, 153, 255, 0.36);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(9, 7, 21, 0.9);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    conic-gradient(
      from 180deg at 50% 50%,
      rgba(111, 92, 255, 0.18),
      rgba(255, 111, 216, 0.12),
      rgba(111, 92, 255, 0.2),
      rgba(61, 255, 181, 0.12),
      transparent
    );
  opacity: 0.9;
  filter: blur(26px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.card-orbit {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 4px auto 10px;
  border-radius: 999px;
  border: 1px dashed rgba(188, 179, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-core {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: radial-gradient(circle at 30% 0, #ffffff, #b3a7ff 30%, #6f5cff 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #130f32;
  z-index: 1;
}

.core-label {
  font-weight: 700;
  font-size: 14px;
}

.core-caption {
  font-size: 11px;
  opacity: 0.8;
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6fd8, #ffc36a);
  box-shadow: 0 0 18px rgba(255, 170, 194, 0.9);
  animation: orbit 18s linear infinite;
}

.orbit-dot-1 {
  top: -7px;
  left: calc(50% - 7px);
}

.orbit-dot-2 {
  bottom: -7px;
  left: calc(15% - 7px);
  animation-delay: 4s;
}

.orbit-dot-3 {
  bottom: -7px;
  right: calc(10% - 7px);
  animation-delay: 9s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}

.card-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mini-pill {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(18, 14, 45, 0.94);
  border: 1px solid rgba(195, 186, 255, 0.5);
  color: rgba(233, 232, 255, 0.9);
}

.page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(190, 188, 229, 0.78);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .page {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    margin-bottom: 22px;
  }
}

@media (max-width: 600px) {
  .headline {
    font-size: 28px;
  }

  .card {
    width: 100%;
  }

  .page-footer {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}


