/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES - PyStatR+
   File: scss/pages/about.css
   
   This file owns ALL About page styling including:
   - Hero section (layout, padding, background, visuals)
   - Mobile responsive behavior
   - All page-specific components
   
   NO other file should override these styles.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
  --navbar-height: 70px;
  --pystatr-deep-blue: #0B1120;
  --pystatr-navy: #1E293B;
  --pystatr-cyan: #38BDF8;
  --pystatr-gold: #FACC15;
  --pystatr-deep-black: #0B1120;
  --pystatr-slate: #1E293B;
  --pystatr-grey: #F7F9FC;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pystatr-deep-blue);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--pystatr-cyan);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--pystatr-cyan);
  outline-offset: 2px;
}

/* ==========================================================================
   HERO SECTION - About Page Owns This Completely
   ========================================================================== */

.hero.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  
  /* Navbar compensation - owned by this page */
  padding-top: calc(var(--navbar-height) + 3rem);
  padding-bottom: 4rem;
  
  /* Background */
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 50%, #0B1120 100%);
  color: #ffffff;
}

/* Hero Background Effects */
.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero .hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-hero .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.about-hero .hero-orb-cyan {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
  top: -80px;
  right: 20%;
}

.about-hero .hero-orb-gold {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
  bottom: 15%;
  left: 15%;
}

.about-hero .hero-orb-blue {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
  top: 50%;
  right: 40%;
}

/* Hero Inner Container */
.about-hero .hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

/* Hero Content */
.about-hero .hero-content {
  text-align: left;
}

/* Hero Logo Visual - Clean, Non-Distracting */
.about-hero .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .hero-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero .hero-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.3));
}

.about-hero .hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pystatr-gold);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.about-hero .hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
}

.about-hero .hero-title .accent {
  display: block;
  background: linear-gradient(135deg, #38BDF8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero .hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 420px;
}

/* Hero Actions */
.about-hero .hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-hero .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #FFD700, #FACC15);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.about-hero .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: white;
}

.about-hero .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(56, 189, 248, 0.5);
  color: #38BDF8;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.about-hero .btn-outline:hover {
  border-color: #38BDF8;
  background: rgba(56, 189, 248, 0.1);
  color: #38BDF8;
}

/* Hero Visual */
.about-hero .hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .floating-logo-container {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .logo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.2);
  animation: orbit-spin 20s linear infinite;
}

.about-hero .logo-orbit.orbit-1 {
  width: 100%;
  height: 100%;
  border-style: dashed;
}

.about-hero .logo-orbit.orbit-2 {
  width: 80%;
  height: 80%;
  animation-direction: reverse;
  animation-duration: 15s;
}

.about-hero .logo-orbit.orbit-3 {
  width: 60%;
  height: 60%;
  animation-duration: 25s;
  border-color: rgba(255, 215, 0, 0.2);
}

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

.about-hero .logo-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 70%);
  filter: blur(25px);
  animation: glow-pulse 3s ease-in-out infinite;
}

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

.about-hero .floating-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   HERO MOBILE - About Page Owns This
   ========================================================================== */

@media (max-width: 1024px) {
  .about-hero .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-hero .hero-content {
    text-align: center;
  }
  
  .about-hero .hero-visual {
    display: none;
  }
  
  .about-hero .hero-subtitle {
    margin: 0 auto 2rem;
  }
  
  .about-hero .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero.about-hero {
    padding-top: calc(var(--navbar-height) + 3.5rem);
    padding-bottom: 2rem;
    min-height: auto;
  }
  
  .about-hero .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-hero .hero-content {
    text-align: center;
  }
  
  .about-hero .hero-subtitle {
    max-width: 100%;
  }
  
  .about-hero .hero-visual {
    display: none;
  }
  
  .about-hero .hero-label {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .about-hero .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .about-hero .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .about-hero .hero-actions {
    gap: 0.5rem;
    justify-content: center;
  }
  
  .about-hero + section {
    margin-top: 2rem;
  }
}

/* ==========================================================================
   ABOUT INTRO SECTION
   ========================================================================== */

.about-intro-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.about-intro-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-intro-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0B1120;
  margin: 0 0 1.5rem 0;
}

.about-intro-lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 1.25rem;
}

.about-intro-lead strong,
.about-intro-text strong {
  color: #1E293B;
  font-weight: 600;
}

.about-intro-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .about-intro-section {
    padding: 3rem 1.5rem;
  }
  
  .about-intro-lead {
    font-size: 1.05rem;
  }
  
  .about-intro-text {
    font-size: 1rem;
  }
}

/* ==========================================================================
   MISSION & VISION SECTION
   ========================================================================== */

.about-mission-section {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
}

.about-mission-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label-gold {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pystatr-gold);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.section-title-dark-page {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0B1120;
  margin-top: 0.5rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.mv-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(30px);
}

.mv-card-glow.cyan {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(59, 130, 246, 0.3));
}

.mv-card-glow.gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(217, 119, 6, 0.3));
}

.mv-card:hover .mv-card-glow {
  opacity: 1;
}

.mv-card-inner {
  position: relative;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  text-align: left;
}

.mv-card:hover .mv-card-inner {
  border-color: transparent;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Ensure both Mission and Vision cards have identical styling */
.mission-card .mv-card-inner,
.vision-card .mv-card-inner {
  text-align: left;
}

.mission-card h3,
.vision-card h3 {
  text-align: left;
}

.mission-card .mv-description,
.vision-card .mv-description {
  text-align: left;
}

.mv-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-icon-wrapper.cyan {
  background: linear-gradient(135deg, #38BDF8, #3b82f6);
}

.mv-icon-wrapper.gold {
  background: linear-gradient(135deg, #FFD700, #FACC15);
}

.mv-icon-wrapper svg {
  width: 30px;
  height: 30px;
  color: white;
}

/* Card titles - Mission and Vision use identical styling */
.mv-card h3,
.mv-card-inner h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0B1120;
  margin: 0 0 1rem 0;
  text-align: left;
}

/* Card description text */
.mv-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: left;
}

.mv-list {
  list-style: none;
  padding: 0;
  padding-top: 1.5rem;
  margin: 0;
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Roboto', sans-serif;
  color: #4B5563;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

.mv-list li:last-child {
  margin-bottom: 0;
}

.mv-list .bullet {
  font-weight: bold;
  flex-shrink: 0;
}

.mv-list .bullet.cyan { color: #38BDF8; }
.mv-list .bullet.gold { color: #FFD700; }

.mv-foundation {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.mv-foundation .foundation-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.mv-foundation p {
  font-family: 'Roboto', sans-serif;
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Global Presence Card */
.global-presence-card {
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  text-align: center;
}

.global-presence-card .section-label-gold {
  margin-bottom: 1rem;
}

.global-presence-card > p {
  font-family: 'Roboto', sans-serif;
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.global-presence-card strong {
  color: white;
}

.presence-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
}

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

.presence-stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #38BDF8;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.presence-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.presence-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(56, 189, 248, 0.3);
}

@media (max-width: 767px) {
  .presence-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .presence-stat-divider {
    width: 50px;
    height: 1px;
  }
}

/* ==========================================================================
   MISSION & VISION V2 - Posit-Inspired Stacked Layout
   Full-width rows with Mission and Vision on separate rows
   ========================================================================== */

.about-mission-section-v2 {
  background: #ffffff;
}

/* Statement Row - Base Styles */
.mv-statement-row {
  padding: 5rem 0;
  position: relative;
}

.mv-statement-row.mission-row {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 17, 32, 0.08);
}

.mv-statement-row.vision-row {
  background: #f8fafc;
  border-bottom: 1px solid rgba(11, 17, 32, 0.08);
}

.mv-statement-row.presence-row {
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
  padding: 4rem 0;
}

/* Inner Container */
.mv-statement-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Label Column */
.mv-statement-label {
  position: relative;
  padding-top: 0.5rem;
}

.mv-label-text {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pystatr-cyan);
}

.vision-row .mv-label-text {
  color: var(--pystatr-gold);
}

.mv-label-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--pystatr-cyan), var(--pystatr-cyan));
  margin-top: 1rem;
  border-radius: 2px;
}

.mv-label-line.gold {
  background: linear-gradient(90deg, var(--pystatr-gold), #EAB308);
}

/* Content Column */
.mv-statement-content {
  max-width: 800px;
}

.mv-statement-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  color: #1e293b;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0;
}

.mv-statement-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 2rem 0;
}

/* Mission Pillars */
.mv-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 17, 32, 0.1);
}

.mv-pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mv-pillar-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mv-pillar-icon svg {
  width: 18px;
  height: 18px;
  color: var(--pystatr-cyan);
}

.mv-pillar-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

/* Vision Accent Section */
.mv-vision-accent {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 17, 32, 0.1);
}

.mv-founding-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pystatr-gold), #EAB308);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
}

.mv-badge-year {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0B1120;
  line-height: 1;
}

.mv-badge-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(11, 17, 32, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

.mv-vision-note {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Global Presence Row */
.mv-presence-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.mv-presence-header {
  margin-bottom: 1rem;
}

.presence-row .mv-label-text {
  color: var(--pystatr-gold);
  font-size: 0.85rem;
}

.mv-presence-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: #d1d5db;
  line-height: 1.7;
  margin: 0 0 2.5rem 0;
}

.mv-presence-description strong {
  color: #ffffff;
  font-weight: 600;
}

.mv-presence-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
}

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

.mv-stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pystatr-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mv-stat-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mv-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(56, 189, 248, 0.3);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .mv-statement-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mv-statement-label {
    padding-top: 0;
  }
  
  .mv-label-line {
    margin-top: 0.75rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .mv-statement-row {
    padding: 3rem 0;
  }
  
  .mv-statement-inner {
    padding: 0 1.5rem;
    gap: 1rem;
  }
  
  .mv-statement-title {
    font-size: 1.1rem;
  }
  
  .mv-statement-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .mv-pillars {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mv-vision-accent {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mv-founding-badge {
    align-self: flex-start;
  }
  
  .mv-presence-inner {
    padding: 0 1.5rem;
  }
  
  .mv-presence-description {
    font-size: 1rem;
  }
  
  .mv-presence-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mv-stat-divider {
    width: 50px;
    height: 1px;
  }
  
  .mv-stat-number {
    font-size: 2rem;
  }
}

/* Ensure fade-in works for new section */
.about-mission-section-v2 .fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* ==========================================================================
   WHITE BREAK BETWEEN DARK SECTIONS
   ========================================================================== */

.section-white-break {
  height: 1.5rem;
  background: #ffffff;
  position: relative;
}

@media (max-width: 767px) {
  .section-white-break {
    height: 1rem;
  }
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */

.about-values-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
  position: relative;
  overflow: hidden;
}

.about-values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.values-bg {
  position: absolute;
  inset: 0;
}

.values-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.section-label-dark {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.section-title-gradient {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #38BDF8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.section-subtitle-dark {
  font-family: 'Roboto', sans-serif;
  color: #9CA3AF;
  font-size: 1.125rem;
  margin-top: 1rem;
}

.values-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .values-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .values-grid-4 {
    grid-template-columns: 1fr;
  }
}

.value-card-about {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card-about:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
}

.value-icon-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(59, 130, 246, 0.1));
  border: 2px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.value-card-about:hover .value-icon-ring {
  border-color: #38BDF8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.value-icon {
  font-size: 1.75rem;
}

.value-card-about h4 {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-tagline {
  font-family: 'Poppins', sans-serif;
  color: #38BDF8;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-desc {
  font-family: 'Roboto', sans-serif;
  color: #9CA3AF;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.about-team-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
  position: relative;
  overflow: hidden;
}

.about-team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.team-bg {
  position: absolute;
  inset: 0;
}

.team-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.team-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .team-grid-2col {
    grid-template-columns: 1fr;
  }
}

.team-card-horizontal {
  display: flex;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card-horizontal:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .team-card-horizontal {
    flex-direction: column;
  }
}

.team-photo-side {
  position: relative;
  width: 200px;
  min-width: 200px;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a5f 0%, #0d1b2a 100%);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .team-photo-side {
    width: 100%;
    min-width: 100%;
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .team-photo-side {
    height: 320px;
    min-height: 320px;
    max-height: 400px;
  }
}

.team-photo-side.cyan {
  background: linear-gradient(135deg, #164e63 0%, #0d1b2a 100%);
}

.team-photo-side.amber {
  background: linear-gradient(135deg, #78350f 0%, #0d1b2a 100%);
}

.team-photo-side.violet {
  background: linear-gradient(135deg, #4c1d95 0%, #0d1b2a 100%);
}

.team-photo-side.emerald {
  background: linear-gradient(135deg, #064e3b 0%, #0d1b2a 100%);
}

.team-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

@media (max-width: 767px) {
  .team-photo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 25% !important; /* Show faces - adjusted from top */
  }
  
@media (max-width: 767px) {
  .team-card[data-member="akuien"] .team-photo-img {
    object-position: center 6% !important;
  }
}


  .team-photo-side {
    width: 100% !important;
    height: 320px !important;
    min-height: 320px !important;
    max-height: 400px !important;
  }
}

.team-card-horizontal:hover .team-photo-img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 17, 32, 0.8) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.location-badge,
.award-badge,
.experience-badge,
.student-badge {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  z-index: 3;
  white-space: nowrap;
}

.location-badge {
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.75);
}

.award-badge,
.experience-badge,
.student-badge {
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #FFD700, #FACC15);
  font-weight: 600;
}

.team-info-side {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

@media (max-width: 767px) {
  .team-info-side {
    width: 100%;
    padding: 1.5rem;
  }
}

.team-info-side h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.team-role-h {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-role-h.cyan { color: #38BDF8; }
.team-role-h.amber { color: #FFD700; }
.team-role-h.violet { color: #a78bfa; }
.team-role-h.emerald { color: #34d399; }

.team-bio-h {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-education {
  margin-bottom: 1rem;
}

.edu-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.edu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.edu-items span {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.team-philosophy {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: #38BDF8;
  margin: 0;
}

.team-philosophy.amber { color: #FFD700; }
.team-philosophy.violet { color: #a78bfa; }
.team-philosophy.emerald { color: #34d399; }

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */

.about-timeline-section {
  padding: 6rem 0;
  background: white;
  overflow: hidden;
}

.about-timeline-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
}

.timeline-line-center {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.5), rgba(56, 189, 248, 0.2));
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .timeline-line-center {
    display: block;
  }
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.timeline-item-left,
.timeline-item-right {
  position: relative;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .timeline-item-left {
    text-align: right;
    padding-right: 3rem;
    padding-bottom: 4rem;
  }
  
  .timeline-item-right {
    text-align: left;
    padding-left: 3rem;
    padding-bottom: 4rem;
  }
}

.timeline-dot-top {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .timeline-item-left .timeline-dot-top {
    margin: 0 0 1.5rem auto;
  }
  
  .timeline-item-right .timeline-dot-top {
    margin: 0 auto 1.5rem 0;
  }
}

.timeline-dot-top.cyan {
  background: #38BDF8;
}

.timeline-dot-top.gold {
  background: #FFD700;
}

.timeline-phase {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.timeline-phase.cyan {
  color: #0891b2;
}

.timeline-phase.gold {
  color: #FACC15;
}

.timeline-date {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: #6B7280;
  margin-bottom: 1rem;
}

.timeline-item-left h4,
.timeline-item-right h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.timeline-item-left ul,
.timeline-item-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-item-left li,
.timeline-item-right li {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: #4B5563;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   ETHICS SECTION
   ========================================================================== */

.about-ethics-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
  position: relative;
  overflow: hidden;
}

.about-ethics-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.ethics-bg {
  position: absolute;
  inset: 0;
}

.ethics-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.ethics-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 20px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.ethics-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ethics-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #38BDF8, #3b82f6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ethics-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.ethics-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin: 0.25rem 0 0;
}

.ethics-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.ethics-intro strong {
  color: white;
}

.ethics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .ethics-grid {
    grid-template-columns: 1fr;
  }
}

.ethics-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ethics-check {
  color: #FFD700;
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
}

.ethics-item h4 {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ethics-item p {
  font-family: 'Roboto', sans-serif;
  color: #9CA3AF;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.about-cta-section {
  padding: 8rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.about-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cta-accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #38BDF8);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.cta-content > p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* YouTube CTA - Uses PyStatR+ Gold for brand consistency */
.cta-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FACC15, #EAB308);
  color: #0B1120;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.3);
}

.cta-button-large svg {
  flex-shrink: 0;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.4);
  color: #0B1120;
}

.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 2px solid #38BDF8;
  color: #0891b2;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-cta svg {
  flex-shrink: 0;
}

.btn-outline-cta:hover {
  background: rgba(56, 189, 248, 0.1);
  color: #0891b2;
}

.cta-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: #9CA3AF;
}

/* ==========================================================================
   FADE-IN ANIMATION OVERRIDE
   ========================================================================== */

.about-hero .fade-in,
.about-mission-section .fade-in,
.about-values-section .fade-in,
.about-team-section .fade-in,
.about-timeline-section .fade-in,
.about-ethics-section .fade-in,
.about-cta-section .fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* Tighten spacing for Mission section after separator */
.section-separator-light + section {
  padding-top: 1.25rem;
}

/* Remove excess top margin from first heading in that section */
.section-separator-light + section > :first-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .section-separator-light + section {
    padding-top: 1rem;
  }
}

.about-mission-section {
  padding-top: var(--section-gap-light);
  padding-bottom: calc(var(--section-gap-light) / 2);
}

.about-team-section {
  padding-top: calc(var(--section-gap-dark) / 2);
  padding-bottom: var(--section-gap-dark);
}

/* Tighten spacing between final CTA and footer */
.about-cta-section {
  padding-bottom: 2rem;
}

.about-cta-section + footer {
  margin-top: 0;
}

@media (max-width: 767px) {
  .about-cta-section {
    padding-bottom: 1.25rem;
  }
}

/* Tighten CTA entry spacing */
.about-cta-section {
  padding-top: 3rem;   /* was likely 5–6rem */
}

@media (max-width: 767px) {
  .about-cta-section {
    padding-top: 2rem;
  }
}

.about-cta-section .cta-eyebrow {
  margin-bottom: 0.75rem;
}

.about-cta-section h2 {
  margin-top: 0;
}
