/* ==========================================================================
   DREWBEEE RIPS — home.css (homepage-only styles)
   ========================================================================== */

/* ---- HERO ------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  /* purple atmosphere + faint honeycomb texture */
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(139, 49, 232, 0.28), transparent 70%),
    radial-gradient(ellipse 45% 40% at 18% 85%, rgba(76, 29, 149, 0.30), transparent 70%),
    radial-gradient(ellipse 35% 30% at 88% 70%, rgba(255, 180, 0, 0.06), transparent 70%);
}
.hero::before {
  /* honeycomb hex lattice, barely-there */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background:
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(255, 180, 0, 0.9) 26px 27px),
    repeating-linear-gradient(60deg, transparent 0 26px, rgba(168, 85, 247, 0.9) 26px 27px),
    repeating-linear-gradient(120deg, transparent 0 26px, rgba(168, 85, 247, 0.9) 26px 27px);
  mask-image: radial-gradient(ellipse 80% 75% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 30%, #000 20%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  text-align: center;
}

.hero-logo img {
  width: min(320px, 76vw);
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(168, 85, 247, 0.55),
    0 0 34px rgba(168, 85, 247, 0.55),
    0 0 90px rgba(139, 49, 232, 0.35);
}

.hero-headline {
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  margin-top: 4px;
}
.hero-headline .marker {
  display: inline-block;
  font-size: 0.88em;
  transform: rotate(-2deg);
  text-shadow: 0 0 26px rgba(255, 180, 0, 0.4);
}

.hero-sub {
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 18px auto 0;
  font-size: 1.05rem;
}
.hero-sub strong { font-weight: 800; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

@media (min-width: 880px) {
  .hero { padding: 84px 0 92px; }
  .hero-inner {
    flex-direction: row;
    text-align: left;
    gap: 56px;
    justify-content: center;
  }
  .hero-logo img { width: 360px; }
  .hero-copy { max-width: 560px; }
  .hero-sub { margin-left: 0; }
  .hero-ctas { justify-content: flex-start; }
}

/* ---- LIVE ON WHATNOT PROMO -------------------------------------------- */

.live-promo {
  position: relative;
  overflow: hidden;
}
.live-promo::before {
  /* faint lightning streak energy behind the flyer */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 40% 60% at 22% 50%, rgba(139, 49, 232, 0.22), transparent 70%),
    radial-gradient(ellipse 30% 40% at 80% 30%, rgba(76, 29, 149, 0.20), transparent 70%);
}

.live-inner {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 820px) {
  .live-inner { grid-template-columns: minmax(0, 420px) 1fr; gap: 64px; }
}

.live-flyer img {
  width: min(340px, 84vw);
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 2px solid rgba(168, 85, 247, 0.65);
  box-shadow: var(--glow-purple);
}
@media (min-width: 820px) {
  .live-flyer img { width: 100%; margin: 0; }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--live);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  box-shadow: 0 0 18px rgba(229, 35, 61, 0.45);
}
.live-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  animation: livepulse 1.6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .live-badge-dot { animation: none; }
}

.live-copy h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }

.live-marker {
  color: var(--gold);
  font-size: 1.5rem;
  margin: 12px 0 14px;
  transform: rotate(-1.5deg);
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 180, 0, 0.35);
}

.live-desc {
  color: var(--ink-dim);
  max-width: 52ch;
  margin-bottom: 26px;
}

/* ---- HOW IT WORKS ------------------------------------------------------ */

.how-steps {
  list-style: none;
  display: grid;
  gap: 18px;
  counter-reset: step;
}
@media (min-width: 760px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.how-step {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid rgba(139, 49, 232, 0.4);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.how-step:hover {
  border-color: var(--purple-hot);
  box-shadow: var(--glow-purple);
}
.how-step::after {
  /* corner honeycomb whisper */
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  pointer-events: none;
  opacity: 0.07;
  background:
    repeating-linear-gradient(0deg, transparent 0 16px, var(--gold) 16px 17px),
    repeating-linear-gradient(60deg, transparent 0 16px, var(--gold) 16px 17px),
    repeating-linear-gradient(120deg, transparent 0 16px, var(--gold) 16px 17px);
  border-radius: 50%;
}

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(255, 180, 0, 0.1);
  border: 2px solid rgba(255, 180, 0, 0.55);
  box-shadow: var(--glow-gold);
  margin-bottom: 16px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.how-step p {
  color: var(--ink-dim);
  font-size: 0.92rem;
}
