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

:root {
  --green: #8b932d;
  --gold: #c79600;
  --cream: #f6f1df;
  --dark: #0c110b;
  --dark-soft: #141c12;
  --text-soft: #d7dccb;
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(139, 147, 45, 0.13), transparent 32%),
    linear-gradient(145deg, #0b100a 0%, #11180f 48%, #090d08 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(199, 150, 0, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  top: -320px;
  right: -180px;
}

.hero::after {
  width: 420px;
  height: 420px;
  bottom: -260px;
  left: -160px;
}

.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
  pointer-events: none;
}

.glow-one {
  background: var(--green);
  top: 5%;
  left: 8%;
}

.glow-two {
  background: var(--gold);
  right: 8%;
  bottom: 8%;
}

.content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  text-align: center;
}

.logo {
  display: block;
  width: min(255px, 72vw);
  height: auto;
  margin: 0 auto 38px;
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin-bottom: 18px;
  color: #c4ca7b;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.description {
  max-width: 635px;
  margin: 26px auto 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.status {
  width: fit-content;
  margin: 34px auto 0;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139, 147, 45, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #e8eadf;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 150, 0, 0.1);
  animation: pulse 1.8s infinite;
}

footer {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.separator {
  margin: 0 7px;
  color: var(--gold);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.72);
    opacity: 0.55;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .logo {
    margin-bottom: 30px;
  }

  .eyebrow {
    font-size: 0.69rem;
    line-height: 1.5;
  }

  .description {
    line-height: 1.6;
  }

  footer {
    bottom: 20px;
  }
}
