/* ===== ZIVOX — Meet Our Founders Page CSS ===== */
/* Matches existing design system: Dark Blue + Black + Neon Glow Glassmorphism */

/* ===== Founders Hero ===== */
.founders-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.founders-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.founders-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
  top: 50px; right: -80px;
  animation-delay: 2s;
}

.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.10), transparent 70%);
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.founders-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.founders-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.founders-hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-green);
  animation: pulse 2s infinite;
}

.founders-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.founders-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.founders-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.fh-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.fh-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.fh-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== Mission Strip ===== */
.founders-mission-strip {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.mission-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mission-strip-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.mission-strip-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
  min-width: 200px;
}

/* ===== Founder Section ===== */
.founder-section {
  padding: 80px 0;
  position: relative;
}

/* ===== Premium Founder Card ===== */
.founder-card-premium {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all var(--t-slow);
  box-shadow: var(--shadow-lg);
}

.founder-card-premium:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
}

/* Accent top border line */
.founder-accent-line {
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0; left: 0; right: 0;
}

.accent-blue {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
}

.accent-purple {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-blue));
}

/* Decorative background mesh */
.founder-card-premium::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 70%);
  pointer-events: none;
}

.founder-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
}

.founder-layout-reverse {
  grid-template-columns: 1fr 360px;
}

/* ===== Photo Column ===== */
.founder-photo-col {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: linear-gradient(180deg, rgba(15, 20, 36, 0.6) 0%, transparent 100%);
  border-right: 1px solid var(--border);
  position: relative;
}

.founder-layout-reverse .founder-photo-col {
  border-right: none;
  border-left: 1px solid var(--border);
}

.founder-photo-wrapper {
  position: relative;
  width: 260px;
}

.founder-photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

.glow-blue {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), transparent 70%);
}

.glow-purple {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.founder-photo-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.2);
  width: 100%;
  aspect-ratio: 4/5;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card-premium:hover .founder-photo {
  transform: scale(1.04);
}

/* Placeholder for Ganesh */
.frame-placeholder {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.2);
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  text-align: center;
  padding: 32px 20px;
}

.placeholder-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.placeholder-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.placeholder-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: inline-block;
}

.founder-photo-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.badge-blue {
  background: var(--gradient-main);
  color: white;
}

.badge-purple {
  background: var(--gradient-purple);
  color: white;
}

/* Quick Facts */
.founder-quick-facts {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facts-purple {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.04);
}

.quick-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quick-fact > i {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.facts-purple .quick-fact > i {
  background: var(--gradient-purple);
}

.qf-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qf-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ===== Content Column ===== */
.founder-content-col {
  padding: 48px 48px 48px 44px;
  position: relative;
}

.founder-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: 36px;
  right: 44px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -3px;
  pointer-events: none;
  user-select: none;
}

.founder-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.role-purple {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--accent-purple);
}

.founder-name {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-bio {
  margin-bottom: 24px;
}

.founder-bio p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* Expertise Tags */
.founder-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.expertise-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-blue);
  transition: all var(--t);
}

.expertise-tag:hover {
  background: rgba(59, 130, 246, 0.20);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-1px);
}

.expertise-tag i {
  font-size: 0.75rem;
}

.tag-purple {
  background: rgba(139, 92, 246, 0.10);
  border-color: rgba(139, 92, 246, 0.25);
  color: var(--accent-purple);
}

.tag-purple:hover {
  background: rgba(139, 92, 246, 0.20);
  border-color: rgba(139, 92, 246, 0.5);
}

/* Founder Quote */
.founder-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-left: 3px solid var(--accent-blue);
  border-radius: var(--radius);
  padding: 20px 20px 20px 24px;
  margin-bottom: 28px;
}

.quote-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
  border-color: rgba(139, 92, 246, 0.2);
  border-left-color: var(--accent-purple);
}

.quote-icon {
  position: absolute;
  top: -14px;
  left: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  box-shadow: var(--shadow-glow);
}

.quote-icon-purple {
  background: var(--gradient-purple);
}

.founder-quote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 10px;
  font-weight: 500;
}

.quote-attribution {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Founder CTA */
.founder-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-purple {
  background: var(--gradient-purple);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.btn-purple:hover {
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

/* ===== Visual Divider ===== */
.founders-divider {
  padding: 0 0 20px;
}

.founders-divider .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.divider-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.divider-badge i {
  color: var(--accent-blue);
  font-size: 0.85rem;
}

/* ===== Values Section ===== */
.founders-values {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow);
  transition: transform var(--t);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon-cyan {
  background: var(--gradient-cyan);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.value-icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.value-icon-purple {
  background: var(--gradient-purple);
  box-shadow: var(--shadow-glow-purple);
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Journey / Timeline ===== */
.founders-journey {
  padding: 80px 0;
  position: relative;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan), var(--accent-green), var(--accent-orange));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}

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

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 20px currentColor;
}

.dot-blue { background: var(--accent-blue); }
.dot-purple { background: var(--accent-purple); }
.dot-cyan { background: var(--accent-cyan); }
.dot-green { background: var(--accent-green); }
.dot-orange { background: var(--accent-orange); }

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all var(--t);
}

.timeline-content:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== CTA Section ===== */
.founders-cta-section {
  padding: 80px 0;
}

.founders-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.founders-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 60%);
  pointer-events: none;
}

.founders-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.founders-cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 16px 0 16px;
}

.founders-cta-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Design ===== */

/* Tablet: 1024px */
@media (max-width: 1100px) {
  .founder-layout {
    grid-template-columns: 300px 1fr;
  }
  .founder-layout-reverse {
    grid-template-columns: 1fr 300px;
  }
  .founder-content-col {
    padding: 40px 36px;
  }
}

/* Tablet: 880px */
@media (max-width: 880px) {
  .founder-layout,
  .founder-layout-reverse {
    grid-template-columns: 1fr;
  }

  .founder-layout-reverse .founder-photo-col {
    order: -1;
    border-left: none;
    border-bottom: 1px solid var(--border);
    border-right: none;
  }

  .founder-photo-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 24px;
  }

  .founder-photo-wrapper {
    width: 220px;
  }

  .founder-content-col {
    padding: 36px 28px;
  }

  .founder-number {
    font-size: 4rem;
    top: 20px;
    right: 20px;
  }

  .founders-cta-card {
    padding: 48px 24px;
  }

  .founders-hero-stats {
    gap: 20px;
  }

  .fh-stat-divider {
    height: 30px;
  }

  .mission-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* Mobile: 640px */
@media (max-width: 640px) {
  .founders-hero {
    padding: 120px 0 60px;
  }

  .founders-hero h1 {
    font-size: 2.2rem;
  }

  .founders-hero-sub {
    font-size: 1rem;
  }

  .founders-hero-stats {
    gap: 16px;
  }

  .fh-stat-num {
    font-size: 2rem;
  }

  .fh-stat-divider {
    height: 24px;
  }

  .founder-name {
    font-size: 1.8rem;
  }

  .founder-bio p {
    font-size: 0.9rem;
  }

  .founder-cta {
    flex-direction: column;
  }

  .founder-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .founder-photo-wrapper {
    width: 190px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-dot {
    left: -27px;
    width: 14px; height: 14px;
  }

  .founders-cta-card {
    padding: 40px 20px;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .divider-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    gap: 6px;
  }

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

/* Very small mobile: 380px */
@media (max-width: 380px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .founders-hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .fh-stat-divider {
    width: 60px;
    height: 1px;
  }
}
