/* ─────────────────────────────────────────────────────────────────
   /leaders/ — security-leader / Director-audience site overlay.
   Inherits from ../assets/styles.css. Slightly warmer than seceng;
   forwardable and exec-friendly framing.
   ───────────────────────────────────────────────────────────────── */

/* Eyebrow notice bar — establishes the persona. */
.leaders-eyebrow-bar {
  background: #0f1c30;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  padding: 8px 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.leaders-eyebrow-bar a { color: var(--orange); }

/* Tighter eyebrow text on individual pages. */
.leaders-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

/* Breadcrumb strip below the eyebrow bar. */
.leaders-breadcrumb {
  background: #f4f6fa;
  border-bottom: 1px solid var(--rule-cool);
  padding: 8px 0;
  font-size: 12px;
  color: var(--ink-soft);
}
.leaders-breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.leaders-breadcrumb a:hover { color: var(--orange-deep); }
.leaders-breadcrumb .crumb-sep { margin: 0 8px; color: var(--ink-faint); }
.leaders-breadcrumb .crumb-current { color: var(--ink); font-weight: 600; }

/* Dropdown navigation — same shape as seceng for consistency.
   Hover-to-open on desktop, flattened inside the hamburger on mobile. */
.site-nav .nav-dropdown { position: relative; }
.site-nav .nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 10px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.site-nav .nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 4px;
  font-size: 9px;
  color: var(--ink-faint);
  transition: transform 0.12s;
}
.site-nav .nav-dropdown:hover .nav-dropdown-toggle,
.site-nav .nav-dropdown:focus-within .nav-dropdown-toggle { color: var(--orange-deep); }
.site-nav .nav-dropdown:hover .nav-dropdown-toggle::after,
.site-nav .nav-dropdown:focus-within .nav-dropdown-toggle::after { transform: rotate(180deg); }
.site-nav .nav-dropdown.has-current .nav-dropdown-toggle {
  color: var(--orange-deep);
  border-bottom-color: var(--orange);
}
.site-nav .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--rule-cool);
  border-radius: 6px;
  padding: 6px 0;
  min-width: 260px;
  box-shadow: 0 6px 18px rgba(15, 28, 48, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.12s, transform 0.12s, visibility 0s 0.12s;
  list-style: none;
  margin: 0;
  z-index: 100;
}
.site-nav .nav-dropdown:hover .nav-dropdown-menu,
.site-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.12s, transform 0.12s, visibility 0s;
}
.site-nav .nav-dropdown-menu li { margin: 0; }
.site-nav .nav-dropdown-menu a {
  display: block; padding: 8px 16px;
  color: var(--ink); font-size: 13.5px; font-weight: 500;
  text-decoration: none; border-bottom: none;
}
.site-nav .nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--orange-deep); }
.site-nav .nav-dropdown-menu a.current {
  color: var(--orange-deep); font-weight: 700; background: rgba(227, 100, 25, 0.06);
}
@media (max-width: 800px) {
  .site-nav { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav .nav-dropdown { width: 100%; }
  .site-nav .nav-dropdown-toggle {
    width: 100%; text-align: left;
    padding: 12px 0 4px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--rule-cool);
  }
  .site-nav .nav-dropdown-toggle::after { display: none; }
  .site-nav .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 4px 0 8px;
    background: transparent; min-width: 0;
  }
  .site-nav .nav-dropdown-menu a { padding: 8px 0 8px 12px; font-size: 14px; }
  .site-nav .btn.btn-orange { margin: 14px 0 0; align-self: flex-start; }
}

/* Pressure cards — three-up grid on homepage and pressure overview. */
.pressure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.pressure-card {
  background: white;
  border: 1px solid var(--rule-cool);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.pressure-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -4px rgba(15, 28, 48, 0.15);
  text-decoration: none;
}
.pressure-card .pc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-deep);
  margin-bottom: 8px;
}
.pressure-card h3 {
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.3;
}
.pressure-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 800px) { .pressure-grid { grid-template-columns: 1fr; } }

/* Content card — general-purpose. */
.leaders-card {
  background: white;
  border: 1px solid var(--rule-cool);
  border-radius: 6px;
  padding: 22px 26px;
  margin-bottom: 16px;
}
.leaders-card h3 {
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--ink);
}
.leaders-card p {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 10px;
}
.leaders-card p:last-child { margin-bottom: 0; }
.leaders-card .lc-muted { color: var(--ink-soft); font-size: 13.5px; }

/* The "stat bar" used at the top of pressure pages. */
.leaders-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 28px;
}
.leaders-stat {
  background: white;
  border: 1px solid var(--rule-cool);
  border-radius: 6px;
  padding: 18px 22px;
}
.leaders-stat .stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange-deep);
  line-height: 1.1;
  font-feature-settings: "tnum";
}
.leaders-stat .stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.4;
}
.leaders-stat .stat-source {
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 6px;
  font-style: italic;
}
@media (max-width: 700px) { .leaders-stats { grid-template-columns: 1fr; } }

/* TL;DR summary card — subtle, lives just under the hero on long pages. */
.tldr-card {
  background: white;
  border: 1px solid var(--rule-cool);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  padding: 14px 18px;
  margin: 16px 0 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}
.tldr-card .tldr-meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-right: 8px;
}

/* Inline product video — pulled from main site pattern. */
.leaders-video-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px -8px rgba(15, 28, 48, 0.25);
  margin: 24px auto;
  max-width: 720px;
}
.leaders-video-link img { width: 100%; display: block; }
.leaders-video-link .video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(227, 100, 25, 0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.12s ease, background 0.12s ease;
}
.leaders-video-link:hover .video-play { transform: translate(-50%, -50%) scale(1.05); background: var(--orange); }
.leaders-video-link .video-play svg { width: 28px; height: 28px; fill: white; margin-left: 4px; }
.leaders-video-caption {
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 8px;
}

/* Product screenshot frame — for dashboard / portfolio-view images. */
.leaders-screenshot {
  display: block;
  margin: 24px auto;
  max-width: 760px;
  border: 1px solid var(--rule-cool);
  border-radius: 6px;
  box-shadow: 0 6px 18px -6px rgba(15, 28, 48, 0.15);
  background: white;
}
.leaders-screenshot img, .leaders-screenshot > svg { width: 100%; display: block; }
.leaders-screenshot-caption {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Calm note callout — used for advisor-voice asides. */
.leaders-note {
  background: #f4f6fa;
  border-left: 3px solid #0f1c30;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 18px 0;
}
.leaders-note strong { color: var(--ink); }

/* Side-by-side decision callout for board / CFO framing. */
.leaders-decision {
  background: rgba(227, 100, 25, 0.06);
  border-left: 3px solid var(--orange);
  padding: 18px 22px;
  border-radius: 4px;
  margin: 18px 0;
}
.leaders-decision .ld-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-deep);
  margin-bottom: 8px;
}
.leaders-decision p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 8px;
}
.leaders-decision p:last-child { margin-bottom: 0; }

/* CTA band — same dark gradient as seceng for brand consistency. */
.cta-band.leaders-cta {
  background: linear-gradient(180deg, #0f1c30 0%, #1a2942 100%);
  color: white;
}
.cta-band.leaders-cta .wrap-narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-band.leaders-cta .wrap-narrow h2,
.cta-band.leaders-cta .wrap-narrow p { max-width: 720px; }
.cta-band.leaders-cta .wrap-narrow .btn { margin: 0 auto; }

/* Footer — same slim two-row design as seceng. */
.site-footer.leaders-footer { padding: 36px 0 28px; }
.site-footer.leaders-footer .footer-quick,
.site-footer.leaders-footer .footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 4px 12px; font-size: 13px; margin-bottom: 14px;
}
.site-footer.leaders-footer .footer-quick a,
.site-footer.leaders-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none; white-space: nowrap;
}
.site-footer.leaders-footer .footer-quick a:hover,
.site-footer.leaders-footer .footer-legal a:hover { color: var(--orange); }
.site-footer.leaders-footer .footer-legal {
  font-size: 12px; margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer.leaders-footer .footer-legal a { color: rgba(255, 255, 255, 0.55); }
.site-footer.leaders-footer .footer-bottom {
  font-size: 12px; color: rgba(255, 255, 255, 0.65);
  justify-content: center; gap: 6px 28px;
  flex-wrap: wrap; text-align: center;
}
.site-footer.leaders-footer .footer-bottom a { color: var(--orange); }
.site-footer.leaders-footer .footer-sep { color: rgba(255, 255, 255, 0.3); }

/* Print-friendly for downloadable / forwardable pages. */
@media print {
  .site-header, .site-footer, .cta-band, .leaders-eyebrow-bar, .leaders-breadcrumb { display: none; }
  body { background: white; }
}
