/* about.css — About page: intro, values, team grid. */

/* ABOUT */
.about-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 40%, rgba(123, 147, 196, .08) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  padding-top: var(--nav-h);
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp .8s .4s forwards;
}

.about-title em {
  font-style: italic;
  color: var(--accent);
}

.about-intro-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.7;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp .8s .6s forwards;
}

.about-intro-highlight {
  font-size: 22px;
  color: var(--text);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border);
  margin-top: 64px;
}

.mv-card {
  background: var(--bg2);
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  transition: background .3s;
}

.mv-card:last-child {
  border-right: none;
}

.mv-card:hover {
  background: var(--bg3);
}

.mv-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.mv-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}

/* [7] TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.team-photo-wrap {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, box-shadow .3s;
  position: relative;
}

.team-card:hover .team-photo-wrap {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(123, 147, 196, .12);
}

.team-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 6px;
  transition: color .2s;
}

.team-card:hover .team-name {
  color: var(--accent);
}

.team-role {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 6px;
}

.team-bio {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.015em;
  color: var(--text-dim);
  line-height: 1.4;
}

