/* ══════════════════════════════════════════════════════════════
   About page — page-specific styles
   ══════════════════════════════════════════════════════════════ */

/* Holographic principles section */
.holo-section { position: relative; overflow: hidden; padding: 6rem 2rem; }

.principles-grid {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 3rem;
  position: relative; z-index: 5;
}
.principle {
  width: 240px; padding: 2rem 1.5rem; border-radius: 12px;
  text-align: center; opacity: 0;
  background: transparent; border: 1px solid transparent;
  transform-style: preserve-3d;
  position: relative; overflow: hidden;
}
.principle-inner { position: relative; z-index: 2; transform-style: preserve-3d; }
.principle.materialized {
  background: rgba(240, 244, 248, 0.03);
  border: 1px solid rgba(240, 244, 248, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.4s ease;
}
.principle.materialized:hover { border-color: rgba(193, 255, 114, 0.32); }
.principle h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--lime);
}
.principle p {
  font-size: 0.85rem; margin-bottom: 0;
  color: rgba(240, 244, 248, 0.6); line-height: 1.6;
}

/* Holo title/sub initial state */
.holo-title, .holo-sub { opacity: 0; text-align: center; }
.holo-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.holo-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(240, 244, 248, 0.6); line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}

/* Leadership section */
.ceo-section {
  display: flex; align-items: center;
  gap: 4rem; padding: 4rem 0;
  flex-wrap: wrap; justify-content: center;
}
.ceo-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(240, 244, 248, 0.08);
  object-fit: cover; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(5, 88, 214, 0.15), rgba(63, 193, 185, 0.1));
}
.ceo-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.25rem; }
.ceo-info .role {
  font-size: 0.85rem; color: var(--lime);
  font-weight: 500; margin-bottom: 1rem;
}
.ceo-info p { font-size: 1rem; max-width: 500px; }

/* Associations row */
.assoc-row {
  display: flex; justify-content: center;
  gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
}
.assoc-badge {
  width: 220px;
  min-height: 200px;
  border-radius: 16px;
  background: rgba(240, 244, 248, 0.03);
  border: 1px solid rgba(240, 244, 248, 0.08);
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.85rem;
  text-decoration: none; color: inherit;
  transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease;
  opacity: 0; transform: translateY(30px);
}
.assoc-badge.visible { opacity: 1; transform: translateY(0); }
.assoc-badge:hover,
.assoc-badge:focus-visible {
  border-color: var(--teal);
  transform: translateY(-5px);
  background: rgba(240, 244, 248, 0.05);
  outline: none;
}
.assoc-badge img {
  width: 64px; height: 64px;
  object-fit: contain;
}
.assoc-badge-name {
  font-size: 0.85rem; font-weight: 600;
  line-height: 1.35; text-align: center;
  color: rgba(240, 244, 248, 0.85);
}
.assoc-badge-abbr {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.7;
  margin-top: auto;
}
