/* ============================================================
   WorldLens — Home Page Styles (index.html)
   ============================================================ */

/* ============================================================
   Ticker Bar
   ============================================================ */
.ticker-wrap {
  background-color: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding-block: 0.65rem;
  white-space: nowrap;
  user-select: none;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker-scroll 50s linear infinite;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding-inline: 0.875rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.ticker-sep {
  color: var(--color-gold);
  font-size: 0.5rem;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  min-height: calc(90vh - 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: var(--space-2xl) var(--space-lg);
  overflow: visible;
}

/* Outer glow — wide, soft, behind the inner layer */
.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(232, 168, 56, 0.07) 0%,
    transparent 65%
  );
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
}

/* Inner glow — tighter, brighter, anchored behind the headline */
.hero-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 750px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(232, 168, 56, 0.28) 0%,
    transparent 70%
  );
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* When referral screen is showing, re-center the hero column */
.hero-content:has(.referral-screen) {
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.eyebrow > span:not(.eyebrow-line) {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.eyebrow-line {
  display: block;
  height: 1px;
  width: 30px;
  background: var(--color-gold);
  opacity: 0.55;
  flex-shrink: 0;
}

/* Headline */
.hero-section h1 {
  font-size: clamp(3.75rem, 8.5vw, 7.25rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--color-white);
}

.hero-section h1 em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 300;
}

/* Sub-text */
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-on-surface);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.25rem;
}

/* ============================================================
   Waitlist Form
   ============================================================ */
.waitlist-form {
  width: 100%;
  max-width: 560px;
  margin-bottom: 0.75rem;
}

.form-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.8rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-on-surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-row input[type="email"]::placeholder {
  color: var(--color-muted);
}

.form-row input[type="email"]:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.07);
}

/* Disabled state after submit */
.waitlist-form.submitted .form-row input[type="email"],
.waitlist-form.submitted button {
  opacity: 0.6;
  cursor: default;
}

.form-note {
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ============================================================
   Stats Card
   ============================================================ */
.stats-card {
  display: flex;
  align-items: stretch;
  background: var(--color-card-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
  max-width: 580px;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  background: var(--color-border);
  margin-block: 1.25rem;
  flex-shrink: 0;
}

/* ============================================================
   Section Headers (shared)
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0.25rem;
}

/* ============================================================
   Features Preview
   ============================================================ */
.features-preview {
  padding-top: var(--space-md);
}

.features-preview .section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
  text-align: center;
  margin-bottom: 16px;
}

.features-preview h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  text-align: center;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

.features-preview h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1E1E1E;
  border: 1px solid #1E1E1E;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}

.feature-card {
  background: #111111;
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
  transition: background 0.35s cubic-bezier(0.16,1,0.3,1),
              transform 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    #E8A838 0%, rgba(232,168,56,0.3) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  background: #161616;
  transform: translateY(-3px);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Subtle ambient glow on hover */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(232,168,56,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

.fc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.fc-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  padding-top: 2px;
}

.fc-svg {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.feature-card:hover .fc-svg {
  opacity: 1;
}

.fc-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.88);
  line-height: 1.2;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.fc-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.36);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}

.fc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.fc-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}

.badge-pro {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

.badge-free {
  background: rgba(232,168,56,0.07);
  color: rgba(232,168,56,0.6);
  border: 1px solid rgba(232,168,56,0.15);
}

.fc-arrow {
  font-size: 14px;
  color: rgba(255,255,255,0.15);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.feature-card:hover .fc-arrow {
  color: #E8A838;
  transform: translateX(3px);
}

.features-cta {
  text-align: center;
  margin-top: 32px;
}

.features-see-all {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.features-see-all:hover {
  color: #E8A838;
  border-color: rgba(232,168,56,0.4);
}

/* ============================================================
   Story / Founder Quote
   ============================================================ */
.story-section {
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(232, 168, 56, 0.055) 0%,
    transparent 65%
  );
  text-align: center;
  padding-top: 48px;
  padding-bottom: 64px;
}

.story-inner {
  max-width: 640px;
  margin-inline: auto;
}

.story-quotemark {
  display: block;
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--color-gold);
  opacity: 0.55;
  margin-bottom: 1.25rem;
}

.story-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-on-surface);
  border: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 2rem;
}

.story-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.story-line {
  display: block;
  height: 1px;
  width: 28px;
  background: var(--color-gold);
  opacity: 0.45;
  flex-shrink: 0;
}

.story-name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   How It Works
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 168, 56, 0.6);
  background: rgba(232, 168, 56, 0.03);
  box-shadow:
    0 0 25px rgba(232, 168, 56, 0.18),
    0 0 80px rgba(232, 168, 56, 0.12),
    0 0 120px rgba(232, 168, 56, 0.06),
    0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Large faded number behind content */
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-heading);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.step-tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.step-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   Bottom CTA
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Smooth fade from the dark section above — eliminates the hard top edge */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--color-bg), transparent);
  pointer-events: none;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 168, 56, 0.15) 0%,
    transparent 70%
  );
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.cta-section > .container-narrow {
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.cta-headline em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 300;
}

.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-on-surface);
  line-height: 1.7;
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}

.cta-form {
  margin-inline: auto;
}

.cta-note {
  font-size: 0.75rem;
  color: var(--color-muted);
  letter-spacing: 0.03em;
  margin-top: 0.875rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 540px) {
  .features-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .feature-card {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: auto;
    padding-block: var(--space-xl);
    padding-inline: 24px;
  }

  .stats-card {
    flex-direction: column;
    max-width: 100%;
  }

  .stat-sep {
    width: auto;
    height: 1px;
    margin-block: 0;
    margin-inline: 1.5rem;
    align-self: auto;
  }
}

@media (max-width: 560px) {
  .form-row {
    flex-direction: column;
  }

  .form-row .btn {
    width: 100%;
    justify-content: center;
  }

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

  .step-card::before {
    font-size: 5rem;
    opacity: 0.05;
  }
}

/* ============================================================
   App Mockup Preview
   ============================================================ */
.mockup-section {
  text-align: center;
  padding-top: 64px;
  padding-bottom: 48px;
}

.mockup-stage {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  perspective: 1000px;
}

.mockup-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #131313;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(232,168,56,0.12),
    0 0 60px rgba(232,168,56,0.10),
    0 32px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transform-origin: center center;
  transition: transform 0.4s ease;
  will-change: transform;
}

.mockup-frame:hover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

/* Top bar */
.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.mockup-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.mockup-logo span {
  color: var(--color-gold);
}

.mockup-greeting {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* Industry Pulse pills */
.mockup-pulse-row {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-pulse-row::-webkit-scrollbar { display: none; }

.mockup-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.665rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.mockup-pill strong {
  font-weight: 600;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pill-green  { background: rgba(52,211,153,0.12); color: #34d399; }
.pill-green  .pill-dot { background: #34d399; }

.pill-red    { background: rgba(248,113,113,0.12); color: #f87171; }
.pill-red    .pill-dot { background: #f87171; }

.pill-yellow { background: rgba(251,191,36,0.12); color: #fbbf24; }
.pill-yellow .pill-dot { background: #fbbf24; }

.pill-neutral { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); }
.pill-neutral .pill-dot { background: rgba(255,255,255,0.3); }

/* News cards */
.mockup-cards {
  padding: 14px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px;
  text-align: left;
}

.mockup-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mockup-source {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.mockup-tag {
  font-size: 0.575rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
}

.tag-finance { background: rgba(52,211,153,0.12); color: #34d399; }
.tag-energy  { background: rgba(248,113,113,0.12); color: #f87171; }
.tag-tech    { background: rgba(96,165,250,0.12); color: #60a5fa; }

.mockup-trust {
  margin-left: auto;
  font-size: 0.575rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  opacity: 0.85;
}

.mockup-headline {
  font-size: 0.775rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  margin: 0 0 5px;
}

.mockup-summary {
  font-size: 0.675rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  margin: 0;
}

.mockup-card-faded {
  opacity: 0.4;
  pointer-events: none;
}

/* Bottom fade overlay */
.mockup-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #131313);
  pointer-events: none;
}

/* Reserve space below cards for fade */
.mockup-cards {
  padding-bottom: 80px;
}

/* Mobile: subtle tilt */
@media (max-width: 768px) {
  .mockup-frame {
    transform: perspective(800px) rotateY(-4deg) rotateX(2deg) !important;
    max-width: 100%;
  }

  .mockup-frame:hover {
    transform: perspective(800px) rotateY(-2deg) rotateX(1deg) !important;
  }
}

/* ============================================================
   Who Is This For
   ============================================================ */
.audience-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

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

.audience-card {
  display: flex;
  flex-direction: column;
}

.audience-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.audience-tag {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(232, 168, 56, 0.08);
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  align-self: flex-start;
  margin-top: auto;
}

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

  .story-section {
    padding-bottom: 48px;
  }
}

/* ============================================================
   Trusted Sources Section
   ============================================================ */
.sources-section {
  padding-top: 32px;
  padding-bottom: 48px;
  text-align: center;
}

.sources-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-muted);
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}

/* Desktop: static centered row */
.sources-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
}

.source-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  cursor: default;
  padding: 4px 2px;
}

.source-name:hover {
  color: rgba(255, 255, 255, 0.55);
}

.source-dot {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.12);
  padding: 0 12px;
  line-height: 1;
}

/* Mobile: hide static row, show marquee */
.sources-marquee {
  display: none;
}

@media (max-width: 640px) {
  .sources-row {
    display: none;
  }

  .sources-marquee {
    display: block;
    overflow: hidden;
    margin-top: 2rem;
    white-space: nowrap;
  }

  .sources-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: sources-scroll 28s linear infinite;
  }

  .sources-marquee .source-name {
    font-size: 12px;
  }

  .sources-marquee .source-dot {
    padding: 0 10px;
  }
}

@keyframes sources-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-section {
  text-align: center;
}

.faq-list {
  margin-top: 3rem;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  border-left: 3px solid transparent;
  padding-left: 16px;
  transition: border-left-color 0.3s ease;
}

.faq-item.is-open {
  border-left-color: var(--color-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-item.is-open .faq-question span:first-child {
  color: var(--color-white);
}

.faq-icon {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.75;
  padding: 0 0 1.25rem 16px;
  margin: 0;
}
