/* About page styles */

/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 7vh, var(--spacing-4xl)) 0 clamp(40px, 5vh, var(--spacing-3xl));
  text-align: center;
}
.about-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding-inline: var(--spacing-lg);
}
.about-hero .section-eyebrow {
  animation: reveal-up 600ms 100ms var(--ease-smooth) both;
}
.about-hero-headline {
  color: var(--charcoal);
  margin-top: var(--spacing-md);
  animation: reveal-up 700ms 220ms var(--ease-smooth) both;
}
.about-hero-headline .italic {
  font-style: italic;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
  color: var(--primary);
  position: relative;
}
.about-hero-headline .italic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.03em;
  height: 0.05em;
  background: linear-gradient(90deg, transparent, var(--primary-40), transparent);
}
.about-hero-headline br {
  display: block;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 7vh, var(--spacing-4xl)) 0;
}
.video-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: var(--spacing-lg);
}
.video-player-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.video-player-wrap--full {
  max-width: 1080px;
}
.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 24px 64px var(--primary-22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-placeholder-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(132, 76, 172, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, var(--primary-40) 0%, transparent 55%),
    linear-gradient(160deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
  z-index: 0;
}

.video-meta-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-md);
}
.video-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  color: rgba(199, 166, 222, 0.7);
  letter-spacing: 0.08em;
}
.video-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2xs);
  font-size: var(--fs-label-lg);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(199, 166, 222, 0.75);
}
.video-live-indicator .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-lime 2s infinite;
}

.video-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
}
.video-play-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all var(--duration-base) var(--ease-smooth);
}
.video-play-ring:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}
.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  padding-left: 4px;
  transition: all var(--duration-base) var(--ease-smooth);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.video-play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.video-coming-label {
  font-size: var(--fs-body-base);
  font-weight: 500;
  color: rgba(199, 166, 222, 0.6);
  letter-spacing: 0.04em;
}

.video-embed-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 24px 64px var(--primary-22);
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== WHY SECTION ===== */
.why-section {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 7vh, var(--spacing-4xl)) 0;
}
.why-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: var(--spacing-lg);
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.why-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 246, 253, 0.96) 100%);
  border: 1px solid var(--primary-08);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl) var(--spacing-lg);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 12px 40px var(--primary-08);
}
.why-num {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  color: var(--charcoal-50);
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-xs);
}
.why-heading {
  color: var(--charcoal);
  margin-bottom: var(--spacing-sm);
}
.why-heading .italic {
  font-style: italic;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
  color: var(--primary);
  position: relative;
}
.why-heading .italic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.03em;
  height: 0.05em;
  background: linear-gradient(90deg, transparent, var(--primary-40), transparent);
}
.why-body {
  font-size: var(--fs-body-md);
  line-height: 1.6;
  color: var(--charcoal-75);
  max-width: 44ch;
}

/* ===== TEAM SECTION ===== */
.team-section {
  position: relative;
  z-index: 1;
  padding: clamp(52px, 7vh, var(--spacing-4xl)) 0;
  text-align: center;
}
.team-section-inner {
  max-width: 640px;
  margin: 0 auto;
  padding-inline: var(--spacing-lg);
}
.team-section .section-eyebrow {
  display: inline-flex;
}
.team-heading {
  color: var(--charcoal);
  margin-top: var(--spacing-md);
}
.team-heading .italic {
  font-style: italic;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
  color: var(--primary);
  position: relative;
}
.team-heading .italic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.03em;
  height: 0.05em;
  background: linear-gradient(90deg, transparent, var(--primary-40), transparent);
}
.team-body {
  margin-top: var(--spacing-md);
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  color: var(--charcoal-75);
}
.team-companies {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-xs) var(--spacing-lg);
  border-radius: var(--radius-pill);
  background: var(--primary-04);
  border: 1px solid var(--primary-10);
}
.company-tag {
  font-family: var(--font-ui);
  font-size: var(--fs-body-md);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.company-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-25);
  flex-shrink: 0;
}

/* ===== ABOUT CTA ===== */
.about-cta {
  position: relative;
  z-index: 1;
  padding: 0 var(--spacing-lg) clamp(52px, 7vh, var(--spacing-4xl));
}
.about-cta-inner {
  max-width: calc(1280px - 64px);
  margin: 0 auto;
  background: linear-gradient(160deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(52px, 7vh, 80px) clamp(var(--spacing-lg), 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.12);
}
.about-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(199, 166, 222, 0.18) 0.9px, transparent 1.2px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}
.about-cta-heading {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.about-cta-heading .italic {
  font-style: italic;
  font-variation-settings:
    "SOFT" 50,
    "opsz" 144;
  color: var(--primary-pale);
  position: relative;
}
.about-cta-heading .italic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.03em;
  height: 0.05em;
  background: linear-gradient(90deg, transparent, rgba(199, 166, 222, 0.4), transparent);
}
.about-cta-sub {
  margin-top: var(--spacing-md);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.about-cta-actions {
  margin-top: var(--spacing-xl);
  display: flex;
  gap: var(--spacing-xs);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.about-secondary-btn {
  color: rgba(199, 166, 222, 0.85);
  border-color: rgba(199, 166, 222, 0.25);
  text-decoration: none;
}
.about-secondary-btn:hover {
  border-color: rgba(199, 166, 222, 0.6);
  background: rgba(199, 166, 222, 0.06);
  color: var(--primary-pale);
}

.about-cta-actions .hero-pill {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  box-shadow:
    inset 0 1px 0 #fff,
    0 2px 12px rgba(0, 0, 0, 0.2);
  animation: none;
}
.about-cta-actions .hero-pill-cta:hover {
  background: #fff;
  border-color: #fff;
  box-shadow:
    inset 0 1px 0 #fff,
    0 4px 18px rgba(0, 0, 0, 0.25);
}

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  .about-hero {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
  }
  .about-hero-inner {
    padding-inline: var(--spacing-md);
  }
  .about-hero-headline br {
    display: none;
  }

  .video-section {
    padding: var(--spacing-2xl) 0;
  }
  .video-section-inner {
    padding-inline: var(--spacing-md);
  }

  .why-section {
    padding: var(--spacing-2xl) 0;
  }
  .why-section-inner {
    padding-inline: var(--spacing-md);
  }
  .why-cards {
    grid-template-columns: 1fr;
  }
  .why-body {
    max-width: none;
  }

  .team-section {
    padding: var(--spacing-2xl) 0;
  }
  .team-section-inner {
    padding-inline: var(--spacing-md);
  }
  .team-heading br {
    display: none;
  }
  .team-companies {
    width: 100%;
    justify-content: center;
  }

  .about-cta {
    padding: 0 var(--spacing-md) var(--spacing-2xl);
  }
  .about-cta-inner {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  .about-cta-heading br {
    display: none;
  }
  .about-cta-actions {
    flex-direction: column;
  }
}
