/**
 * About page: extends landing-cinematic.css (lc-chapter, lc-glass, lc-pricing-card).
 * Loaded only on /about/.
 */

/* --- Scroll reveals (marketing base forces lc-reveal visible; we re-enable motion here) --- */
.lc-about-page .lc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.lc-about-page .lc-chapter__header.lc-reveal {
  transform: translateY(18px);
}

.lc-about-page .lc-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lc-about-page .lc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Section ambient washes (same pattern as lc-community / lc-origin) --- */
.lc-about-page .lc-chapter {
  overflow: hidden;
}

.lc-about-hero::before,
.lc-about-team::before,
.lc-about-vision::before,
.lc-about-products::before,
.lc-about-podcast::before,
.lc-about-journey::before {
  content: "";
  position: absolute;
  inset: -15% -8%;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px) saturate(1.1);
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 15%, transparent 72%);
}

.lc-about-hero::before {
  background: radial-gradient(circle at 30% 40%, rgba(37, 171, 161, 0.35), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(244, 196, 95, 0.22), transparent 50%);
}

.lc-about-team::before {
  background: radial-gradient(circle at 70% 50%, rgba(244, 196, 95, 0.2), transparent 55%);
}

.lc-about-vision::before {
  background: radial-gradient(circle at 20% 60%, rgba(37, 171, 161, 0.28), transparent 55%);
}

.lc-about-products::before {
  opacity: 0.35;
  background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.12), transparent 60%);
}

.lc-about-podcast::before {
  background: radial-gradient(circle at 50% 50%, rgba(30, 215, 96, 0.15), transparent 55%);
}

.lc-about-journey::before {
  background: radial-gradient(circle at 40% 30%, rgba(244, 196, 95, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(37, 171, 161, 0.15), transparent 50%);
}

.lc-about-page .lc-chapter > .lc-shell {
  position: relative;
  z-index: 1;
}

/* --- Hero --- */
.lc-about-hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lc-about-hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .lc-about-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

.lc-about-hero__copy .lc-title em {
  color: var(--lc-primary);
  font-style: normal;
}

.lc-about-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.lc-about-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--lc-gold);
  background: rgba(244, 196, 95, 0.08);
  border: 1px solid rgba(244, 196, 95, 0.35);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lc-about-pill:hover,
.lc-about-pill.is-active {
  background: rgba(244, 196, 95, 0.16);
  border-color: rgba(244, 196, 95, 0.55);
  box-shadow: 0 0 20px var(--lc-glow-gold);
  transform: translateY(-1px);
}

.lc-about-pill.is-active {
  background: rgba(244, 196, 95, 0.22);
  border-color: rgba(244, 196, 95, 0.65);
}

.lc-about-hero__frame {
  padding: 0.65rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 212, 115, 0.12) inset,
    0 28px 64px rgba(0, 0, 0, 0.45),
    0 0 48px var(--lc-glow-cyan);
  animation: lc-about-hero-glow 5s ease-in-out infinite;
}

@keyframes lc-about-hero-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 212, 115, 0.1) inset, 0 28px 64px rgba(0, 0, 0, 0.45), 0 0 40px rgba(37, 171, 161, 0.2); }
  50% { box-shadow: 0 0 0 1px rgba(255, 212, 115, 0.2) inset, 0 32px 72px rgba(0, 0, 0, 0.5), 0 0 56px rgba(244, 196, 95, 0.22); }
}

.lc-about-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--lc-radius) - 4px);
}

@media (prefers-reduced-motion: reduce) {
  .lc-about-hero__frame { animation: none; }
}

/* --- Two-column card rows --- */
.lc-about-duo {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .lc-about-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.lc-about-person {
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.3s, box-shadow 0.3s;
}

.lc-about-person:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.12) inset,
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 36px var(--lc-glow-cyan);
}

.lc-about-person__avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--lc-on-primary);
  background: linear-gradient(135deg, var(--lc-gold), #e8a830);
  box-shadow: 0 8px 24px rgba(244, 196, 95, 0.3);
  margin-bottom: 1rem;
}

.lc-about-person__avatar--teal {
  color: #fff;
  background: linear-gradient(135deg, var(--lc-brand-teal), #1a8a82);
  box-shadow: 0 8px 24px rgba(37, 171, 161, 0.35);
}

.lc-about-person__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}

.lc-about-person__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lc-brand-teal);
  margin: 0 0 0.85rem;
}

/* --- Vision panels --- */
.lc-about-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lc-brand-teal);
  margin-bottom: 0.5rem;
}

.lc-about-panel__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.65rem;
}

.lc-about-values-panel {
  margin-top: 1.35rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.lc-about-values {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lc-about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lc-about-values li {
  margin: 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.lc-about-values li:hover {
  border-color: rgba(244, 196, 95, 0.28);
  box-shadow: 0 0 24px rgba(244, 196, 95, 0.08);
}

.lc-about-values li strong {
  display: block;
  color: var(--lc-gold);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.lc-about-values li span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--lc-muted);
}

/* --- Products (pricing chapter reuse) --- */
.lc-about-products .lc-pricing__grid {
  min-width: 0;
}

.lc-about-products .lc-pricing-card {
  text-align: left;
  padding: 1.75rem 1.5rem;
  min-width: 0;
}

.lc-about-products .lc-pricing-card .lc-btn--block {
  box-sizing: border-box;
  max-width: 100%;
}

.lc-about-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  background: rgba(244, 196, 95, 0.12);
  border: 1px solid rgba(244, 196, 95, 0.3);
  box-shadow: 0 0 20px rgba(244, 196, 95, 0.12);
}

.lc-about-product-icon--teal {
  background: rgba(37, 171, 161, 0.12);
  border-color: rgba(37, 171, 161, 0.35);
  box-shadow: 0 0 20px rgba(37, 171, 161, 0.15);
}

.lc-about-products .lc-pricing-card__desc {
  min-height: 0;
  margin-bottom: 1.25rem;
}

.lc-about-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--lc-muted);
}

.lc-about-footnote a {
  color: var(--lc-gold);
}

/* --- Podcast --- */
.lc-about-podcast .lc-origin__panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.lc-about-podcast .lc-origin__actions {
  margin-top: 1.25rem;
}

/* --- Story chapters (origin panels) --- */
.lc-about-story {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.lc-about-chapter {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem) clamp(2.5rem, 4vw, 3rem);
}

.lc-about-chapter__rail {
  display: block;
  position: absolute;
  left: 0.85rem;
  top: 2rem;
  bottom: 2rem;
  width: 1.5rem;
}

.lc-about-chapter__num {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -210%);
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3fe0c0;
  text-shadow: 0 0 12px rgba(63, 224, 192, 0.6);
}

.lc-about-chapter .lc-origin__card {
  padding: 0.65rem;
  transform: none;
  overflow: hidden;
}

.lc-about-chapter .lc-origin__card:hover {
  transform: translateY(-2px);
}

.lc-about-chapter .lc-origin__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--lc-radius) - 6px);
}

@media (min-width: 900px) {
  .lc-about-chapter__grid--reverse .lc-origin__copy {
    order: 1;
  }
  .lc-about-chapter__grid--reverse .lc-origin__card {
    order: 2;
  }
}

.lc-about-bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--lc-muted);
  line-height: 1.65;
}

.lc-about-bullets li {
  margin-bottom: 0.35rem;
}

.lc-about-chapter .lc-origin__quote {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: 0.85rem 0;
}

/* --- Nav anchor scroll offset --- */
.lc-about-page [id] {
  scroll-margin-top: 5.5rem;
}
