/* ============================================
   14West — AngelList-Inspired Dark Theme
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #0a1a14;
  --bg-secondary: #0f2219;
  --bg-card: #132b21;
  --bg-card-hover: #1a3a2d;
  --text-primary: #f5f5f5;
  --text-secondary: #a3b8b0;
  --text-muted: #6b8a7e;
  --accent: #c4b5fd;
  --accent-light: #ddd6fe;
  --accent-dim: #8b7dcf;
  --border: #1e3a2e;
  --border-light: #2a4d3d;
  --white: #ffffff;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1200px;
  --section-padding: 120px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10, 26, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  padding: 10px 20px;
  background: rgba(196, 181, 253, 0.1);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: var(--radius-sm);
  color: var(--accent) !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: rgba(196, 181, 253, 0.2) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero,
.about-hero {
  padding: 200px 0 var(--section-padding);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(196, 181, 253, 0.08);
  border: 1px solid rgba(196, 181, 253, 0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--accent-light);
  max-width: 900px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--white);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   Section Common Styles
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
}

.section-header {
  max-width: 800px;
}

/* ============================================
   Thesis Section
   ============================================ */
.thesis {
  padding: var(--section-padding) 0;
}

/* ============================================
   Sectors Section
   ============================================ */
.sectors {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sector-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.sector-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(196, 181, 253, 0.08);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 20px;
}

.sector-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

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

/* ============================================
   Approach Section
   ============================================ */
.approach {
  padding: var(--section-padding) 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.approach-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature {
  display: flex;
  gap: 24px;
  align-items: start;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(196, 181, 253, 0.08);
  border: 1px solid rgba(196, 181, 253, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   Contact / CTA Section
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.contact-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-inner .section-description {
  margin: 0 auto 40px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   About Page — Mission
   ============================================ */
.about-hero {
  padding-bottom: 80px;
}

.mission {
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--border);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.mission-stat-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission-stat {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

/* ============================================
   About Page — Philosophy Quote
   ============================================ */
.philosophy {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  border: none;
  padding: 0;
}

/* ============================================
   About Page — Criteria
   ============================================ */
.criteria {
  padding: var(--section-padding) 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.criteria-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.criteria-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.criteria-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(196, 181, 253, 0.08);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: 20px;
}

.criteria-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

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

/* ============================================
   About Page — How We Work Timeline
   ============================================ */
.how-we-work {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.work-timeline {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-item {
  position: relative;
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(196, 181, 253, 0.1);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mission-stat-block {
    flex-direction: row;
  }

  .mission-stat {
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .work-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero,
  .about-hero {
    padding-top: 140px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

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

  .stat-number {
    font-size: 2rem;
  }

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

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

  .work-timeline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-stat-block {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   Accelerator Steps (Homepage)
   ============================================ */
.accelerator-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.accel-step {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.accel-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.accel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(196, 181, 253, 0.1);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.accel-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.accel-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   Founder Section
   ============================================ */
.founder {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.founder-photo-placeholder {
  width: 300px;
  height: 360px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(196, 181, 253, 0.1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
}

.founder-content .section-title {
  margin-bottom: 8px;
}

.founder-role {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.founder-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.founder-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.founder-content a:hover {
  text-decoration-color: var(--accent);
}

/* ============================================
   Blog Preview (Homepage)
   ============================================ */
.blog-preview {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.blog-preview-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: block;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(196, 181, 253, 0.1);
  border: 1px solid rgba(196, 181, 253, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   Manifesto Page
   ============================================ */
.manifesto-hero {
  padding: 200px 0 80px;
  position: relative;
}

.manifesto-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--accent-light);
  text-transform: uppercase;
}

.manifesto-body {
  padding: 0 0 var(--section-padding);
}

.manifesto-content {
  max-width: 800px;
}

.manifesto-lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.manifesto-highlight {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-cta {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-top: 48px;
}

/* ============================================
   CAAG Page
   ============================================ */
.caag-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #0f2219 50%, #1a3a2d 100%);
  overflow: hidden;
}

.caag-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 26, 20, 0.3) 0%,
    rgba(10, 26, 20, 0.6) 100%
  );
  z-index: 1;
}

.caag-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.caag-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 40px;
}

.btn-accent {
  background: var(--accent);
  color: var(--bg-primary);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 100px;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Pillars Section */
.pillars {
  padding: var(--section-padding) 0;
  background: #f5f0ec;
  color: #1a1a1a;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 60px;
}

.pillar {
  max-width: 800px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pillar:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.pillar p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
}

.pillar strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* CAAG Footer CTA */
.caag-footer-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #c5d5c5 0%, #d4e0d4 100%);
  text-align: center;
}

.caag-footer-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent-dim);
  margin-bottom: 12px;
}

.caag-footer-inner a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--accent-dim);
  text-decoration: underline;
  text-decoration-color: rgba(139, 125, 207, 0.4);
  text-underline-offset: 4px;
  transition: text-decoration-color var(--transition);
}

.caag-footer-inner a:hover {
  text-decoration-color: var(--accent-dim);
}

/* ============================================
   Blog Page
   ============================================ */
.blog-section {
  padding: 0 0 var(--section-padding);
}

.blog-post {
  max-width: 800px;
  padding: 60px 0;
}

.blog-post-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-post h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.blog-post-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.blog-post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.3);
  text-underline-offset: 3px;
}

.blog-post-body a:hover {
  text-decoration-color: var(--accent);
}

.blog-post-body strong {
  color: var(--white);
  font-weight: 600;
}

.blog-divider {
  border: none;
  height: 1px;
  background: var(--border);
  max-width: 800px;
}

/* ============================================
   Additional Responsive
   ============================================ */
@media (max-width: 1024px) {
  .accelerator-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .founder-photo-placeholder {
    width: 200px;
    height: 240px;
    font-size: 3rem;
  }

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

@media (max-width: 768px) {
  .accelerator-steps {
    grid-template-columns: 1fr;
  }

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

  .blog-preview-header {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .manifesto-hero {
    padding-top: 140px;
  }

  .caag-hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .caag-hero-content {
    padding-top: 0;
  }

  .founder-photo-placeholder {
    width: 160px;
    height: 200px;
    font-size: 2.5rem;
  }

  .section-header-with-image {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .section-header-img {
    max-width: 100% !important;
  }

  .sectors-banner {
    height: 200px !important;
  }
}

/* ============================================
   Hero with Background Image
   ============================================ */
.hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 26, 20, 0.75) 0%,
    rgba(10, 26, 20, 0.85) 50%,
    rgba(10, 26, 20, 0.95) 100%
  );
  z-index: 1;
}

.hero-overlay-deep {
  background: linear-gradient(
    180deg,
    rgba(10, 26, 20, 0.6) 0%,
    rgba(10, 26, 20, 0.8) 100%
  );
}

.hero-content-z {
  position: relative;
  z-index: 2;
}

.hero-manifesto {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-short {
  padding-bottom: 80px;
}

/* Glass button variant */
.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

/* ============================================
   Stats Parallax
   ============================================ */
.stats-parallax {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border: none;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 20, 0.88);
  z-index: 1;
}

.stats-content-z {
  position: relative;
  z-index: 2;
}

/* ============================================
   Section Header with Image
   ============================================ */
.section-header-with-image {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
}

.section-header-img {
  max-width: 400px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.section-header-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   Sectors Banner
   ============================================ */
.sectors-banner {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
  margin-bottom: 40px;
}

.sectors-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sectors-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 20, 0.7) 0%, rgba(196, 181, 253, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.sectors-banner-overlay span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ============================================
   Founder Image (replaces placeholder)
   ============================================ */
.founder-img {
  width: 300px;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ============================================
   Approach Image
   ============================================ */
.approach-img {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.approach-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   Mission Image
   ============================================ */
.mission-img {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mission-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ============================================
   Blog Card Images
   ============================================ */
.blog-card-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
}

/* ============================================
   Blog Post Images
   ============================================ */
.blog-post-img {
  width: 100%;
  max-width: 800px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.blog-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Manifesto Image Breaks
   ============================================ */
.manifesto-image-break {
  width: 100%;
  max-width: 800px;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px 0;
}

.manifesto-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Contact with Background Image
   ============================================ */
.contact-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-img .contact-inner {
  position: relative;
}

/* ============================================
   CAAG Hero with Real Image BG
   ============================================ */
.caag-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   Full-width Image Break
   ============================================ */
.image-break-full {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.image-break-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Animation Classes
   ============================================ */
.anim-fade-up,
.anim-fade-down,
.anim-fade-left,
.anim-fade-right,
.anim-scale-in {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.anim-fade-up {
  transform: translateY(40px);
}

.anim-fade-down {
  transform: translateY(-40px);
}

.anim-fade-left {
  transform: translateX(40px);
}

.anim-fade-right {
  transform: translateX(-40px);
}

.anim-scale-in {
  transform: scale(0.92);
}

/* When visible */
.anim-fade-up.visible,
.anim-fade-down.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale-in.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Delay classes */
.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }
.anim-delay-3 { transition-delay: 0.45s; }
.anim-delay-4 { transition-delay: 0.6s; }

/* ============================================
   Image Responsive Overrides
   ============================================ */
@media (max-width: 1024px) {
  .founder-img {
    width: 220px;
    height: 280px;
  }

  .section-header-with-image {
    flex-direction: column;
    gap: 32px;
  }

  .section-header-img {
    max-width: 100%;
  }

  .section-header-img img {
    height: 220px;
  }

  .image-break-full {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .founder-img {
    width: 180px;
    height: 220px;
  }

  .blog-card-img {
    height: 150px;
  }

  .blog-post-img {
    height: 200px;
  }

  .manifesto-image-break {
    height: 200px;
    margin: 32px 0;
  }

  .sectors-banner {
    height: 180px;
  }

  .image-break-full {
    height: 200px;
  }

  .stats-parallax {
    background-attachment: scroll;
  }

  .hero-manifesto {
    min-height: auto;
  }
}

/* ============================================
   Video Hero Section
   ============================================ */
.hero-video-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-section .hero-overlay {
  z-index: 1;
}

.hero-video-section .hero-content-z {
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-video-section {
    min-height: 90vh;
  }
}

/* ============================================
   Blog Article Layout (sidebar + content)
   ============================================ */
.blog-article-hero {
  padding: 180px 0 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.blog-back-link:hover {
  color: var(--accent-light);
}

.blog-article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--accent-light);
  max-width: 800px;
  margin-bottom: 16px;
}

.blog-article-body {
  padding: 60px 0 var(--section-padding);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.blog-sidebar {
  position: relative;
}

.blog-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.blog-sidebar-sticky h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.blog-toc a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all var(--transition);
}

.blog-toc a:hover,
.blog-toc a.active {
  color: var(--accent);
  border-left-color: var(--accent);
}

.blog-article-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-top: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.blog-article-content h2:first-child {
  margin-top: 0;
}

.blog-article-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 36px;
  margin-bottom: 14px;
}

.blog-article-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.blog-article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.3);
  text-underline-offset: 3px;
}

.blog-article-content a:hover {
  text-decoration-color: var(--accent);
}

.blog-article-content strong {
  color: var(--white);
  font-weight: 600;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .blog-article-layout {
    grid-template-columns: 200px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .blog-sidebar {
    display: none;
  }

  .blog-article-hero {
    padding: 140px 0 40px;
  }
}

/* ============================================
   Blog Hub Page
   ============================================ */
.blog-hub {
  padding: 0 0 var(--section-padding);
}

.blog-hub-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.blog-hub-sidebar {
  position: relative;
}

.blog-hub-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.blog-hub-sidebar-sticky h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
  margin-top: 24px;
}

.blog-hub-sidebar-sticky h4:first-child {
  margin-top: 0;
}

.blog-hub-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-hub-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.blog-hub-nav a:hover,
.blog-hub-nav a.active {
  color: var(--accent);
  background: rgba(196, 181, 253, 0.06);
}

.blog-hub-content {
  min-width: 0;
}

.blog-country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.blog-country-card {
  display: block;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.blog-country-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.blog-country-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.blog-country-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .blog-hub-layout {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .blog-country-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-hub-layout {
    grid-template-columns: 1fr;
  }

  .blog-hub-sidebar {
    display: none;
  }

  .blog-country-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Form Styles (Apply & Join CAAG)
   ============================================ */
.apply-section {
  padding: 60px 0 var(--section-padding);
}

.apply-form {
  max-width: 700px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.form-group .required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a3b8b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

/* Apply Page Steps */
.apply-next {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.apply-step {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.apply-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(196, 181, 253, 0.1);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.apply-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.apply-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* FAQ Styles */
.apply-faq {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 700px;
  margin-top: 40px;
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

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

.faq-item a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.3);
  text-underline-offset: 3px;
}

/* Join CAAG Form */
.caag-form-section {
  padding: 60px 0 var(--section-padding);
}

.caag-form {
  max-width: 700px;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 32px;
}

.resource-link {
  display: block;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--accent) !important;
  text-decoration: none !important;
  transition: all var(--transition);
}

.resource-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .apply-steps {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

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

/* ============================================
   Join CAAG Page
   ============================================ */
.caag-join-section {
  padding: 60px 0 var(--section-padding);
}

.caag-join-intro {
  max-width: 700px;
  margin-bottom: 40px;
}

.caag-join-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.caag-explainer {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.caag-explainer .section-description {
  max-width: 800px;
  margin-bottom: 32px;
}

.caag-pillars-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.pillar-brief {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.pillar-brief strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.pillar-brief p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .caag-pillars-brief {
    grid-template-columns: 1fr;
  }
}
