/* ── HOME PAGE ── */

.pg-home {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-home-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

/* Logo */
.pg-home-logo {
  width: min(340px, 80vw);
  height: auto;
  margin-bottom: 1rem;
  animation: pg-fadeup 0.55s ease both;
}

/* Daily counter pill */
.pg-home-challenge {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  animation: pg-fadeup 0.55s 0.07s ease both;
}
.pg-home-challenge span { color: var(--accent); }

/* Tagline */
.pg-home-tagline {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 2rem;
  animation: pg-fadeup 0.55s 0.12s ease both;
}
.pg-home-tagline em {
  font-style: italic;
  color: var(--text);
}

/* Button row */
.pg-home-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.75rem;
  animation: pg-fadeup 0.55s 0.18s ease both;
}

/* Make the primary CTA slightly bigger than siblings */
.pg-home-actions .pg-button-primary {
  font-size: var(--text-md);
  padding: 0.7rem 1.8rem;
}

/* Podium / leaderboard link */
.pg-home-podium {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: opacity 0.15s ease, transform 0.15s ease;
  animation: pg-fadeup 0.55s 0.25s ease both;
}
.pg-home-podium:hover {
  opacity: 0.75;
  transform: translateY(-2px);
  text-decoration: none;
}

.pg-home-podium-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.pg-home-podium-bar {
  width: 13px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}
.pg-home-podium-bar:nth-child(1) { height: 16px; opacity: 0.5;  } /* 2nd */
.pg-home-podium-bar:nth-child(2) { height: 24px; opacity: 0.9;  } /* 1st */
.pg-home-podium-bar:nth-child(3) { height: 12px; opacity: 0.35; } /* 3rd */

.pg-home-podium-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Animation */
@keyframes pg-fadeup {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}