/* ===== ABOUT PAGE CSS ===== */

.about-header {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
}

.ph-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ph-bg svg { width: 100%; height: 100%; }

.ph-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,200,255,0.1), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(80px);
}

.about-header .page-header-inner { position: relative; z-index: 1; }

/* ORIGIN */
.origin-section {
  padding: 8rem 0;
  background: var(--bg2);
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.origin-text h2 { margin: 0.5rem 0 1.5rem; }
.origin-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.origin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.oc-line {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1rem 0;
}

.oc-line.active .oc-year { color: var(--accent); }
.oc-line.active .oc-event { color: var(--text); }

.oc-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  padding-top: 0.15rem;
  font-weight: 400;
}

.oc-event {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.oc-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin-left: 29px;
}

/* VALUES */
.values-section {
  padding: 8rem 0;
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.3s, border-color 0.3s;
  transition-delay: calc(var(--i, 0) * 0.1s);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.value-card:hover { transform: translateY(-6px); border-color: rgba(0,255,180,0.3); }

.value-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p { color: var(--text-muted); font-size: 0.95rem; }

/* TEAM */
.team-section {
  padding: 8rem 0;
  background: var(--bg2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  transition-delay: calc(var(--i, 0) * 0.1s);
}

.team-card:hover { transform: translateY(-6px); border-color: rgba(0,255,180,0.25); }

.team-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.avatar-hex {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0,255,180,0.15), rgba(0,200,255,0.1));
  border: 2px solid rgba(0,255,180,0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.team-skills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.team-skills span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
}

/* PARENT COMPANY */
.parent-section {
  padding: 8rem 0;
  background: var(--bg);
}

.parent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.parent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,180,0.04), transparent 60%);
}

.parent-text { position: relative; z-index: 1; }
.parent-text h2 { margin: 0.5rem 0 1rem; }
.parent-text p { color: var(--text-muted); margin-bottom: 2rem; max-width: 460px; }

.parent-shape { position: relative; z-index: 1; }

.ps-hex-large {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(0,255,180,0.1), rgba(0,200,255,0.05));
  border: 2px solid rgba(0,255,180,0.2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatHex 5s ease-in-out infinite;
}

/* CTA (shared) */
.cta-section {
  padding: 8rem 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg svg { width: 100%; height: 100%; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.cta-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }

@keyframes floatHex {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .origin-grid, .parent-card { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .parent-shape { display: none; }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
}
