/* ── About / Founder Page ─────────────────────────────────
   Glass-morphism dark mode, follows mission page pattern
   Inherits variables from /styles.css
   ───────────────────────────────────────────────────────── */

/* Page layout */
.ab-page {
  padding-top: 80px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.ab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* ── Shared ───────────────────────────────────────────── */

.ab-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.ab-section-title--center {
  text-align: center;
}

.ab-section-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 56px;
}

/* Glass card base */
.ab-glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ab-glass-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: inset 0 0 20px 2px rgba(212, 168, 83, 0.04),
              0 8px 32px -8px rgba(212, 168, 83, 0.12);
}

/* Narrative text blocks */
.ab-narrative {
  max-width: 720px;
  margin: 0 auto;
}

.ab-narrative--center {
  text-align: center;
}

.ab-narrative p {
  color: var(--text-secondary);
  font-size: clamp(16px, 2vw, 17px);
  line-height: 1.85;
  margin-bottom: 24px;
}

.ab-narrative p:last-child {
  margin-bottom: 0;
}

/* ── Hero ─────────────────────────────────────────────── */
.ab-hero {
  text-align: center;
  padding: 140px 0 80px;
}

.ab-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.ab-hero-photo-wrap {
  margin-bottom: 28px;
}

.ab-hero-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212, 168, 83, 0.35);
  box-shadow: 0 0 40px -8px rgba(212, 168, 83, 0.15);
}

.ab-hero-name {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.ab-hero-role {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.ab-hero-hook {
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--text-secondary);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}

.ab-hero-accent {
  color: var(--accent-gold);
}

/* Gradient CTA button */
.ab-cta-btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(131deg, #d4a853, #c49a3c);
  color: var(--bg-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-cta-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -6px rgba(212, 168, 83, 0.45);
}

.ab-cta-btn-gradient svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.ab-cta-btn-gradient:hover svg {
  transform: translateX(3px);
}

/* ── Origin ──────────────────────────────────────────── */
.ab-origin {
  padding: 80px 0;
}

/* ── Philosophy ──────────────────────────────────────── */
.ab-philosophy {
  padding: 80px 0;
}

/* ── Ventures ────────────────────────────────────────── */
.ab-ventures {
  padding: 80px 0;
}

.ab-ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.ab-venture-card {
  padding: 36px 30px;
  text-decoration: none;
  display: block;
}

.ab-venture-card:hover {
  transform: translateY(-4px);
}

.ab-venture-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ab-venture-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Proof ───────────────────────────────────────────── */
.ab-proof {
  padding: 80px 0;
}

/* ── Difference ──────────────────────────────────────── */
.ab-difference {
  padding: 80px 0;
}

.ab-diff-grid {
  max-width: 720px;
  margin: 40px auto 0;
}

.ab-diff-pillar {
  padding: 28px 0 28px 20px;
  border-left: 3px solid rgba(212, 168, 83, 0.2);
  margin-bottom: 8px;
  transition: border-color 0.3s ease, padding-left 0.3s ease;
}

.ab-diff-pillar:hover {
  border-left-color: var(--accent-gold);
  padding-left: 28px;
}

.ab-diff-pillar-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.ab-diff-pillar-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Bottom CTA ──────────────────────────────────────── */
.ab-cta {
  text-align: center;
  padding: 120px 0 100px;
  position: relative;
}

.ab-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ab-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.ab-cta-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.ab-cta .ab-cta-btn-gradient {
  position: relative;
  z-index: 1;
}

/* ── Animations ───────────────────────────────────────── */
.ab-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.ab-fade-in.ab-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-ventures-grid {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .ab-hero-photo {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 600px) {
  .ab-hero {
    padding: 100px 0 56px;
  }

  .ab-hero-name {
    font-size: clamp(30px, 9vw, 42px);
  }

  .ab-hero-photo {
    width: 130px;
    height: 130px;
  }

  .ab-ventures-grid {
    grid-template-columns: 1fr;
  }

  .ab-origin,
  .ab-philosophy,
  .ab-ventures,
  .ab-proof,
  .ab-difference {
    padding: 56px 0;
  }

  .ab-cta {
    padding: 80px 0 64px;
  }

  .ab-cta-glow {
    width: 300px;
    height: 300px;
  }
}
