/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════ */

/* ─── Hero — two-column layout ────────────────────────── */
.about-hero {
  background: #ffffff;
  max-width: none;
  margin: 0;
  padding: 5rem var(--section-pad-h);
  border-bottom: 1px solid rgba(42,92,170,0.1);
}

.about-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 4rem;
  align-items: start;
}

/* ── Left column ───────────────────────────────────────── */
.about-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: #e8f0fe;
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.75rem;
}

.about-hero__dot {
  width: 6px;
  height: 6px;
  background: var(--blue-300);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.about-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  font-weight: 800;
  color: #0a1a3a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-hero__accent {
  color: var(--blue-300);
}

.about-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #6b7a99;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.about-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--gradient-brand);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.about-hero__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── Right column: stacked cards ───────────────────────── */
.about-hero__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 100px; /* aligns top of first card with headline */
}

.about-hero__card {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 2rem;
}

.about-hero__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  flex-shrink: 0;
}

.about-hero__card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1a3a;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}

.about-hero__card-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #6b7a99;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero__sub { max-width: 100%; }
  .about-hero__right { padding-top: 0; }
}

@media (max-width: 767px) {
  .about-hero { padding: 3.5rem var(--section-pad-h); }
  .about-hero h1 { font-size: 2.2rem; }
}

/* ─── Values ───────────────────────────────────────────── */
.about-values {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--navy-950);
}

.about-values__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-values__header {
  margin-bottom: 3rem;
}

.about-values__header h2 {
  font-size: var(--text-2xl);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.about-values__header p {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text-secondary);
}

/* 4-column horizontal — spells I O N 8 */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-card {
  padding: 2.5rem 1.75rem;
  background: var(--navy-900);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card:hover { background: var(--navy-800); }
.value-card:hover::after { transform: scaleX(1); }
.value-card:last-child { border-right: none; }

.value-card__letter {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.value-card__name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
}

.value-card__rule {
  width: 40px;
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0.75rem 0;
  flex-shrink: 0;
}

.value-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: none; }
  .value-card:nth-child(1),
  .value-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .value-card:nth-child(3) { border-right: 1px solid var(--border); }
  .value-card:nth-child(3),
  .value-card:nth-child(4) { border-bottom: none; }
}

@media (max-width: 767px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid var(--border); }
  .value-card:last-child { border-bottom: none; }
  .value-card:nth-child(3) { border-right: none; border-bottom: 1px solid var(--border); }
  .value-card__letter { font-size: 4rem; }
}

/* ─── Our Reach ────────────────────────────────────────── */
.about-reach {
  padding: var(--section-pad-v) var(--section-pad-h);
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
  margin: 0;
}

.about-reach__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-reach__graphic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-reach__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-reach__stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about-reach__divider {
  width: 48px;
  height: 1px;
  background: var(--border-bright);
  margin: 0.75rem 0;
}

.about-reach__text .section-label {
  display: block;
  margin-bottom: 1.25rem;
}

.about-reach__text p {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .about-reach__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* CTA section uses global.css .cta-section styles — no page-specific overrides needed */
