/* Investors Page Styles */

.investors-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.investors-hero__content {
  position: relative;
  z-index: 2;
}



.investors-hero__gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}



.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Investment Thesis */
.investment-thesis {
  padding: 80px 0;
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.thesis-content {
  max-width: 600px;
}

.thesis-content .section-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.thesis-text {
  margin-bottom: 30px;
}

.thesis-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.thesis-text p:last-child {
  margin-bottom: 30px;
}

.thesis-media {
  position: relative;
}

.thesis-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Financial Highlights */
.financial-highlights {
  padding: 80px 0;
}

.financials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.financial-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.financial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.financial-card__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c4a6e;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.financial-card__label {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  margin-bottom: 15px;
}

.financial-card__description {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Market Opportunity */
.market-opportunity {
  padding: 80px 0;
  background: #f9fafb;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.market-media {
  position: relative;
}

.market-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.market-content .section-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.market-text {
  margin-bottom: 30px;
}

.market-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.market-opportunities {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.market-opportunities li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.market-opportunities li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 1rem;
}

/* Leadership & Governance */
.leadership-governance {
  padding: 80px 0;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.leadership-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.leadership-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.leadership-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.leadership-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-card__icon {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.leadership-card__content {
  padding: 30px;
}

.leadership-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #1a1a1a;
}

.leadership-card__description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px;
}

.leadership-card__link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.leadership-card__link:hover {
  color: #1e40af;
}

/* Strategic Roadmap */
.strategic-roadmap {
  padding: 80px 0;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.roadmap-item {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.roadmap-item__period {
  font-size: 0.85rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.roadmap-item__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.roadmap-item__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-item__description li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.roadmap-item__description li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

/* Investment Process */
.investment-process {
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.process-step__number {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 20px;
  line-height: 1;
}

.process-step__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px;
}

.process-step__description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.investors-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin: 0 0 20px;
  line-height: 1.3;
}

.cta-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .investors-hero__title {
    font-size: 2.5rem;
  }

  .investors-hero__subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .thesis-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .thesis-content .section-title {
    font-size: 2rem;
  }

  .financials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .market-content .section-title {
    font-size: 2rem;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-timeline {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .investors-hero {
    padding: 80px 0 60px;
  }

  .investors-hero__title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .financial-card__value {
    font-size: 2rem;
  }

  .financials-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step__number {
    font-size: 2.5rem;
  }

  .roadmap-timeline {
    grid-template-columns: 1fr;
  }
}
