@charset "utf-8";
/* ============================================================================
   Classic home sections — the original hero, "How It Works" and
   "Create Your First Reel Now!" blocks: same layout, illustrations and motion,
   recoloured onto the site's warm-black + gold palette so the homepage reads
   as one piece. Loaded only by index.php via $page_styles.
   ========================================================================== */

/* ---------- hero ---------- */

.hero {
  background: linear-gradient(165deg, var(--ink-3) 0%, var(--ink) 70%);
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 104px) 0;
  position: relative;
  overflow: hidden;
}
/* The photographic texture, warmed so it sits inside the palette instead of
   pulling the section back toward blue. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542596594-649edbc13630?fm=jpg&q=60&w=3000') center/cover no-repeat;
  filter: sepia(.65) saturate(.75) hue-rotate(-12deg) contrast(1.05);
  opacity: .14;
}
/* The same low warm light the rest of the dark sections carry. */
.hero::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 90%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(251,191,36,.16), transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; color: var(--on-ink); }
.hero h1 {
  font-weight: 600;
  line-height: 1.1;
  color: var(--on-ink);
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero p.lead {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0;
  color: var(--on-ink-soft);
}
.hero .hero-note { color: var(--text-faint); }

.btn-cta {
  background: var(--gold);
  border: 1px solid var(--gold-2);
  color: var(--ink);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1.25rem;
  box-shadow: 0 14px 34px -12px rgba(224,160,21,.85);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -14px rgba(224,160,21,1);
  background: #ffd257;
  color: var(--ink);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.6rem; }
  .hero p.lead { font-size: 1.15rem; }
  .btn-cta { font-size: 1.1rem; padding: .9rem 2rem; }
}

/* ---------- "How It Works" step boxes ---------- */

.how-band { background: var(--paper); }

.stats-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.stats-box i { font-size: 2.8rem; margin-bottom: .8rem; color: var(--gold-2) !important; }
/* font-family is restated because the design system's .num is monospace */
.stats-box .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text);
  margin: .5rem 0;
}
.stats-box .label { font-size: .95rem; color: var(--gold-3); font-weight: 700; }
.stats-box .text-muted { color: var(--text-soft) !important; }
.stats-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-2);
}

@media (min-width: 992px) {
  .stats-box { padding: 2.75rem 1.5rem; }
  .stats-box i { font-size: 4rem; margin-bottom: 1rem; }
  .stats-box .num { font-size: 3rem; }
  .stats-box .label { font-size: 1.05rem; }
}

/* ---------- decorative illustrations ---------- */

.selfie-desktop { bottom: 135px; right: 5%; width: 380px; max-width: 42%; z-index: 1; pointer-events: none; }
.selfie-mobile  { bottom: 55px;  right: 5%; width: 300px; max-width: 40%; z-index: 1; pointer-events: none; }

.animate-float-glow { animation: floatGlow 6s ease-in-out infinite; }
@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1);        filter: drop-shadow(0 10px 30px rgba(251,191,36,.3)); }
  50%      { transform: translateY(-20px) scale(1.02); filter: drop-shadow(0 20px 50px rgba(251,191,36,.5)); }
}

/* ---------- the "first reel" band ---------- */

.first-reel-band {
  background: radial-gradient(120% 90% at 78% 50%, #3a2c17 0%, var(--ink-2) 45%, var(--ink) 100%);
  color: var(--on-ink);
}
.first-reel-card {
  background: rgba(251, 191, 36, .07);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(251, 191, 36, .22);
  color: var(--on-ink);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.85);
}
.first-reel-card h2 { color: var(--on-ink); }
.first-reel-card p  { color: var(--on-ink-soft); }
.first-reel-card .bi-stars { color: var(--gold) !important; }
.first-reel-card .first-reel-note { color: var(--text-faint); }

@media (prefers-reduced-motion: reduce) {
  .animate-float-glow { animation: none; }
  .stats-box:hover, .btn-cta:hover { transform: none; }
}
