/* About us page — extends tokens/classes already defined in kc-new-landing.css
   (hero-container, l-container, l-title, l-desc, cta-btn, cta-group, secondary-btn,
   text-link, features-grid/feature-item, reveal-item, full-width-breakout-section-contrast*).
   Only page-specific rules live here. */

:root {
  --contrast-text-muted: rgba(255, 255, 255, 0.68);
}
.dark {
  --contrast-text-muted: rgba(55, 62, 69, 0.68);
}
/* l-title/l-desc hardcode --text-color; re-point them to the flipping
   --contrast-text tokens when nested inside a dark/contrast section so
   the site's light/dark toggle still works correctly on this page. */
.full-width-breakout-section-contrast-darkest .l-title,
.full-width-breakout-section-contrast .l-title {
  color: var(--contrast-text);
}
.full-width-breakout-section-contrast-darkest .l-desc,
.full-width-breakout-section-contrast .l-desc {
  color: var(--contrast-text-muted);
}
.full-width-breakout-section-contrast .about-value-item b {
  color: var(--contrast-text);
}
.full-width-breakout-section-contrast .about-value-item p {
  color: var(--contrast-text-muted);
}
.about-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 4px;
}
.about-hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about-hero-stats .stat b {
  font-size: 22px;
  font-weight: 500;
  color: var(--hero-text-main, #fff);
  font-variant-numeric: tabular-nums;
}
.about-hero-stats .stat span {
  font-size: 13px;
  color: var(--hero-text-muted, rgba(255, 255, 255, 0.65));
}
.about-hero-stats .divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- video showcase ---------- */
.about-video-section {
  padding: 24px 20px 72px;
}
@media (min-width: 768px) {
  .about-video-section {
    padding: 32px 32px 96px;
  }
}
.about-video-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.about-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05070a;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.about-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-video-frame .scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, transparent 40%, rgba(5, 7, 10, 0.7) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.about-video-frame.is-playing .scrim {
  opacity: 0;
}
.about-play-btn {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease;
}
.about-play-btn .ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--cta-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.2s ease;
}
.about-play-btn:hover .ring {
  transform: scale(1.08);
  background: #c40032;
}
.about-video-frame.is-playing .about-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* ---------- pillars (Research / Events / Advisory) ----------
   Mirrors technology-provider.tpl's .tp-leadership / .tp-events pattern:
   image with floating stat badges on one side, title/subtitle/description/
   CTA on the other, alternating by DOM order. */
.about-pillar-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 20px;
}
@media (min-width: 992px) {
  .about-pillar-row {
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    padding: 72px 32px;
  }
}
@media (max-width: 767px) {
  .about-pillar-row .about-pillar-visual {
    order: 2;
  }
  .about-pillar-row .about-pillar-copy {
    order: 1;
  }
}

.about-pillar-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.about-pillar-image {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.dark .about-pillar-image {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.about-pillar-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  color: #373e45;
  height: 44px;
  white-space: nowrap;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-pillar-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .about-pillar-badge {
    left: 16px !important;
    right: 16px !important;
    bottom: -20px !important;
    top: auto !important;
  }
}

.about-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 32px;
  flex-shrink: 0;
}
.about-badge-text {
  font-size: 14px;
  color: #373e45;
}
.about-badge-text strong {
  font-weight: 700;
}

.about-pillar-copy {
  text-align: left;
}
.about-pillar-subtitle {
  font-weight: 500;
  font-size: 20px;
  color: var(--text-color);
  margin: 16px 0;
  display: block;
}
.about-pillar-tags {
  font-size: 16px;
  color: var(--text-color);
  margin: 24px 0 32px 0;
  font-weight: 400;
}
.about-pillar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.about-pillar-copy > .secondary-btn {
  margin-top: 24px;
}

/* ---------- core values ----------
   Mirrors technology-provider.tpl's .tp-barriers-grid / .tp-barrier-item
   pattern: centered header, centered icon-above-text tiles. */
.about-values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
  margin: 0 auto;
  width: 100%;
}
.about-value-item {
  flex: 0 1 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}
.about-value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value-icon svg {
  width: 48px;
  height: 48px;
  color: var(--cta-color);
}
.about-value-item b {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 16px;
}
.about-value-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 220px;
  margin: 8px 0 0;
}
@media (min-width: 700px) {
  .about-value-item {
    flex: 0 1 calc(33.333% - 27px);
  }
}
@media (min-width: 1100px) {
  .about-value-item {
    flex: 0 1 calc(20% - 32px);
  }
}
