/* ============================================
   INVESTMENTS PAGE
   ============================================ */

/* Intro */
.inv-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.inv-intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-600);
}

/* Product Block */
.inv-product {
  max-width: 1000px;
  margin: 0 auto;
}
.inv-product-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--white-10);
}
.inv-product-light .inv-product-header {
  border-bottom-color: #e5e5e5;
}
.inv-product-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white-70);
  margin-bottom: 16px;
}
.inv-badge-orange {
  background: rgba(255, 120, 0, 0.1);
  border-color: rgba(255, 120, 0, 0.3);
  color: #ff7800;
}
.inv-product-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.inv-product-light .inv-product-header h2 {
  color: var(--black);
}
.inv-product-tagline {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.6;
}
.inv-product-light .inv-product-tagline {
  color: var(--gray-500);
}

/* Sections */
.inv-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white-05);
}
.inv-product-light .inv-section {
  border-bottom-color: #f0f0f0;
}
.inv-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.inv-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.inv-product-light .inv-section h3 {
  color: var(--black);
}
.inv-section > p {
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.inv-product-light .inv-section > p {
  color: var(--gray-600);
}

/* Strategy Grid */
.inv-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.inv-strategy-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.inv-strategy-card.inv-card-light {
  background: #f8f8f8;
  border-color: #e8e8e8;
}
.inv-strategy-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.inv-strategy-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white-70);
}
.inv-icon-orange {
  background: rgba(255, 120, 0, 0.1);
}
.inv-icon-orange svg {
  stroke: #ff7800;
}
.inv-strategy-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.inv-card-light h4 {
  color: var(--black);
}
.inv-strategy-card p {
  font-size: 0.8rem;
  color: var(--white-50);
  line-height: 1.5;
}
.inv-card-light p {
  color: var(--gray-500);
}

/* Sectors */
.inv-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inv-sector-tag {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  color: var(--white-70);
}

/* Fund Grid */
.inv-fund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.inv-fund-item {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.inv-fund-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.inv-fund-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-50);
}

/* Metrics Row */
.inv-metrics-row {
  display: flex;
  gap: 32px;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--white-05);
  border-bottom: 1px solid var(--white-05);
}
.inv-metrics-light {
  border-top-color: #e8e8e8;
  border-bottom-color: #e8e8e8;
}
.inv-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inv-metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.inv-value-dark {
  color: var(--black);
}
.inv-metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-50);
}
.inv-metrics-light .inv-metric-label {
  color: var(--gray-500);
}

/* Disclaimer */
.inv-disclaimer {
  font-size: 0.8rem;
  color: var(--white-30);
  font-style: italic;
  margin-bottom: 16px;
}

/* Table */
.inv-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}
.inv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.inv-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--white-05);
  color: var(--white-50);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--white-10);
}
.inv-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--white-05);
  color: var(--white-90);
}
.inv-table tbody tr:hover {
  background: var(--white-05);
}
.inv-table td:last-child {
  font-weight: 600;
  color: var(--accent);
}

/* Underwriting Grid */
.inv-underwriting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.inv-uw-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.inv-uw-light {
  background: #f8f8f8;
  border-color: #e8e8e8;
}
.inv-uw-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-10);
  position: absolute;
  top: 16px;
  right: 20px;
}
.inv-num-orange {
  color: rgba(255, 120, 0, 0.2);
}
.inv-uw-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.inv-uw-light h4 {
  color: var(--black);
}
.inv-uw-card p {
  font-size: 0.8rem;
  color: var(--white-50);
  line-height: 1.6;
}
.inv-uw-light p {
  color: var(--gray-500);
}

/* Providers */
.inv-providers {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.inv-provider {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.inv-provider-role {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-30);
}
.inv-provider-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

/* Phases */
.inv-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.inv-phase {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e0e0e0;
}
.inv-phase-header {
  margin-bottom: 16px;
}
.inv-phase-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255, 120, 0, 0.1);
  color: #ff7800;
  letter-spacing: 0.5px;
}
.inv-phase-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.inv-phase-metrics div {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.inv-phase-metrics strong {
  color: var(--black);
  font-weight: 700;
}
.inv-phase-cities {
  font-size: 0.75rem;
  color: var(--gray-400);
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

/* ESG Grid */
.inv-esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.inv-esg-card {
  text-align: center;
  padding: 24px 16px;
}
.inv-esg-card svg {
  width: 36px;
  height: 36px;
  stroke: #ff7800;
  margin: 0 auto 12px;
  display: block;
}
.inv-esg-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.inv-esg-card p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Roadmap */
.inv-roadmap {
  margin-top: 20px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid #e0e0e0;
}
.inv-roadmap-item {
  position: relative;
  padding: 12px 0 12px 20px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.inv-roadmap-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7800;
  border: 2px solid #fff;
}
.inv-roadmap-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff7800;
  min-width: 70px;
}
.inv-roadmap-text {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .inv-strategy-grid,
  .inv-fund-grid,
  .inv-phases,
  .inv-esg-grid {
    grid-template-columns: 1fr;
  }
  .inv-underwriting-grid {
    grid-template-columns: 1fr;
  }
  .inv-metrics-row {
    flex-direction: column;
    gap: 20px;
  }
  .inv-providers {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .inv-roadmap-item {
    flex-direction: column;
    gap: 4px;
  }
}
