/* Home page only — scoped under body.home-page, layered on top of style.css */

.home-page main {
  padding: 0 20px 0;
}

.home-page .hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0 56px;
}

.home-page .eyebrow {
  display: inline-block;
  color: var(--gold);
  background: rgba(232, 165, 60, 0.12);
  border: 1px solid rgba(232, 165, 60, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.home-page .hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.home-page .hero-lead {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 560px;
}

.home-page .hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.home-page .btn {
  margin-top: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.home-page .btn-primary {
  box-shadow: 0 4px 14px rgba(232, 165, 60, 0.35);
}

.home-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 165, 60, 0.45);
}

.home-page .btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 8px 20px;
}

.home-page .btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.home-page .btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Stats strip */
.home-page .stats-strip {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 64px);
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  margin: 0 auto 56px;
  max-width: 780px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  flex-wrap: wrap;
}

.home-page .stat {
  text-align: center;
}

.home-page .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
}

.home-page .stat-label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 2px;
}

/* Feature section */
.home-page .section-heading {
  text-align: center;
  color: var(--navy);
  font-size: 1.6rem;
  margin: 0 0 28px;
}

.home-page .feature-grid {
  margin-top: 0;
  margin-bottom: 64px;
}

.home-page .feature-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-page a.feature-card:hover,
.home-page a.feature-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(27, 42, 94, 0.14);
  outline: none;
}

.home-page .feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(27, 42, 94, 0.08);
  color: var(--navy);
  margin-bottom: 14px;
}

.home-page .feature-icon svg {
  width: 24px;
  height: 24px;
}

.home-page .feature-card p {
  color: #555;
  flex-grow: 1;
}

.home-page .feature-link {
  margin-top: 12px;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

/* CTA banner */
.home-page .cta-banner {
  background: var(--navy);
  border-radius: 16px;
  margin: 0 0 48px;
  padding: 48px 24px;
}

.home-page .cta-banner-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.home-page .cta-banner h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.home-page .cta-banner p {
  color: #cfd4e6;
  margin: 0 0 24px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .home-page .hero {
    padding: 40px 0 40px;
  }
  .home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .home-page .stats-strip {
    gap: 20px;
    padding: 22px 16px;
  }
}

/* Scroll progress bar */
.home-page .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Scroll-triggered reveals */
.home-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.home-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page .cta-banner.reveal {
  transform: scale(0.97) translateY(20px);
}

.home-page .cta-banner.reveal.is-visible {
  transform: scale(1) translateY(0);
}

/* Scroll cue under hero */
.home-page .scroll-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8890a8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-page .scroll-cue-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: home-scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes home-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .reveal {
    transition: none;
    transform: none;
  }
  .home-page .scroll-cue-dot {
    animation: none;
  }
  .home-page .scroll-progress {
    transition: none;
  }
}
