/* Treejectory site overrides */
:root {
  --accent-green: #2D6A4F;
  --accent-red: #c85a5a;
  --text-muted: #888;
  --bg-dark: #1a1a1a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.hero-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
  margin: -1rem -1rem 2rem -1rem;
}

.hero-section img {
  max-height: 55vh;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

.hero-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-section p {
  font-size: 1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-section a {
  color: #8ec8e8;
  text-decoration: underline;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.stat-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.stat-card .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-red);
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.timing-note {
  background: #f8f5ee;
  border-left: 3px solid #d4a843;
  padding: 0.75rem 1rem;
  margin: 1rem 0 2rem;
  font-size: 0.9rem;
  color: #555;
  border-radius: 0 6px 6px 0;
}

.timing-note em {
  font-style: normal;
}

.embed-frame {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.section-break {
  border: none;
  border-top: 1px solid #eee;
  margin: 3rem 0;
}

.press-link {
  display: block;
  padding: 1rem 1.25rem;
  background: #f8f8f8;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  border: 1px solid #eee;
  margin-bottom: 0.75rem;
  transition: background 0.15s;
}

.press-link:hover {
  background: #f0f0f0;
}

.press-link .title {
  font-weight: 600;
}

.press-link .desc {
  font-size: 0.85rem;
  color: #888;
  margin-top: 2px;
}

.attribution {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 1rem 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.interview-q {
  margin: 1.5rem 0;
}

.interview-q h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.interview-q em {
  color: #666;
  font-size: 0.95rem;
}

.dl-link {
  margin-top: 8px;
  font-size: 13px;
}

.dl-link a {
  color: #2166ac;
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid #2166ac;
  border-radius: 4px;
  transition: all 0.15s;
}

.dl-link a:hover {
  background: #2166ac;
  color: #fff;
}

@media (max-width: 600px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section {
    padding: 1.5rem 1rem 2rem;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
