/**
 * APEX Marketing - Homepage Styles
 *
 * Styles specific to index.html including hero, score showcase, and feature sections.
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--spacing-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: var(--font-xs);
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-lg);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-highlight {
  color: var(--accent-cyan);
  -webkit-text-fill-color: var(--accent-cyan);
}

.hero-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.hero-cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta-note {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   APEX Score Gauge (Hero)
   ========================================================================== */

.hero-gauge {
  margin: var(--spacing-2xl) auto;
  max-width: 400px;
}

.gauge-container {
  position: relative;
  width: 280px;
  height: 160px;
  margin: 0 auto;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gauge-track {
  fill: none;
  stroke: var(--bg-card);
  stroke-width: 20;
  stroke-linecap: round;
}

.gauge-fill {
  fill: none;
  stroke: url(#gaugeGradient);
  stroke-width: 20;
  stroke-linecap: round;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gauge-fill.animated {
  stroke-dashoffset: 50.24; /* 80% score = 251.2 * 0.2 */
}

.gauge-score {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.gauge-score-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.gauge-score-label {
  font-family: var(--font-mono);
  font-size: var(--font-xs);
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--spacing-xs);
}

.gauge-tickers {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.gauge-ticker {
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--font-xs);
  color: var(--text-secondary);
}

.gauge-ticker.highlighted {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* ==========================================================================
   Social Proof Bar
   ========================================================================== */

.social-proof {
  padding: var(--spacing-xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2xl);
  flex-wrap: wrap;
}

.social-proof-stat {
  text-align: center;
}

.social-proof-value {
  font-family: var(--font-display);
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--text-primary);
}

.social-proof-label {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin-top: var(--spacing-xs);
}

.social-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  position: relative;
}

.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.3;
}

.step-card {
  position: relative;
  text-align: center;
  padding: var(--spacing-xl);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--accent-cyan);
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.step-description {
  font-size: var(--font-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   APEX Score Explanation Section
   ========================================================================== */

.apex-score-section {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-surface);
}

.apex-score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.apex-score-content {
  max-width: 500px;
}

.apex-score-visual {
  display: flex;
  justify-content: center;
}

.score-breakdown {
  width: 100%;
  max-width: 400px;
}

.score-breakdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.score-breakdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-subtle);
}

.score-breakdown-ticker {
  font-family: var(--font-display);
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--text-primary);
}

.score-breakdown-total {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.score-breakdown-value {
  font-family: var(--font-mono);
  font-size: var(--font-2xl);
  font-weight: 700;
  color: var(--accent-cyan);
}

.score-breakdown-label {
  font-size: var(--font-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.score-factors {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.score-factor {
  display: grid;
  grid-template-columns: 1fr auto 60px;
  align-items: center;
  gap: var(--spacing-md);
}

.score-factor-label {
  font-size: var(--font-sm);
  color: var(--text-secondary);
}

.score-factor-bar {
  width: 120px;
  height: 6px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.score-factor-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-factor-value {
  font-family: var(--font-mono);
  font-size: var(--font-sm);
  color: var(--text-primary);
  text-align: right;
}

/* ==========================================================================
   Feature Highlights Section
   ========================================================================== */

.features-highlight {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
}

.features-highlight-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.features-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
}

.feature-highlight-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-highlight-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.feature-highlight-title {
  font-family: var(--font-display);
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-highlight-description {
  font-size: var(--font-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-surface);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.testimonial-quote {
  font-size: var(--font-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 2rem;
  color: var(--accent-cyan);
  line-height: 0;
  vertical-align: middle;
  margin-right: var(--spacing-xs);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bg-primary);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: var(--font-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.cta-description {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .how-it-works-steps::before {
    display: none;
  }

  .apex-score-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .apex-score-content {
    text-align: center;
    max-width: 100%;
  }

  .features-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .gauge-container {
    width: 220px;
    height: 130px;
  }

  .gauge-score-value {
    font-size: 2.5rem;
  }

  .social-proof-inner {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .social-proof-divider {
    width: 60px;
    height: 1px;
  }

  .features-highlight-grid {
    grid-template-columns: 1fr;
  }

  .score-factor {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .score-factor-bar {
    width: 100%;
  }
}

/* ==========================================================================
   Ticker Bar
   ========================================================================== */

.ticker-bar {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(8, 12, 16, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  z-index: 90;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 var(--spacing-md);
  background: var(--bg-primary);
  border-right: 1px solid var(--border-subtle);
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-label-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  background: rgba(255, 170, 0, 0.15);
  border-radius: var(--radius-sm);
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-lg);
  white-space: nowrap;
}

.ticker-symbol {
  font-family: var(--font-mono);
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.ticker-score {
  font-family: var(--font-mono);
  font-size: var(--font-sm);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.ticker-score.score-high {
  color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.15);
}

.ticker-score.score-medium {
  color: var(--accent-amber);
  background: rgba(255, 170, 0, 0.15);
}

/* Hero Supporting and Subscores */
.hero-supporting {
  font-size: var(--font-base);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.6;
}

.gauge-sample-label {
  text-align: center;
  margin-top: var(--spacing-sm);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-amber);
  text-transform: uppercase;
}

.hero-subscores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
}

.subscore {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

.subscore-label {
  font-size: var(--font-xs);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
}

.subscore-bar {
  height: 4px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-xs);
  overflow: hidden;
}

.subscore-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.subscore-value {
  font-family: var(--font-mono);
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Features Section */
.features-section {
  padding: var(--spacing-4xl) 0;
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

.feature-card-large,
.feature-card-wide {
  grid-column: span 2;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.feature-card-header h3 {
  font-family: var(--font-display);
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
}

.sample-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-amber);
  text-transform: uppercase;
  padding: 2px 8px;
  background: rgba(255, 170, 0, 0.15);
  border-radius: var(--radius-sm);
}

.feature-description {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.feature-chart-container {
  height: 200px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

/* News Feed Mockup */
.news-feed-mockup {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.news-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
}

.news-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.news-badge.bullish {
  color: var(--accent-green);
  background: rgba(0, 255, 136, 0.15);
}

.news-badge.neutral {
  color: var(--text-secondary);
  background: var(--bg-card);
}

.news-badge.bearish {
  color: var(--accent-red);
  background: rgba(255, 68, 68, 0.15);
}

.news-headline {
  font-size: var(--font-xs);
  color: var(--text-primary);
  flex: 1;
}

.news-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

/* Insider Table */
.insider-table-mockup {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.insider-row {
  display: grid;
  grid-template-columns: 1fr 60px 80px;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
}

.insider-row.header {
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
}

.insider-name { color: var(--text-primary); }
.insider-action { font-family: var(--font-mono); font-weight: 700; text-align: center; }
.insider-action.buy { color: var(--accent-green); }
.insider-action.sell { color: var(--accent-red); }
.insider-shares { font-family: var(--font-mono); color: var(--text-secondary); text-align: right; }

/* Subscore Breakdown */
.subscore-breakdown-mockup {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.subscore-item {
  display: grid;
  grid-template-columns: 24px 1fr auto 40px;
  align-items: center;
  gap: var(--spacing-sm);
}

.subscore-item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.subscore-item-label { font-size: var(--font-xs); color: var(--text-secondary); }
.subscore-item-bar { width: 80px; height: 4px; background: var(--bg-surface); border-radius: var(--radius-full); overflow: hidden; }
.subscore-item-fill { height: 100%; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green)); }
.subscore-item-value { font-family: var(--font-mono); font-size: var(--font-xs); font-weight: 700; color: var(--accent-cyan); text-align: right; }

/* AI Brief */
.ai-brief-mockup { background: var(--bg-surface); border-radius: var(--radius-md); overflow: hidden; }
.ai-brief-header { display: flex; align-items: center; justify-content: space-between; padding: var(--spacing-md); background: rgba(0, 212, 255, 0.1); border-bottom: 1px solid var(--border-subtle); }
.ai-brief-ticker { font-family: var(--font-mono); font-size: var(--font-lg); font-weight: 700; color: var(--text-primary); }
.ai-brief-score { font-family: var(--font-mono); font-size: var(--font-sm); color: var(--accent-cyan); }
.ai-brief-content { padding: var(--spacing-md); }
.ai-brief-content p { font-size: var(--font-sm); color: var(--text-secondary); line-height: 1.6; margin: 0 0 var(--spacing-sm); }
.ai-brief-content p:last-child { margin-bottom: 0; }
.ai-brief-content strong { color: var(--text-primary); }

.step-icon svg { color: var(--accent-cyan); }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large, .feature-card-wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .ticker-bar { top: 56px; height: 36px; }
  .hero { padding: 140px 0 60px; }
  .hero-subscores { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 375px) {
  .hero-subscores { grid-template-columns: 1fr; }
}
