/* ===========================================
   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;
}

/* Phone mock */
.example-phone {
  width: 200px; height: 360px; background: #111820;
  border-radius: 28px; padding: 16px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  margin-bottom: 24px;
  display: flex; flex-direction: column;
}
.ex-header {
  font-size: 11px; color: rgba(255,255,255,0.32);
  margin-bottom: 10px;
}
.ex-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ex-icon {
  width: 26px; height: 26px; border-radius: 7px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.ex-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: white;
}
.ex-bullet {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0; margin: 0 9px 0 9px;
}
.ex-check {
  width: 14px; height: 14px; border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 3px; flex-shrink: 0; position: relative;
  margin: 0 5px 0 5px;
}
.ex-check.done { background: var(--green-500); border-color: var(--green-500); }
.ex-check.done::after {
  content: ''; position: absolute;
  left: 3px; top: 0px;
  width: 4px; height: 8px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.ex-text { flex: 1; min-width: 0; text-align: left; }
.ex-label {
  font-size: 11.5px; color: rgba(255,255,255,0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ex-sub {
  font-size: 9.5px; color: rgba(255,255,255,0.32);
  margin-top: 1px;
}
.ex-chev {
  margin-left: auto; font-size: 14px; color: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.ex-divider {
  font-size: 9.5px; color: rgba(255,255,255,0.32);
  text-transform: uppercase; letter-spacing: 1px;
  text-align: left;
  margin: 8px 0 2px;
  padding: 6px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* 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; }
}
