/* ============================================================
   Founder Page Styles — NC Wealth Corporation
   ============================================================ */

/* ---- Page Header ---- */
.founder-header {
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.founder-header-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.founder-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4xl);
  align-items: center;
}

.founder-title-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.founder-quick-stats {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.fqs-item {}
.fqs-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  line-height: 1;
}
.fqs-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Founder Hero Avatar */
.founder-hero-avatar {
  flex-shrink: 0;
}

.fha-outer {
  position: relative;
}

.fha-ring {
  position: absolute;
  inset: -12px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  opacity: 0.4;
  animation: pulseRing 4s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.02); }
}

.fha-card {
  width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.fha-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.fha-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #0a0608;
  margin: 0 auto var(--space-md);
}

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

.fha-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fha-divider {
  height: 1px;
  background: var(--border-primary);
  margin: var(--space-md) 0;
}

.fha-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fha-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #6ee7b7;
  font-weight: 500;
}

.fha-badge-exp {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ---- Executive Summary ---- */
.exec-summary {
  background: var(--bg-secondary);
}

.exec-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.exec-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.exec-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.sidebar-card {}

.competency-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.competency-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.comp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  transition: all var(--transition-fast);
}

.domain-tag:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold-light);
}

/* ---- Timeline Section ---- */
.timeline-section {
  background: var(--bg-primary);
}

.dual-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.timeline-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-gold);
}

/* ---- Brokerage Section ---- */
.brokerage-section {
  background: var(--bg-secondary);
}

.broker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.broker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.broker-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.broker-card:hover::before { opacity: 1; }
.broker-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), var(--shadow-gold);
}

.featured-broker {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.06) 0%, var(--bg-card) 100%);
}

.featured-broker::before { opacity: 1; }

.broker-logo-wrap {
  margin-bottom: var(--space-lg);
}

.broker-initial {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: #0a0608;
  letter-spacing: 0.02em;
}

.broker-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 4px 0 var(--space-md);
}

.broker-period {
  display: inline-flex;
}

.perf-tag {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}

.perf-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  line-height: 1;
}

.perf-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ---- Strategic Ventures ---- */
.strategic-section {
  background: var(--bg-primary);
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.venture-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.venture-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), var(--shadow-gold);
}

.venture-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  letter-spacing: -0.04em;
}

.venture-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.venture-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  letter-spacing: 0.03em;
  margin-top: auto;
}

/* CTA reuse from home */
.cta-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-5xl) var(--space-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.cta-orb-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  opacity: 0.15;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  opacity: 0.1;
}

.cta-content { position: relative; z-index: 1; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .founder-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .exec-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .dual-timeline { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .broker-grid { grid-template-columns: 1fr; }
  .venture-grid { grid-template-columns: 1fr; }
  .fha-card { width: 100%; max-width: 280px; }
}

@media (max-width: 768px) {
  .founder-header { min-height: auto; }
  .founder-quick-stats { gap: var(--space-xl); }
  .cta-card { padding: var(--space-3xl) var(--space-xl); }
}
