* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow: hidden;
  background: #000;
  color: #fff;
}

/* ================= SPACE BACKGROUND ================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(120, 80, 255, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200, 169, 106, 0.08), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 180, 255, 0.06), transparent 60%);
  filter: blur(80px);
  opacity: 1;
  animation: drift 20s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,-20px) scale(1.1); }
}

/* grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  pointer-events: none;
}

/* vignette */
.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}

/* ================= CANVAS ================= */

#globe {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ================= HERO LAYOUT ================= */

.hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  z-index: 10;
}

.left {
  max-width: 600px;
  position: relative;
}

.right {
  width: 50%;
}

/* ================= LEFT PANEL FLOAT ================= */

.hero .left {
  animation: panelFloat 7s ease-in-out infinite;
}

@keyframes panelFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* ================= TEXT BASE ================= */

.brand {
  font-size: 12px;
  letter-spacing: 0.6em;
  color: #c8a96a;
  margin-bottom: 20px;
  opacity: 0.85;
}

.subtitle {
  font-size: 2.5rem;
  letter-spacing: 0.35em;
  color: #c8a96a;
  margin-top: 10px;
  animation: subtitleFloat 5s ease-in-out infinite;
}

@keyframes subtitleFloat {
  0%,100% { transform: translateY(0px); opacity: 0.9; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.desc {
  margin-top: 20px;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 480px;
  animation: descFlow 6s ease-in-out infinite;
}

@keyframes descFlow {
  0%,100% { opacity: 0.65; transform: translateY(0px); }
  50% { opacity: 0.85; transform: translateY(-2px); }
}

.coming-soon {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid #c8a96a;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: #c8a96a;
  animation: corePulse 3.5s ease-in-out infinite;
}

@keyframes corePulse {
  0% { transform: translateY(0px); box-shadow: 0 0 0 rgba(200,169,106,0); }
  50% { transform: translateY(-3px); box-shadow: 0 0 25px rgba(200,169,106,0.25); }
  100% { transform: translateY(0px); box-shadow: 0 0 0 rgba(200,169,106,0); }
}

/* ================= TITLE CINEMATIC CORE ================= */

.title {
  font-size: 5rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  color: #fff;
  text-shadow:
    0 0 25px rgba(200,169,106,0.25),
    0 0 60px rgba(77,225,255,0.08);

  animation: titleBreath 6s ease-in-out infinite;
}

/* breathing cinematic motion */
@keyframes titleBreath {
  0%,100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.02); filter: brightness(1.15); }
}

/* ================= GLITCH LAYERS ================= */

.title::before,
.title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.title::before {
  color: #c8a96a;
  transform: translateX(-2px);
  animation: glitchA 3.5s infinite linear;
}

.title::after {
  color: #4de1ff;
  transform: translateX(2px);
  animation: glitchB 2.8s infinite linear;
}

@keyframes glitchA {
  0% { clip-path: inset(0 0 90% 0); }
  20% { clip-path: inset(25% 0 60% 0); }
  40% { clip-path: inset(50% 0 30% 0); }
  60% { clip-path: inset(10% 0 70% 0); }
  80% { clip-path: inset(70% 0 10% 0); }
  100% { clip-path: inset(0 0 90% 0); }
}

@keyframes glitchB {
  0% { clip-path: inset(80% 0 0 0); }
  25% { clip-path: inset(40% 0 30% 0); }
  50% { clip-path: inset(10% 0 60% 0); }
  75% { clip-path: inset(60% 0 20% 0); }
  100% { clip-path: inset(80% 0 0 0); }
}

/* ================= SCAN LIGHT SWEEP ================= */

.hero .left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(77,225,255,0.08) 45%,
    rgba(200,169,106,0.06) 50%,
    transparent 55%
  );
  transform: translateX(-120%);
  animation: scanSweep 7s infinite ease-in-out;
  pointer-events: none;
}

@keyframes scanSweep {
  0% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 0 5%;
  }

  .right {
    width: 100%;
    height: 50%;
  }

  .title {
    font-size: 2.8rem;
  }
}