/*
  About.html page-specific styles. Colors here are copied verbatim from
  the original inline styles rather than mapped onto the shared tokens in
  tokens.css, since several of them (#c3ccd6, #dfe7ee, #9aa6b2) are close
  to but not identical to the shared --ink2/--ink3 scale — using the exact
  original value avoids a subtle, easy-to-miss color shift.
*/

.about-hero {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 16, .5), rgba(8, 11, 16, .9)), url('../../about/hero-bg.jpeg') center/cover;
}

.about-hero__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 32px 84px;
}

.about-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-hero__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 900px;
}

.about-hero__body {
  font-size: 18px;
  line-height: 1.6;
  color: #c3ccd6;
  max-width: 680px;
  margin: 22px 0 0;
}

.about-values {
  background: var(--bg2);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.about-section__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 32px;
}

.about-section__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 26px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 16px;
}

.about-value-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 30px;
}

.about-value-card__title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.about-value-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #9aa6b2;
  margin: 0;
}

.about-intro {
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.about-intro__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 32px;
}

.about-intro__content {
  max-width: 1176px;
}

.about-intro__lead {
  font-size: 19px;
  line-height: 1.65;
  color: #dfe7ee;
  margin: 0 0 22px;
}

.about-intro__accent {
  color: var(--accent);
  font-weight: 600;
}

.about-intro__body {
  font-size: 16px;
  line-height: 1.7;
  color: #9aa6b2;
  margin: 0;
}

.about-team {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.about-team__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 40px;
  max-width: 680px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 16px;
}

.about-team-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-team-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 0 0 4px rgba(0, 173, 239, .12), 0 14px 34px rgba(0, 0, 0, .4);
  background-size: cover;
  background-position: center 20%;
}

.about-team-card__initials {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #38c6ff, #0077b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-ink);
  box-shadow: 0 0 0 4px rgba(0, 173, 239, .12), 0 14px 34px rgba(0, 0, 0, .4);
  margin-bottom: 18px;
}

.about-team-card__name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.about-team-card__role {
  font-size: 13.5px;
  color: var(--ink3);
  margin-top: 6px;
  line-height: 1.4;
}
