/* ===========================================
   Tree Launcher — Examples Page
   =========================================== */

/* Hero (matches features page) */
.page-hero {
  padding: 140px 24px 64px; text-align: center;
  max-width: 800px; margin: 0 auto;
}
.page-hero .label {
  font-size: 13px; font-weight: 600; color: var(--green-700);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.page-hero h1 {
  font-size: 50px; font-weight: 700; letter-spacing: -2.5px;
  line-height: 1.1; margin-bottom: 20px;
}
.page-hero p {
  font-size: 19px; line-height: 1.65; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto;
}

/* Grid */
.examples-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 24px 96px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px 28px;
}
.example-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.example-card h3 {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.3px; margin-bottom: 8px;
  color: var(--text-primary);
}
.example-card p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--text-secondary);
  max-width: 240px;
}

/* Screenshot */
.example-shot {
  width: 220px; height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  margin-bottom: 24px;
  display: block;
}

/* Final CTA band */
.examples-cta {
  background: var(--green-700); padding: 96px 24px;
  text-align: center;
}
.examples-cta h2 {
  font-size: 40px; font-weight: 700; color: white;
  letter-spacing: -1.5px; margin-bottom: 14px;
}
.examples-cta p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.examples-cta .btn-primary {
  background: white; color: var(--green-900);
  padding: 16px 36px; font-size: 16px; font-weight: 600;
}
.examples-cta .btn-primary:hover {
  background: white; color: var(--green-900);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero { padding: 110px 24px 40px; }
  .page-hero h1 { font-size: 36px; }
  .examples-grid { gap: 48px 20px; padding: 24px 20px 80px; }
  .examples-cta h2 { font-size: 30px; }
}
