/* ══════════════════════════════════════════════════════════════
   Showcase work pages (Talent Hub, etc.) — page-specific styles.
   Reuses global tokens + .page-hero, .section, .reveal, .cta-btn.
   ══════════════════════════════════════════════════════════════ */

/* "We run on it" proof */
.proof-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: rgba(5, 88, 214, 0.05);
  border: 1px solid rgba(63, 193, 185, 0.16);
  border-radius: 16px;
}
.proof-note h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.proof-note p {
  font-size: 1rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.65); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.proof-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--lime); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: gap 0.3s ease;
}
.proof-link:hover { gap: 0.8rem; }

/* App screenshot (synthetic-data mockup, swappable for a real capture) */
.app-shot {
  max-width: 860px; margin: 3rem auto 0;
}
.app-shot img {
  display: block; width: 100%; height: auto;
  border: 1px solid rgba(63, 193, 185, 0.16);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.app-shot figcaption {
  margin-top: 0.9rem; text-align: center;
  font-size: 0.8rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.45);
}

/* Benefit grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.benefit {
  padding: 2.5rem 2rem;
  background: rgba(240, 244, 248, 0.03);
  border: 1px solid rgba(240, 244, 248, 0.08);
  border-radius: 12px;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.benefit:hover {
  border-color: rgba(193, 255, 114, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.benefit h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.benefit p {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.65); line-height: 1.7;
}

/* "How we build" closing note (.section p is 0,1,1 — match it to win on order) */
.section .build-note {
  max-width: 720px; margin: 0 auto; text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 300;
  color: rgba(240, 244, 248, 0.7); line-height: 1.7;
}

/* Final CTA */
.page-cta { text-align: center; padding: 7rem 2rem 9rem; position: relative; }
.page-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-cta p {
  font-size: 1rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.6);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}
