/* === ABOUT PAGE === */
.about-page {
  padding-top: 80px;
}

/* Page intro */
.about-intro {
  padding: 80px 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.about-intro .section-label { margin-bottom: 20px; }
.about-intro h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 24px;
}
.about-intro .intro-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

/* Mission section */
.mission {
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}
.mission-label { margin-bottom: 16px; }
.mission h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--fg);
}
.mission-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.mission-body p:last-child { margin-bottom: 0; }

/* Quote block */
.quote-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 28px 32px;
  margin-top: 28px;
}
.quote-block p {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px !important;
}
.quote-attr {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}
.quote-attr strong {
  color: var(--fg);
  font-weight: 600;
}

/* Story section */
.story {
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.story-header { margin-bottom: 56px; }
.story-header .section-label { margin-bottom: 16px; }
.story-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.story-card {
  background: var(--bg-surface);
  padding: 40px 36px;
  transition: background 0.2s;
}
.story-card:hover { background: var(--bg-card); }
.story-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.story-card-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 16px;
}
.story-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}
.story-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Values section */
.values {
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.values-header { margin-bottom: 56px; }
.values-header .section-label { margin-bottom: 16px; }
.values-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.value-card {
  background: var(--bg-surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.value-card:hover { background: var(--bg-card); }
.value-icon { color: var(--accent); margin-bottom: 18px; }
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Team section */
.team {
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.team-header { margin-bottom: 56px; }
.team-header .section-label { margin-bottom: 16px; }
.team-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
}
.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 560px;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(10,191,156,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--bg);
  letter-spacing: -0.03em;
}
.team-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* CTA section */
.about-cta {
  background: linear-gradient(160deg, #070E0A 0%, #07090E 100%);
  padding: 80px;
}
.about-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-cta .section-label { margin-bottom: 20px; }
.about-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 560px;
}
.about-cta p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 300;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #07090E;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--fg-muted); color: var(--fg); }

/* Responsive */
@media (max-width: 900px) {
  .about-intro { padding: 60px 40px 48px; }
  .mission { padding: 60px 40px; grid-template-columns: 1fr; gap: 40px; }
  .story { padding: 60px 40px; }
  .story-grid { grid-template-columns: 1fr; }
  .values { padding: 60px 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team { padding: 60px 40px; }
  .about-cta { padding: 60px 40px; }
}

@media (max-width: 600px) {
  .about-intro { padding: 48px 24px 40px; }
  .about-intro h1 { font-size: 36px; }
  .mission { padding: 48px 24px; }
  .story { padding: 48px 24px; }
  .values { padding: 48px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .team { padding: 48px 24px; }
  .team-card { grid-template-columns: 1fr; gap: 20px; }
  .about-cta { padding: 48px 24px; }
  .about-cta h2 { font-size: 30px; }
  .about-cta-actions { flex-direction: column; }
}