/* ==========================================================================
   THE CEO VAULT - Landing Page Styles
   ========================================================================== */

/* Hero Section */
.hero-section {
  padding: 8rem 0 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow-blob-1 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  min-width: 0;
}

.hero-title {
  margin: 1.25rem 0;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  color: var(--text-secondary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Live Meta & Game Intel Ticker */
.intel-ticker-wrap {
  background: rgba(18, 21, 34, 0.9);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 4rem;
}

.ticker-badge {
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-left: 1.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ticker-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.ticker-items {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  padding-left: 2rem;
}

.ticker-item {
  color: var(--text-secondary);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-item strong {
  color: var(--gold-light);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats Counter Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-section {
    padding: 6.25rem 0 3.5rem 0;
  }

  .hero-glow-blob-1 {
    width: min(480px, 130vw);
    height: 320px;
  }

  .hero-title {
    margin: 1rem 0;
  }

  .hero-subtitle {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }

  .hero-cta-group {
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-stats-grid {
    gap: 0.75rem;
  }

  .stat-box {
    padding: 1rem 0.75rem;
  }

  .stat-number {
    font-size: clamp(1.55rem, 10vw, 2rem);
  }

  .stat-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 340px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Core Vault Intelligence Tools Showcase */
.tool-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.tool-card {
  min-width: 0;
}

.tool-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.tool-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.tool-card-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.tool-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-features-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tool-features-list li svg {
  color: var(--green-primary);
  flex-shrink: 0;
}

/* Interactive Interactive Live Demo Simulator (Build Teaser) */
.demo-simulator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

@media (max-width: 560px) {
  .demo-simulator-box {
    padding: 1.35rem;
    border-radius: var(--border-radius-lg);
  }

  .simulator-header {
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }
}

.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.simulator-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .simulator-controls { grid-template-columns: 1fr; }
}

.attribute-bar-group {
  margin-bottom: 1rem;
}

.attribute-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.fill-gold { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.fill-cyan { background: linear-gradient(90deg, #0284c7, #06b6d4); }
.fill-purple { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.fill-green { background: linear-gradient(90deg, #059669, #10b981); }

/* Channel Brand Media Section */
.brand-stream-banner {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.6) 0%, rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--border-radius-xl);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .brand-stream-banner { grid-template-columns: 1fr; }
}

.social-handles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-handle-pill {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color var(--transition-fast);
  min-width: 0;
}

.social-handle-pill:hover {
  border-color: var(--gold-light);
}

/* FAQ Accordion */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 560px) {
  .faq-question {
    gap: 1rem;
    padding: 1rem;
    font-size: 0.98rem;
  }

  .faq-answer,
  .faq-item.active .faq-answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

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

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Footer */
.vault-footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-col,
.footer-links-col {
  min-width: 0;
}

@media (max-width: 860px) {
  .footer-grid,
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}

@media (max-width: 520px) {
  .footer-grid,
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
