/* ===== ABOUT PAGE STYLES ===== */

/* ===== HERO ===== */
.ab-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 0 100px;
}

.ab-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Grid lines */
.ab-grid-line {
  position: absolute;
  opacity: 0.04;
}

.ab-gl-h {
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.ab-gl-v {
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
}

/* Orbs */
.ab-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: ab-orbFloat 12s ease-in-out infinite alternate;
}

.ab-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #e63946, transparent 70%);
  top: -10%;
  right: -5%;
}

.ab-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #e63946, transparent 70%);
  bottom: 10%;
  left: -8%;
  animation-delay: -4s;
}

.ab-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.6), transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -8s;
}

@keyframes ab-orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.15); }
}

/* Particles */
.ab-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: #e63946;
  border-radius: 50%;
  opacity: 0;
  animation: ab-particlePulse var(--dur) ease-in-out var(--del) infinite;
}

@keyframes ab-particlePulse {
  0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
  50% { opacity: 0.6; transform: scale(1) translateY(-20px); }
}

/* Hero content */
.ab-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background: rgba(255,255,255,0.03);
}

.ab-badge-dot {
  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
  animation: ab-dotPulse 2s ease-in-out infinite;
}

@keyframes ab-dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(230,57,70,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(230,57,70,0); }
}

.ab-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.ab-highlight {
  color: #e63946;
  position: relative;
}

.ab-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.ab-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}


/* ===== FOUNDER SECTION ===== */
.ab-founder {
  padding: 100px 0 120px;
  background: var(--bg-primary);
  position: relative;
}

.ab-founder-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

/* Photo frame */
.ab-founder-visual {
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-founder-visual.ab-revealed {
  opacity: 1;
  transform: translateX(0);
}

.ab-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.ab-photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(230,57,70,0.12), transparent 70%);
  z-index: 1;
}

.ab-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(230,57,70,0.05), transparent);
}

.ab-monogram {
  font-size: 5rem;
  font-weight: 900;
  font-family: var(--font-primary);
  color: #e63946;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 60px rgba(230,57,70,0.3);
}

.ab-monogram-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(230,57,70,0.15);
  border-radius: 50%;
  animation: ab-ringRotate 20s linear infinite;
}

.ab-ring-2 {
  width: 220px;
  height: 220px;
  border-style: dashed;
  border-color: rgba(230,57,70,0.08);
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes ab-ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Photo corners */
.ab-photo-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #e63946;
  border-style: solid;
  border-width: 0;
  z-index: 3;
  opacity: 0.5;
}

.ab-pc-tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; border-radius: 4px 0 0 0; }
.ab-pc-tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; border-radius: 0 4px 0 0; }
.ab-pc-bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; border-radius: 0 0 0 4px; }
.ab-pc-br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; border-radius: 0 0 4px 0; }

/* Status indicator */
.ab-founder-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 20px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.ab-status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: ab-dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Founder info */
.ab-founder-info {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.ab-founder-info.ab-revealed {
  opacity: 1;
  transform: translateX(0);
}

.ab-section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.ab-tag-square {
  width: 10px;
  height: 10px;
  background: #e63946;
  border-radius: 3px;
}

.ab-founder-name {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.15;
}

.ab-founder-title {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 500;
}

.ab-founder-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Stats */
.ab-founder-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 32px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

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

.ab-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #e63946;
  font-family: var(--font-primary);
}

.ab-stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e63946;
}

.ab-stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Social links */
.ab-founder-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}

.ab-social-link svg {
  width: 18px;
  height: 18px;
}

.ab-social-link:hover {
  border-color: rgba(230,57,70,0.4);
  background: rgba(230,57,70,0.08);
  color: var(--text-primary);
  transform: translateY(-2px);
}


/* ===== PHILOSOPHY ===== */
.ab-philosophy {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.ab-section-headline {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 60px;
  line-height: 1.2;
}

.ab-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ab-phil-card {
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.ab-phil-card.ab-revealed {
  opacity: 1;
  transform: translateY(0);
}

.ab-phil-card:nth-child(2) { transition-delay: 0.1s; }
.ab-phil-card:nth-child(3) { transition-delay: 0.2s; }
.ab-phil-card:nth-child(4) { transition-delay: 0.3s; }

.ab-phil-card:hover {
  border-color: rgba(230,57,70,0.3);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.ab-phil-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ab-phil-icon svg {
  width: 24px;
  height: 24px;
  stroke: #e63946;
}

.ab-phil-card h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.ab-phil-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ===== EXPERTISE / SKILLS ===== */
.ab-expertise {
  padding: 120px 0;
  background: var(--bg-primary);
}

.ab-skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 60px;
}

.ab-skill-item {
  padding: 0;
}

.ab-skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ab-skill-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ab-skill-pct {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e63946;
  font-family: var(--font-primary);
}

.ab-skill-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.ab-skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e63946, #ff6b7a);
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(230,57,70,0.3);
}

.ab-skill-visible .ab-skill-fill {
  width: var(--skill-progress);
}


/* ===== JOURNEY / TIMELINE ===== */
.ab-journey {
  padding: 120px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.ab-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.ab-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(230,57,70,0.3) 15%, rgba(230,57,70,0.3) 85%, transparent);
  transform: translateX(-50%);
}

.ab-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-timeline-item.ab-tl-visible {
  opacity: 1;
  transform: translateY(0);
}

.ab-timeline-item:last-child {
  margin-bottom: 0;
}

.ab-tl-left {
  flex-direction: row-reverse;
  text-align: right;
}

.ab-tl-left .ab-timeline-card {
  margin-right: 60px;
}

.ab-tl-right .ab-timeline-card {
  margin-left: 60px;
}

.ab-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--bg-secondary);
  border: 3px solid rgba(230,57,70,0.5);
  border-radius: 50%;
  z-index: 2;
  flex-shrink: 0;
}

.ab-dot-active {
  background: #e63946;
  border-color: #e63946;
  box-shadow: 0 0 20px rgba(230,57,70,0.4);
}

.ab-dot-ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(230,57,70,0.3);
  animation: ab-ping 2.5s ease-out infinite;
}

@keyframes ab-ping {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.ab-timeline-card {
  flex: 1;
  max-width: calc(50% - 60px);
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.ab-timeline-card:hover {
  border-color: rgba(230,57,70,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.ab-card-active {
  border-color: rgba(230,57,70,0.3);
  background: rgba(230,57,70,0.05);
}

.ab-timeline-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e63946;
  padding: 4px 12px;
  background: rgba(230,57,70,0.1);
  border-radius: 6px;
  margin-bottom: 14px;
}

.ab-timeline-card h3 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.ab-timeline-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ===== QUOTE ===== */
.ab-quote {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.ab-quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-quote-block.ab-revealed {
  opacity: 1;
  transform: scale(1);
}

.ab-quote-mark {
  font-size: 6rem;
  font-family: Georgia, serif;
  color: #e63946;
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 40px;
}

.ab-quote blockquote {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.ab-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.ab-quote-avatar {
  width: 48px;
  height: 48px;
  background: rgba(230,57,70,0.15);
  border: 2px solid rgba(230,57,70,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #e63946;
}

.ab-quote-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 700;
}

.ab-quote-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ===== CTA ===== */
.ab-cta {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.ab-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.08), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ab-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-cta-content.ab-revealed {
  opacity: 1;
  transform: translateY(0);
}

.ab-cta h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ab-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.ab-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ab-founder-layout {
    grid-template-columns: 320px 1fr;
    gap: 50px;
  }

  .ab-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ab-skills-grid {
    gap: 24px 40px;
  }
}

@media (max-width: 768px) {
  .ab-hero {
    min-height: 55vh;
    padding: 140px 0 80px;
  }

  .ab-founder-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-founder-visual {
    max-width: 320px;
    margin: 0 auto;
  }

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

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

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

  /* Timeline mobile */
  .ab-timeline-line {
    left: 20px;
  }

  .ab-timeline-item {
    flex-direction: row !important;
    text-align: left !important;
  }

  .ab-timeline-dot {
    left: 20px;
  }

  .ab-tl-left .ab-timeline-card,
  .ab-tl-right .ab-timeline-card {
    margin-left: 56px;
    margin-right: 0;
    max-width: 100%;
  }

  .ab-quote-block {
    padding: 40px 24px;
  }

  .ab-quote blockquote {
    font-size: 1.1rem;
  }

  .ab-quote-mark {
    font-size: 4rem;
    top: 10px;
    left: 20px;
  }

  .ab-phil-card {
    padding: 28px;
  }

  .ab-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .ab-hero h1 {
    font-size: 2rem;
  }

  .ab-founder-name {
    font-size: 2rem;
  }

  .ab-founder-stats {
    padding: 20px;
    gap: 16px;
  }

  .ab-stat-number {
    font-size: 1.6rem;
  }

  .ab-founder-socials {
    flex-direction: column;
  }

  .ab-social-link {
    justify-content: center;
  }
}
