:root {
  --bg: #0b0e11;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(243,186,47,0.12);
  --gold: #f3ba2f;
  --gold-soft: #c99400;
  --text: #f8fafc;
  --muted: #8b949e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
}

/* Background */

.gradient-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(243,186,47,.08),
      transparent 30%),
    radial-gradient(circle at bottom left,
      rgba(243,186,47,.04),
      transparent 25%);
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .03;
  background-image:
    radial-gradient(#fff 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  z-index: -2;
}

/* NAV */

.navbar {
  width: 100%;
  padding: 28px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
    background-image: url('logo.png');
    background-position: center;
    width: 200px;
    height: 100px;
    background-size: cover;
}


.gold-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(243,186,47,.9);
}

.nav-btn {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  padding: 12px 18px;
  border-radius: 999px;
  transition: .3s ease;
}

.nav-btn:hover {
  border-color: rgba(243,186,47,.3);
  transform: translateY(-2px);
}

/* HERO */

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 8%;
}

.hero-content {
  max-width: 600px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(243,186,47,.15);
  background: rgba(243,186,47,.05);
  color: #d7b460;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 30px;
  font-size: 14px;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: .95;
  letter-spacing: -3px;
  margin-bottom: 26px;
}

.subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.primary-btn {
  border: none;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--gold),
    #d6a11f
  );
  color: #111;
  font-weight: 700;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 15px;
  transition: .3s ease;
  box-shadow:
    0 10px 40px rgba(243,186,47,.2);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 50px rgba(243,186,47,.25);
}

/* VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb-container {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orb-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(243,186,47,.18),
      transparent 70%);
  filter: blur(50px);
  animation: pulse 8s infinite ease-in-out;
}

.orb {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(243,186,47,.08);
  background:
    radial-gradient(circle at top,
      rgba(255,255,255,.08),
      rgba(255,255,255,.02));
  backdrop-filter: blur(30px);
  animation: float 8s ease-in-out infinite;
}

.core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      var(--gold),
      #b88b1f);
  box-shadow:
    0 0 80px rgba(243,186,47,.4);
}

.ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(243,186,47,.12);
  border-radius: 50%;
}

.ring-1 {
  width: 150px;
  height: 150px;
}

.ring-2 {
  width: 220px;
  height: 220px;
  animation: spin 18s linear infinite;
}

.ring-3 {
  width: 280px;
  height: 280px;
  animation: spinReverse 20s linear infinite;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}

.p1 {
  top: 10%;
  left: 50%;
}

.p2 {
  bottom: 20%;
  left: 15%;
}

.p3 {
  right: 10%;
  top: 40%;
}

.p4 {
  bottom: 12%;
  right: 22%;
}

/* FOOTER */

footer {
  padding: 30px;
  text-align: center;
  color: var(--muted);
}

footer p {
  margin-bottom: 8px;
}

/* Animations */

@keyframes spin {
  from {
    transform:
      translate(-50%, -50%)
      rotate(0deg);
  }
  to {
    transform:
      translate(-50%, -50%)
      rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform:
      translate(-50%, -50%)
      rotate(360deg);
  }
  to {
    transform:
      translate(-50%, -50%)
      rotate(0deg);
  }
}

@keyframes float {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes pulse {
  0%,100% {
    transform: scale(1);
    opacity: .6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Responsive */

@media (max-width: 980px) {

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 40px;
  }

  .hero-content {
    margin: auto;
  }

  .subtitle {
    margin-inline: auto;
  }

  .orb-container {
    width: 360px;
    height: 360px;
  }

  .orb {
    width: 220px;
    height: 220px;
  }

  .ring-3 {
    width: 220px;
    height: 220px;
  }
}