/* ─── DR.Machines · About Page Styles ─── */

/* ─── ABOUT HERO ─── */
.about-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0 72px;
}
.about-hero h1 {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; color: var(--white); margin-bottom: 20px;
}
.about-hero h1 em { font-style: normal; color: var(--cyan); }
.about-hero p { color: var(--steel); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 48px; }
  .about-hero h1 { font-size: 34px; }
}

/* ─── HISTORY GRID ─── */
.about-history-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-bottom: 64px; align-items: start;
}
@media (max-width: 860px) {
  .about-history-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── TIMELINE ─── */
.timeline { margin-top: 24px; }
.timeline-item {
  display: flex; gap: 20px; padding-bottom: 28px; position: relative;
}
.timeline-item::before {
  content: ''; position: absolute;
  left: 20px; top: 36px; bottom: 0; width: 1px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.tl-dot {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 9px; color: var(--steel); font-weight: 500;
  position: relative; z-index: 1;
}
.tl-content { padding-top: 8px; }
.tl-year { font-size: 12px; color: var(--steel); margin-bottom: 2px; }
.tl-text { font-size: 14px; color: var(--white); font-weight: 500; }

/* ─── QUOTE ─── */
.about-quote {
  background: var(--navy-deep);
  border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  padding: 22px 26px; margin: 0;
  font-family: var(--font-display);
  font-size: 17px; font-style: italic;
  color: var(--white); line-height: 1.55;
}

/* ─── STAT MINI-CARDS ─── */
.about-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 20px;
}
.about-stat-card {
  background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px; text-align: center;
}

/* ─── TEAM GRID ─── */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin: 0 0 8px;
}
.team-card {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: var(--border-hover); }
.team-card-ghost { border-style: dashed; opacity: 0.55; }
.team-card-ghost:hover { border-color: var(--border); }
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cyan-dim); border: 2px solid rgba(0,212,255,0.3);
  color: var(--cyan); font-family: var(--font-display); font-weight: 700;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.team-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
}
.team-role {
  font-size: 12px; color: var(--cyan); font-weight: 600;
  margin-bottom: 12px; letter-spacing: 0.3px;
}
.team-bio { font-size: 13px; color: var(--steel); line-height: 1.6; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ─── BOTTOM CTA ─── */
.about-bottom-cta {
  background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px; text-align: center;
  margin-top: 40px; margin-bottom: 72px;
}
