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

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: 'Manrope', sans-serif;
  color: #f6f1e7;
  background:
    radial-gradient(circle at top left, rgba(251, 185, 86, 0.24), transparent 30%),
    radial-gradient(circle at right center, rgba(95, 179, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #06111f 0%, #0b1830 52%, #120f1d 100%);
  overflow: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -2;
  animation: drift 16s ease-in-out infinite alternate;
}

.bg-orb-one {
  top: 8%;
  left: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 165, 102, 0.5), rgba(255, 165, 102, 0));
}

.bg-orb-two {
  right: 4%;
  bottom: 7%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(76, 169, 255, 0.45), rgba(76, 169, 255, 0));
  animation-delay: -6s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  pointer-events: none;
  z-index: -1;
}

.coming-soon {
  width: min(760px, 100%);
}

.copy-panel,
.visual-panel {
  background: rgba(8, 16, 33, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.copy-panel {
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  text-align: center;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffcf91;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.title {
  max-width: 12ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.subtitle {
  max-width: 46ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.82);
}

.contact-card {
  margin-top: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(246, 241, 231, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
}

.contact-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.contact-item:hover {
  color: #ffcf91;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .page-shell {
    padding: 18px;
  }

  .copy-panel {
    padding: 24px 20px;
  }

  .title {
    max-width: 10ch;
  }

  .contact-links {
    flex-direction: column;
    gap: 10px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(112, 240, 181, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(112, 240, 181, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(112, 240, 181, 0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }
}

@media (max-width: 980px) {
  .page-shell {
    overflow: auto;
  }

  .coming-soon {
    grid-template-columns: 1fr;
  }

  .title {
    max-width: 14ch;
  }

  .preview-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px;
  }

  .copy-panel,
  .visual-panel {
    border-radius: 22px;
  }

  .copy-panel {
    padding: 24px 18px;
  }

  .preview-card {
    padding: 18px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .orbit-wrap {
    width: min(100%, 300px);
  }

  .contact-links {
    flex-direction: column;
    gap: 10px;
  }
}
