/* ============================================
   GlobeVentures - Under Construction Page
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #060b18;
  color: #e4e8f1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* === Animated Background Gradient === */
.bg-gradient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(56, 90, 200, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(120, 60, 200, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(30, 120, 180, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #060b18 0%, #0c1628 40%, #101d35 100%);
  z-index: 0;
}

/* === Floating Particles === */
.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(140, 180, 255, 0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

.particle:nth-child(1) {
  left: 5%;
  animation-duration: 18s;
  animation-delay: 0s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(2) {
  left: 12%;
  animation-duration: 22s;
  animation-delay: -3s;
  width: 3px;
  height: 3px;
  opacity: 0.6;
}

.particle:nth-child(3) {
  left: 20%;
  animation-duration: 16s;
  animation-delay: -5s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(4) {
  left: 28%;
  animation-duration: 25s;
  animation-delay: -8s;
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

.particle:nth-child(5) {
  left: 35%;
  animation-duration: 19s;
  animation-delay: -2s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(6) {
  left: 42%;
  animation-duration: 21s;
  animation-delay: -6s;
  width: 3px;
  height: 3px;
  opacity: 0.5;
}

.particle:nth-child(7) {
  left: 50%;
  animation-duration: 17s;
  animation-delay: -1s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(8) {
  left: 58%;
  animation-duration: 24s;
  animation-delay: -9s;
  width: 3px;
  height: 3px;
  opacity: 0.4;
}

.particle:nth-child(9) {
  left: 65%;
  animation-duration: 20s;
  animation-delay: -4s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(10) {
  left: 72%;
  animation-duration: 23s;
  animation-delay: -7s;
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

.particle:nth-child(11) {
  left: 78%;
  animation-duration: 18s;
  animation-delay: -10s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(12) {
  left: 85%;
  animation-duration: 26s;
  animation-delay: -3s;
  width: 3px;
  height: 3px;
  opacity: 0.5;
}

.particle:nth-child(13) {
  left: 92%;
  animation-duration: 15s;
  animation-delay: -6s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(14) {
  left: 48%;
  animation-duration: 28s;
  animation-delay: -12s;
  width: 3px;
  height: 3px;
  opacity: 0.35;
}

.particle:nth-child(15) {
  left: 15%;
  animation-duration: 20s;
  animation-delay: -14s;
  width: 2px;
  height: 2px;
  opacity: 0.5;
}

@keyframes float-particle {
  0% {
    transform: translateY(110vh) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) translateX(40px);
    opacity: 0;
  }
}

/* === Main Content === */
.main-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  animation: content-fade-in 1.5s ease-out forwards;
  opacity: 0;
}

@keyframes content-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Globe Icon === */
.globe-container {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.globe {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, #1a3a6e 0%, #2a5eaa 40%, #3d7dd4 70%, #1a3a6e 100%);
  box-shadow:
    0 0 60px rgba(60, 120, 220, 0.3),
    0 0 120px rgba(60, 120, 220, 0.1),
    inset -8px -8px 20px rgba(0, 0, 0, 0.4),
    inset 5px 5px 15px rgba(100, 160, 255, 0.15);
  animation: globe-pulse 4s ease-in-out infinite;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease;
}

/* Globe hover: intensified glow + scale up */
.globe-wrapper:hover .globe {
  transform: scale(1.12);
  box-shadow:
    0 0 100px rgba(80, 140, 255, 0.5),
    0 0 200px rgba(80, 140, 255, 0.2),
    0 0 40px rgba(130, 180, 255, 0.3),
    inset -8px -8px 20px rgba(0, 0, 0, 0.3),
    inset 5px 5px 20px rgba(140, 190, 255, 0.25);
  animation: none;
}

/* Globe hover: speed up orbit */
.globe-wrapper:hover .globe-orbit {
  animation-duration: 2s;
  border-color: rgba(130, 180, 255, 0.35);
}

.globe-wrapper:hover .globe-orbit::after {
  width: 10px;
  height: 10px;
  background: rgba(160, 200, 255, 1);
  box-shadow: 0 0 20px rgba(160, 200, 255, 0.9), 0 0 40px rgba(130, 180, 255, 0.4);
}

/* Globe hover: speed up internal rotation */
.globe-wrapper:hover .globe::before,
.globe-wrapper:hover .globe::after {
  animation-duration: 3s;
}

.globe::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    /* Horizontal lines (latitudes) */
    repeating-linear-gradient(0deg,
      transparent,
      transparent 22px,
      rgba(100, 180, 255, 0.15) 22px,
      rgba(100, 180, 255, 0.15) 23px);
  animation: globe-rotate 8s linear infinite;
}

.globe::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    /* Vertical arc (meridian) */
    radial-gradient(ellipse 40% 100% at 50% 50%, transparent 48%, rgba(100, 180, 255, 0.18) 48%, rgba(100, 180, 255, 0.18) 50%, transparent 50%),
    radial-gradient(ellipse 70% 100% at 50% 50%, transparent 48%, rgba(100, 180, 255, 0.12) 48%, rgba(100, 180, 255, 0.12) 50%, transparent 50%);
  animation: globe-rotate 8s linear infinite;
}

/* Globe shine */
.globe-shine {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(200, 220, 255, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Orbit ring around globe */
.globe-orbit {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(100, 160, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(65deg);
  animation: orbit-spin 6s linear infinite;
  transition: border-color 0.4s ease, animation-duration 0.4s ease;
}

.globe-orbit::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(130, 180, 255, 0.8);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(130, 180, 255, 0.6);
}

@keyframes globe-pulse {

  0%,
  100% {
    box-shadow:
      0 0 60px rgba(60, 120, 220, 0.3),
      0 0 120px rgba(60, 120, 220, 0.1),
      inset -8px -8px 20px rgba(0, 0, 0, 0.4),
      inset 5px 5px 15px rgba(100, 160, 255, 0.15);
  }

  50% {
    box-shadow:
      0 0 80px rgba(60, 120, 220, 0.45),
      0 0 160px rgba(60, 120, 220, 0.15),
      inset -8px -8px 20px rgba(0, 0, 0, 0.4),
      inset 5px 5px 15px rgba(100, 160, 255, 0.15);
  }
}

@keyframes globe-rotate {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes orbit-spin {
  0% {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg);
  }
}

/* === Typography === */
.brand-name {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e0e8ff 0%, #8ab4ff 40%, #c4a0ff 70%, #e0e8ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease-in-out infinite;
  margin-bottom: 0.2rem;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.4s ease, letter-spacing 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 0 0px transparent);
}

/* Brand name hover: elegant luminous glow + expand */
.brand-name:hover {
  transform: scale(1.05);
  letter-spacing: 0.06em;
  filter: drop-shadow(0 0 25px rgba(140, 180, 255, 0.5)) drop-shadow(0 0 50px rgba(180, 160, 255, 0.3));
  animation: gradient-shift 2s ease-in-out infinite;
}

.brand-domain {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(160, 180, 220, 0.6);
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  transition: color 0.4s ease, letter-spacing 0.3s ease;
}

.brand-name:hover+.brand-domain {
  color: rgba(180, 200, 240, 0.8);
  letter-spacing: 0.22em;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* === Divider === */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(130, 170, 255, 0.5), transparent);
  margin: 0 auto 2rem;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 20px;
  height: 6px;
  background: rgba(130, 170, 255, 0.6);
  border-radius: 3px;
  filter: blur(2px);
  animation: divider-glow 3s ease-in-out infinite;
}

@keyframes divider-glow {

  0%,
  100% {
    left: 0;
    opacity: 0.4;
  }

  50% {
    left: calc(100% - 20px);
    opacity: 1;
  }
}

/* === Status Text === */
.status-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(200, 215, 240, 0.85);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.status-sub {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 300;
  color: rgba(140, 160, 200, 0.5);
  margin-bottom: 2.5rem;
}

/* === Progress Bar === */
.progress-container {
  width: 200px;
  height: 3px;
  background: rgba(100, 140, 200, 0.1);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #4a7ddd, #7b5edd, #4a7ddd);
  background-size: 200% 100%;
  border-radius: 3px;
  animation: progress-slide 2.5s ease-in-out infinite;
}

@keyframes progress-slide {
  0% {
    transform: translateX(-100%);
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    transform: translateX(350%);
    background-position: 0% 50%;
  }
}

/* === Footer === */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.5rem;
  z-index: 10;
  color: rgba(120, 140, 180, 0.35);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* === Responsive === */
@media (max-width: 480px) {
  .globe {
    width: 90px;
    height: 90px;
  }

  .globe-orbit {
    width: 130px;
    height: 130px;
  }

  .globe-container {
    margin-bottom: 2rem;
  }
}