/* ============================================================
   HOME PAGE — Mississauga Skyhawks
   Full redesign: hero fly-in, ticker, stats, about, brand story,
   leadership, CTA bleed
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px; /* fixed nav height */
  background: #000d1e;
}

/* ── Layered background ─────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,58,112,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 15% 80%, rgba(242,195,0,0.08) 0%, transparent 60%),
    linear-gradient(165deg, #000d1e 0%, #001836 40%, #000d1e 100%);
}

.hero-bg-diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    transparent 0%,
    transparent 52%,
    rgba(0,58,112,0.18) 52%,
    rgba(0,58,112,0.10) 65%,
    transparent 65%
  );
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 40%, transparent 100%);
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,8,20,0.7) 100%);
}

/* ── Jet actor — JS-driven land-and-depart loop ── */
.jet-actor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  width: 140px;
  will-change: transform, opacity;
}

.jet-actor img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 18px rgba(242,195,0,0.6))
    drop-shadow(0 4px 14px rgba(0,0,0,0.7));
}

/* ── Static shield logo ──────────────────────────── */
.hero-logo-static {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(0,58,112,0.5)) drop-shadow(0 0 60px rgba(242,195,0,0.2));
}

/* ── Hero content grid ──────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
  width: 100%;
}

/* ── Text column ────────────────────────────────────── */
.hero-text {
  color: white;
  max-width: 620px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(242,195,0,0.8);
}

/* ── Hero title ─────────────────────────────────────── */
.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.ht-city {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.1em;
}

.ht-team {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 0.88;
  text-shadow: 0 4px 40px rgba(0,58,112,0.6);
}
.ht-team em {
  font-style: normal;
  color: var(--gold);
}

.ht-league {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3em;
}

/* ── Divider ────────────────────────────────────────── */
.hero-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(242,195,0,0.3));
  border-radius: 2px;
  margin: var(--space-6) 0;
}

/* ── Hero subtitle ──────────────────────────────────── */
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--space-8);
}

/* ── Action buttons ─────────────────────────────────── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* ── Mini stats row ─────────────────────────────────── */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hms-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hms-val {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hms-lbl {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hms-sep {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Logo right column ──────────────────────────────── */
.hero-logo-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

/* Rotating decorative rings */
.hero-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242,195,0,0.15);
  pointer-events: none;
}

.hero-logo-ring--outer {
  inset: 0;
  animation: ringRotate 18s linear infinite;
}
.hero-logo-ring--inner {
  inset: 40px;
  border-color: rgba(0,58,112,0.4);
  border-width: 2px;
  animation: ringRotate 12s linear infinite reverse;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Background glow behind rings */
.hero-logo-column::before {
  content: '';
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, rgba(0,58,112,0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


/* ── Static shield logo (centered in logo column) ── */
.hero-logo-column .hero-logo-static {
  position: relative;
  z-index: 2;
  width: 420px;
  height: 420px;
  object-fit: contain;
}


/* ── Scroll indicator ───────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(242,195,0,0.6), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* ══════════════════════════════════════════════════════════
   HERO — RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 320px;
  }
  .hero-logo-column {
    width: 320px;
    height: 320px;
  }
  .hero-logo-column .hero-logo-static {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-divider {
    margin-inline: auto;
  }
  .hero-sub {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-mini-stats {
    justify-content: center;
  }
  .hero-logo-column {
    display: none; /* logo animation is full-screen anyway; static version hidden on mobile */
  }
  .ht-team {
    font-size: clamp(3rem, 14vw, 5rem);
  }
}

@media (max-width: 480px) {
  .hero-mini-stats {
    flex-direction: column;
    gap: var(--space-3);
  }
  .hms-sep { display: none; }
  .hms-item { flex-direction: row; align-items: center; gap: var(--space-3); }
}

/* ══════════════════════════════════════════════════════════
   TEAMS TICKER
══════════════════════════════════════════════════════════ */
.teams-ticker {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-top: 2px solid rgba(242,195,0,0.3);
  border-bottom: 2px solid rgba(242,195,0,0.3);
  padding-block: var(--space-4);
  white-space: nowrap;
}

/* subtle gradient masks at edges */
.teams-ticker::before,
.teams-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.teams-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}
.teams-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy), transparent);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: var(--space-5);
  animation: tickerScroll 24s linear infinite;
  will-change: transform;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.teams-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 200ms ease;
  padding-inline: var(--space-2);
}

.ticker-item--active {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(242,195,0,0.5);
}

.ticker-sep {
  color: rgba(242,195,0,0.35);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   STATS BANNER
══════════════════════════════════════════════════════════ */
.stats-banner {
  padding-block: clamp(var(--space-8), 4vw, var(--space-12));
}

.stats-container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-16));
}

.stats-grid--5 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.stats-grid--5 .stat-item {
  flex: 1;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: transparent;
  border: none;
  border-radius: 0;
}

.stats-grid--5 .stat-item .value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stats-grid--5 .stat-item .label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-2);
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  flex-shrink: 0;
  margin-block: var(--space-4);
}

@media (max-width: 768px) {
  .stats-grid--5 {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    row-gap: var(--space-2);
  }
  /* Hide every other stat-divider (vertical ones) and show in grid context */
  .stats-grid--5 .stat-divider:nth-child(4),
  .stats-grid--5 .stat-divider:nth-child(8) {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid--5 {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid--5 .stat-divider {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about-section {
  background: var(--color-bg);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

/* ── Section kicker (gold line + label) ─────────────── */
.section-kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.kicker-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-kicker > span:last-child {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-kicker--light .kicker-line { background: var(--gold); }
.section-kicker--light > span:last-child { color: var(--gold); }

/* ── Section headline ───────────────────────────────── */
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.section-headline--light { color: white; }

.section-header-center {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: 1.7;
  margin-inline: auto;
  margin-top: var(--space-4);
}

.section-sub--light { color: rgba(255,255,255,0.65); }

/* ── Body copy ──────────────────────────────────────── */
.body-copy {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: var(--space-5);
}

/* ── Tags / pills ───────────────────────────────────── */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
}

.pill--gold {
  background: rgba(242,195,0,0.12);
  color: var(--gold-dark);
  border-color: rgba(242,195,0,0.35);
}
[data-theme='dark'] .pill--gold {
  color: var(--gold);
}

.pill--navy {
  background: var(--navy);
  color: white;
}

.pill--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

/* ── Brand swatches ─────────────────────────────────── */
.brand-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.swatch {
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-height: 100px;
}

.swatch--navy { background: #003A70; }
.swatch--gold { background: #F2C300; }
.swatch--gray { background: #BBBBBB; }

.sw-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-top: auto;
}
.swatch--gold .sw-name { color: rgba(0,0,0,0.7); }
.swatch--gray .sw-name { color: rgba(0,0,0,0.6); }

.sw-sub {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}
.swatch--gold .sw-sub { color: rgba(0,0,0,0.4); }
.swatch--gray .sw-sub { color: rgba(0,0,0,0.35); }

/* ── Logo showcase ──────────────────────────────────── */
.logo-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #001030 0%, #003A70 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  overflow: hidden;
}

.logo-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.logo-showcase-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242,195,0,0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}

.logo-showcase-img {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 24px rgba(242,195,0,0.3));
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-right {
    order: -1;
  }
}

/* ══════════════════════════════════════════════════════════
   BRAND STORY — 3-column cards
══════════════════════════════════════════════════════════ */
.brand-story-section {
  background: var(--color-surface-2);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--space-4), 3vw, var(--space-8));
}

.story-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  overflow: hidden;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,58,112,0.15);
  border-color: rgba(242,195,0,0.3);
}

/* Large ghost number background */
.story-num {
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
[data-theme='dark'] .story-num {
  color: white;
  opacity: 0.05;
}

.story-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,58,112,0.08);
  border: 1px solid rgba(0,58,112,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
  transition: background 200ms ease, color 200ms ease;
}
[data-theme='dark'] .story-icon {
  background: rgba(242,195,0,0.08);
  border-color: rgba(242,195,0,0.15);
  color: var(--gold);
}
.story-card:hover .story-icon {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.story-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.story-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   LEADERSHIP SECTION
══════════════════════════════════════════════════════════ */
.leadership-section.section--deep {
  background: #000d1e;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal grid bg */
.leadership-section.section--deep::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Right glow */
.leadership-section.section--deep::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,58,112,0.3) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

/* ── Leader card ────────────────────────────────────── */
.leader-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(242,195,0,0.2);
  border-color: rgba(242,195,0,0.25);
}

/* ── Photo wrapper with slide-up overlay ────────────── */
.leader-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #001030;
}

.leader-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 400ms var(--ease-out);
  filter: grayscale(20%) contrast(1.05);
}

.leader-card:hover .leader-img-wrap img {
  transform: scale(1.06);
}

/* Overlay slides up on hover */
.leader-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,8,30,0.97) 0%, rgba(0,8,30,0.85) 60%, transparent 100%);
  padding: var(--space-6) var(--space-4) var(--space-4);
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.leader-card:hover .leader-slide-overlay {
  transform: translateY(0);
}

.leader-slide-overlay p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: none;
}

/* Gold top line on slide overlay */
.leader-slide-overlay::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--space-3);
}

/* ── Leader body ────────────────────────────────────── */
.leader-body {
  padding: var(--space-4) var(--space-4) var(--space-5);
}

.leader-role {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-1);
}

.leader-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.leader-tags span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
}

.leader-bio {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-top: var(--space-4);
}

@media (max-width: 1024px) {
  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .leaders-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   CTA BLEED
══════════════════════════════════════════════════════════ */
.cta-bleed {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.cta-bleed-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 40%, #000d1e 100%);
  z-index: 0;
}

/* Diagonal stripe accent */
.cta-bleed-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 50%, rgba(242,195,0,0.06) 50%, rgba(242,195,0,0.06) 60%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,58,112,0.4) 0%, transparent 70%);
}

/* Grid overlay */
.cta-bleed-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.cta-bleed-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.cta-bleed-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: white;
  margin-bottom: var(--space-3);
}

.cta-bleed-text h2 span { color: var(--gold); }

.cta-bleed-text p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: 48ch;
}

.cta-bleed-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.cta-bleed-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-bleed-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-bleed-actions {
    justify-content: center;
  }
}
