/* ══════════════════════════════════════
   BRAYMONT — ABOUT PAGE CSS
══════════════════════════════════════ */

/* Force visibility */
.page-about .reveal,
.page-about .reveal-left,
.page-about .reveal-right,
.page-about .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}

/* ── HERO ── */
.about-hero {
  position: relative;
  padding: 10rem 5% 5rem;
  text-align: center;
  overflow: hidden;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.about-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.about-hero-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ── MISSION / VISION / VALUES ── */
.about-mvv {
  padding: 5rem 5%;
  background: rgba(43,53,255,0.015);
}
.about-mvv-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvv-card {
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(43,53,255,0.1);
}
.mvv-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.08);
  border: 1px solid rgba(43,53,255,0.15);
  border-radius: 10px;
  color: var(--blue-primary);
}
.mvv-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
}
.mvv-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── FOUNDER SECTION ── */
.about-founder {
  padding: 7rem 5%;
}
.about-founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: center;
}

/* Two founder cards side by side */
.founders-images-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.founder-img-card {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.founder-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(43,53,255,0.04);
}
.founder-img-card .founder-photo-wrap {
  aspect-ratio: 3/4;
}
.founder-photo-wrap .team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-photo-wrap .team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(43,53,255,0.2);
}
.founder-photo-wrap .team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-img-label {
  padding: 1rem 1.2rem;
}

/* Founder text */
.about-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 0.6rem;
}
.about-section-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Founder badges */
.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.founder-badge {
  padding: 0.45rem 1rem;
  background: rgba(43,53,255,0.06);
  border: 1px solid rgba(43,53,255,0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue-primary);
}

/* ── STATS BAND ── */
.about-stats {
  padding: 3.5rem 5%;
  background: rgba(43,53,255,0.02);
}
.about-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.about-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.about-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── TEAM ── */
.about-team {
  padding: 7rem 5%;
}
.about-team-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-team-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(43,53,255,0.1);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(43,53,255,0.04);
}
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(43,53,255,0.2);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info {
  padding: 1.2rem;
}
.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--blue-primary);
  font-weight: 500;
}

/* ── VALUES GRID ── */
.about-values {
  padding: 7rem 5%;
  background: rgba(43,53,255,0.015);
}
.about-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.value-card {
  padding: 2rem;
  border-radius: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(43,53,255,0.08);
}
.value-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(43,53,255,0.1);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.value-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.6rem;
}
.value-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 7rem 5%;
  overflow: hidden;
  text-align: center;
}
.cta-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(43,53,255,0.07), transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-band-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-band-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media(max-width:1000px) {
  .about-mvv-inner { grid-template-columns: 1fr; }
  .about-founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founders-images-wrap { flex-direction: row; }
  .founder-img-card { flex: 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:600px) {
  .about-hero { padding: 8rem 5% 3rem; }
  .about-stats-inner { flex-wrap: wrap; gap: 2rem; }
  .about-stat-divider { display: none; }
  .about-stat-item { flex: 0 0 45%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}