/**
 * Home page — section spacing + home-only header accents
 */

body .section--alt {
  padding: 8px 0 28px;
}

body .video-section {
  padding: 8px 0 20px;
}

body .partners-section-wrap {
  padding: 8px 0 20px;
}

body .other-systems-section {
  padding: 12px 0 48px;
}

body .section--alt:has(#leadership-cards) .section__header .header-icon {
  background: linear-gradient(145deg, #5a91dc, #3266b5 55%, #2855a0);
}

body .section--alt:has(#leadership-cards) .section__header .eyebrow {
  color: #2855a0;
  background: linear-gradient(135deg, rgba(66, 124, 208, 0.12), rgba(66, 124, 208, 0.06));
  border-color: rgba(66, 124, 208, 0.2);
}

body .section--alt:has(#news-grid-home) .section__header .header-icon {
  background: linear-gradient(145deg, #4ade80, #3bb23c 55%, #2d8f30);
}

body .section--alt:has(#news-grid-home) .section__header .eyebrow {
  color: var(--brand-green-dark, #2d8f30);
}

body .partners-section-wrap .section__header .header-icon {
  background: linear-gradient(145deg, #427cd0, #3bb23c 52%, #2d8f30);
}

body .other-systems-header .header-icon {
  background: linear-gradient(145deg, #b8e986, #3bb23c 48%, #feb91e);
}

body .other-systems-header h2 {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

body .video-more-wrap {
  text-align: center;
  margin-top: 16px;
}

body .video-more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 38px 14px 22px;
  background: linear-gradient(105deg, #427cd0 0%, #3266b5 58%, #3bb23c 58%, #2d8f30 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  box-shadow:
    0 12px 32px rgba(66, 124, 208, 0.3),
    0 4px 12px rgba(59, 178, 60, 0.2);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  position: relative;
}

body .video-more-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 55%, rgba(255, 255, 255, 0.12) 58%, transparent 62%);
  pointer-events: none;
}

body .video-more-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.45);
  font-size: 12px;
  flex-shrink: 0;
}

body .video-more-link__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.95;
  margin-left: -4px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body .video-more-link:hover {
  transform: translateX(8px);
  box-shadow:
    0 16px 40px rgba(66, 124, 208, 0.38),
    0 6px 16px rgba(59, 178, 60, 0.28);
}

body .video-more-link:hover .video-more-link__arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  body .section--alt,
  body .video-section,
  body .partners-section-wrap {
    padding-top: 6px;
    padding-bottom: 22px;
  }

  body .partners-section-wrap {
    padding-bottom: 16px;
  }

  body .other-systems-section {
    padding: 10px 0 36px;
  }

  body .video-more-link {
    padding: 12px 32px 12px 18px;
    font-size: 0.82rem;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  }
}
