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

/* =========================
   GLOBAL
========================= */
body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* =====================
   LOGO
===================== */
.hero-logo {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}

/* =====================
   BUTTON BASE (GOLD PILL)
===================== */
.membership-cta,
.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 28px;

  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;

  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-decoration: none;

  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

/* =====================
   SECONDARY CTA
===================== */
.hero-secondary-cta {
  min-width: 180px;
  font-size: 13px;
  opacity: 0.9;
}

/* =====================
   HOVER (RED GLOW)
===================== */
.membership-cta:hover,
.hero-secondary-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 8px rgba(180, 0, 0, 0.6),
    0 0 18px rgba(180, 0, 0, 0.55),
    0 0 32px rgba(180, 0, 0, 0.45);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 360px;
  }

  .hero-secondary-cta {
    width: 70%;
  }
}
