/* Execute Leads Landing Page — Dark Theme with Metallic Gold */

:root {
  --landing-bg: #0B1020;
  --landing-text: #F5F7FB;
  --landing-text-secondary: #AAB4C8;
  --landing-accent-gold: rgb(255, 215, 0);
  --landing-green: #31C48D;
  --landing-card-bg: rgba(255, 255, 255, 0.03);
  --landing-card-border: rgba(255, 255, 255, 0.06);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* Metallic Gold Gradient Text */
.text-metallic-gold {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    105deg,
    #7A5C00,
    #A07C10 12%,
    #C9A84C 28%,
    #E8C96A 38%,
    #FFF0A0,
    #E8C96A 54%,
    #C9A84C 65%,
    #8A6A0A 80%,
    #5C4000 92%,
    #A07C10
  );
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: metallic-shine 20s ease-in-out infinite;
}

/* Metallic Gold Button */
.btn-metallic-gold {
  background: linear-gradient(
    105deg,
    #7A5C00,
    #A07C10 12%,
    #C9A84C 28%,
    #E8C96A 38%,
    #FFF0A0,
    #E8C96A 54%,
    #C9A84C 65%,
    #8A6A0A 80%,
    #5C4000 92%,
    #A07C10
  );
  background-size: 300%;
  color: #0B1020 !important;
  font-weight: 700;
  animation: metallic-shine 20s ease-in-out infinite;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-metallic-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

@keyframes metallic-shine {
  0%   { background-position: 0% center; }
  50%  { background-position: 150% center; }
  100% { background-position: 300% center; }
}

/* CTA Pulse Animation */
.btn-cta-pulse {
  animation: ctaPulse 3.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%   { transform: scale(1);     box-shadow: 0 0 0 rgba(201,168,76,0.7), 0 0 12px rgba(201,168,76,0.3); }
  50%  { transform: scale(1.025); box-shadow: 0 0 0 10px rgba(201,168,76,0), 0 0 24px rgba(201,168,76,0.15); }
  100% { transform: scale(1);     box-shadow: 0 0 0 rgba(201,168,76,0), 0 0 12px rgba(201,168,76,0.3); }
}

/* Section Label */
.section-label {
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--landing-accent-gold);
  font-size: 0.7rem;
}

/* Fade-Up Scroll Animation */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up         { animation: fadeUp 0.4s ease-out forwards; }
.animate-fade-up-delay-1 { opacity: 0; animation: fadeUp 0.4s ease-out 80ms forwards; }
.animate-fade-up-delay-2 { opacity: 0; animation: fadeUp 0.4s ease-out 160ms forwards; }
.animate-fade-up-delay-3 { opacity: 0; animation: fadeUp 0.4s ease-out 240ms forwards; }

/* Navbar Scroll State */
.landing-nav {
  background: transparent;
  transition: background-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.landing-nav.nav-scrolled {
  background: rgba(11, 16, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Landing Card */
.landing-card {
  background: var(--landing-card-bg);
  border: 1px solid var(--landing-card-border);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.landing-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

/* FAQ Accordion */
.faq-item {
  background: rgb(18, 26, 49);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item-open {
  border-color: rgba(255, 215, 0, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1rem;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

/* Speed Bar Chart */
.speed-bar {
  height: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  padding-left: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: width 1s ease-out;
}

/* Hero Background Gradient */
.hero-bg-gradient {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(49, 71, 140, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(11, 16, 32, 0) 0%, rgba(11, 16, 32, 1) 100%);
}

/* Mobile Menu */
.mobile-menu-overlay {
  background: rgba(11, 16, 32, 0.97);
  backdrop-filter: blur(12px);
}

/* Container */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .landing-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .landing-container { padding-left: 2rem; padding-right: 2rem; }
}

/* Headings */
.landing-heading {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
