/* ================================================================
   Team & Story page — extends css/pages/investors.css patterns
   ================================================================ */

/* ---- Genesis timeline ---- */
.genesis-timeline {
  position: relative;
  margin: 36px 0 0;
  padding-left: 34px;
  display: grid;
  gap: 26px;
}

.genesis-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, #8c5cff 0%, #34d5ff 100%);
  opacity: 0.45;
}

.genesis-step {
  position: relative;
}

.genesis-step::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0d1024;
  border: 2px solid #8c5cff;
  box-shadow: 0 0 0 4px rgba(140, 92, 255, 0.15);
}

.genesis-step--now::before {
  background: #20f0a0;
  border-color: #20f0a0;
  box-shadow: 0 0 0 4px rgba(32, 240, 160, 0.18);
}

.genesis-year {
  display: inline-block;
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #34d5ff;
  margin-bottom: 6px;
}

.genesis-step h3 {
  margin: 0 0 8px;
  font-size: 19px;
  color: #fff;
}

.genesis-step p {
  margin: 0;
  color: #b6bfd9;
  font-size: 15px;
  line-height: 1.65;
  max-width: 860px;
}

/* ---- People cards ---- */
.person-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.person-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #8c5cff 0%, #34d5ff 100%);
}

.person-card h3 { margin: 0; font-size: 19px; }

.person-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34d5ff;
}

.person-bio {
  color: #b6bfd9;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.person-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #8fb6ff;
  text-decoration: none;
}

.person-link:hover { text-decoration: underline; }

/* ---- AI Division org grid ---- */
.division-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.division-area h3 {
  margin: 0;
  font-size: 16.5px;
}

.division-area .division-count {
  font-size: 12px;
  font-weight: 700;
  color: #20f0a0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agent-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(140, 92, 255, 0.35);
  background: rgba(140, 92, 255, 0.10);
  font-size: 13px;
  color: #d7dcf0;
  white-space: nowrap;
}

.agent-chip b { color: #fff; font-weight: 700; }

@media (max-width: 760px) {
  .genesis-timeline { padding-left: 26px; }
  .genesis-step::before { left: -23px; }
}

/* ---- AI Division Pillars Grid ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0 48px;
}

@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 240, 160, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(32, 240, 160, 0.05);
}

.pillar-card .pillar-icon {
  font-size: 28px;
  margin: 0 0 16px 0; /* Align left and override styles.css centering */
}

.pillar-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.pillar-card p {
  margin: 0;
  font-size: 14px;
  color: #b6bfd9;
  line-height: 1.55;
}

