
/* NEW HIGH-CONTRAST SECTIONS */
.section-black {
  background: #000000;
  color: #ffffff;
}

.section-light {
  background: #f5f5f5;
  color: #000000;
}

/* Optional: improve readability inside light sections */
.section-light p,
.section-light li,
.section-light h2,
.section-light h3 {
  color: #000000;
}

/* Optional: subtle divider lines in light sections */
.section-light .card,
.section-light .bullet,
.section-light .proof-card,
.section-light .step,
.section-light .contact-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #000000;
}
/* Base & layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #020617;
  color: #e5e7eb;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Sections with alternating black/grey backdrops */

.section {
  padding: 4rem 0 4.5rem;
}

.section-hero {
  background: radial-gradient(circle at top left, #1f2937 0, #020617 55%);
}

.section-mid {
  background: #050816; /* dark grey */
}

.section-light {
  background: #0b1120; /* slightly lighter */
}

.section-dark {
  background: #020617; /* almost black */
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,0.75), transparent);
  border-bottom: 1px solid #020617;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.25rem;
}


.bolt-large {
  font-size: 2.4rem;
  color: #f97316;
  margin-bottom: -4px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text .accent {
  color: #f97316;
}

.nav-links {
  display: flex;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: #9ca3af;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: #f97316;
  border-radius: 999px;
  transition: width 0.16s ease-out;
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.3vw + 1.4rem, 3.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.accent {
  color: #f97316;
}

.subtitle {
  color: #9ca3af;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-meta {
  max-width: 36rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: #f97316;
  color: #000;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.35);
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-small {
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  box-shadow: none;
}

.ghost-link {
  font-size: 0.9rem;
  color: #9ca3af;
}

.ghost-link:hover {
  color: #f97316;
}

/* Hero side panel */

.hero-panel {
  position: relative;
}

.card {
  background: rgba(15,23,42,0.96);
  border-radius: 16px;
  border: 1px solid #111827;
  padding: 1.2rem 1.3rem;
}

.metrics-card {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.metrics-card h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin: 0 0 0.6rem;
}

.metrics-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.metrics-card li {
  font-size: 0.9rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed #374151;
}

.metrics-card li:last-child {
  border-bottom: none;
}

.metrics-card span {
  font-weight: 600;
  color: #f97316;
  margin-right: 0.4rem;
}

.chip-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-size: 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.9);
  color: #9ca3af;
}

/* Section headers */

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: #9ca3af;
  max-width: 32rem;
}

/* Split layout */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.split p {
  color: #9ca3af;
}

/* Grids */

.bullet-grid,
.card-grid,
.steps,
.proof-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.bullet-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  align-items: flex-start;
}

/* Bullet cards */

.bullet {
  padding: 1rem 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #111827;
  background: #020617;
}

.bullet h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.bullet p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Steps */

.step {
  position: relative;
  padding: 1.4rem 1.2rem 1.4rem;
  border-radius: 14px;
  border: 1px solid #111827;
  background: #020617;
}

.step-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(249,115,22,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #f97316;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Proof cards */

.proof-card {
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: 14px;
  border: 1px solid #111827;
  background: #020617;
}

.proof-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.proof-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Contact */

.contact-card {
  border-radius: 16px;
  border: 1px solid #111827;
  background: #020617;
  padding: 1.3rem 1.2rem 1.4rem;
}

.contact-card h3 {
  margin: 0 0 0.7rem;
}

.contact-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.contact-note {
  font-size: 0.85rem;
  color: #6b7280;
}

.contact-points {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.7rem 0 0;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Footer */

.site-footer {
  background: #020617;
  border-top: 1px solid #020617;
  padding: 1rem 0 1.3rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-note {
  color: #6b7280;
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    gap: 0.8rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
  }
}
/* Leadership section background */
.section-light {
  background: #f5f5f7;       /* very light grey for contrast */
  color: #111827;
}

.section-light h2 {
  color: #111827;
}

/* Layout: text on the left, profile on the right (or stack on mobile) */
.leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.leadership-copy p {
  color: #4b5563;
  max-width: 34rem;
}

/* Profile card – just image + text, no extra boxes */
.leader-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Fixed image size: 200 x 400, portrait */
.leader-photo-fixed {
  width: 200px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
}

/* Name in accent color (same as bolt) */
.leader-name {
  margin: 0.8rem 0 0.15rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f97316; /* bolt orange */
}

/* Title + LinkedIn pill in one row, left aligned under name */
.leader-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.leader-title-text {
  white-space: nowrap;
}

/* LinkedIn pill */
.linkedin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #0a66c2;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.linkedin-pill:hover {
  filter: brightness(1.05);
}

/* Mobile: stack columns */
@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}