/* ==========================================================================
   ABOUT.CSS
   Styles specific to about.html only.
   Auto-split from the original style.css — no CSS rules were modified.
   Load AFTER common.css
   ========================================================================== */


/* =========================================================================
   11. ABOUT PAGE (about.html)
   ========================================================================= */

.about-hero { padding-block: 58px 6px; text-align: center; }

.about-hero .eyebrow { justify-content: center; }

.about-hero h1 { font-size: clamp(32px, 5vw, 54px); margin-top: 14px; max-width: 780px; margin-inline: auto; }

.about-hero p { max-width: 620px; margin: 18px auto 0; font-size: 17px; color: var(--text-secondary); line-height: 1.7; }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 40px 56px; }

.about-stat {
  text-align: center; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 16px; box-shadow: var(--shadow-sm);
}

.about-stat strong {
  display: block; font-family: var(--font-display); font-size: 34px; font-weight: 700;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.about-stat span { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

.mission { padding-block: 8px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.mission-text h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 16px; }

.mission-text p { color: var(--text-secondary); line-height: 1.75; font-size: 15.5px; }

.mission-text p + p { margin-top: 16px; }

.mission-visual { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }

.mission-visual img { width: 100%; height: 100%; object-fit: cover; }

.values { padding-block: 8px 64px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }

.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease); }

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-card .icon-wrap { width: 46px; height: 46px; border-radius: var(--r-sm); background: rgba(var(--signal-rgb), 0.12); display: grid; place-items: center; color: var(--signal); margin-bottom: 16px; }

.value-card .icon-wrap svg { width: 22px; height: 22px; }

.value-card h3 { font-size: 17px; margin-bottom: 8px; }

.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.team { padding-block: 8px 76px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }

.team-card { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 18px; box-shadow: var(--shadow-sm); }

.team-card .avatar { width: 76px; height: 76px; font-size: 24px; margin: 0 auto 16px; }

.team-card h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 4px; }

.team-card .team-role { display: block; font-size: 12.5px; color: var(--signal); font-weight: 600; margin-bottom: 10px; }

.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 980px) {
  .mission { grid-template-columns: 1fr; gap: 32px; }

  .mission-visual { order: -1; aspect-ratio: 16/9; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .values-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }
}
