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

/* =========================
   ROOT / GLOBAL
========================= */
html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.4;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-align: center;
}

h2 {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  max-width: 720px;
}

p {
  font-size: 15px;
  opacity: 0.9;
}

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

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 960px;
}

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

/* =====================
   BUTTON BASE (shared DNA)
===================== */
.membership-cta,
.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    opacity 0.15s ease;
}

/* =====================
   PRIMARY CTA — LEADER
===================== */
.membership-cta {
  height: 52px;
  padding: 0 36px;
  min-width: 260px;
  max-width: 320px;
  background: linear-gradient(135deg, #d4af37, #f7e08a);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.45),
    0 4px 18px rgba(0, 0, 0, 0.6);
}

/* SECONDARY CTA */
.hero-secondary-cta {
  min-width: 150px;
  height: 40px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  opacity: 1;
  box-shadow:
    0 0 6px rgba(180, 0, 0, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.55);
}

/* =====================
   HOVER STATES
===================== */
.membership-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 14px rgba(180, 0, 0, 0.55),
    0 0 28px rgba(180, 0, 0, 0.45),
    0 6px 22px rgba(0, 0, 0, 0.65);
}

.hero-secondary-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 10px rgba(180, 0, 0, 0.55),
    0 0 18px rgba(180, 0, 0, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.6);
}

/* =====================
   LOGIN PATH SELECTOR
===================== */

.login-path-box {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 48px 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.login-path-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

/* Horizontal on larger screens */
@media (min-width: 768px) {
  .login-path-stack {
    flex-direction: row;
    justify-content: center;
  }
}

.path-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

/* Basic — Black Pill */
.path-basic {
  background: #000;
  color: #d4af37;
  border: 2px solid #d4af37;
}

/* Premium — Silver Pill */
.path-premium {
  background: linear-gradient(135deg, #cfcfcf, #e6e6e6);
  color: #000;
  border: 2px solid #cfcfcf;
}

/* Creator — Red Pill */
.path-creator {
  background: linear-gradient(135deg, #8b0000, #b00000);
  color: #f7e08a;
  border: 2px solid #8b0000;
}

.path-pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 10px rgba(212, 175, 55, 0.45),
    0 4px 18px rgba(0, 0, 0, 0.6);
}
 
/* =====================
   MOBILE TYPOGRAPHY
===================== */
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 15px;
  }

  .hero-logo {
    max-width: 360px;
  }
}