/* ======================
   Investors Page Styles
   ====================== */

/* Root expectations */
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: rgba(0,0,0,0.8);
}

/* ----------------------
   Hero
---------------------- */
.investors-hero {
  width: 100vw;
  background-color: var(--green-bg);
  color: white;
  padding: 160px 0 120px;
}

.investors-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.investors-eyebrow {
  font-family: "IBM Plex Sans";
  font-size: 18px;
  color: var(--accent-yellow);
  margin-bottom: 24px;
}

.investors-title {
  font-family: "Playfair Display";
  font-size: 72px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 0 24px;
}

.investors-subtitle {
  font-family: "Inter";
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}

/* CTA */
.investors-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  
}

.investors-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  background-color: var(--light-bg);
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}

.investors-button:hover {
  opacity: 0.95;
}


.investors-button--secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

.investors-cta-note {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

/* ----------------------
   Content
---------------------- */
.investors-content {
  width: 100vw;
  padding: 120px 0;
}

.investors-grid {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

/* Sections (formerly “cards”) */
.investors-card {
  max-width: 800px;
}

.investors-card h2 {
  font-family: "Playfair Display";
  font-size: 48px;
  font-weight: 500;
  color: var(--green-bg);
  margin-bottom: 24px;
}

.investors-card p {
  font-family: "Inter";
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0,0,0,0.75);
  margin-bottom: 16px;
}

.investors-card p:last-child {
  margin-bottom: 0;
}

/* Contact section */
.investors-card--contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.investors-contact-box {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 24px;
  background-color: rgba(0,0,0,0.02);
}

.investors-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.investors-contact-row:last-child {
  border-bottom: none;
}

.investors-contact-label {
  font-family: "IBM Plex Sans";
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

.investors-contact-link,
.investors-contact-value {
  font-family: "Inter";
  font-size: 16px;
  color: rgba(0,0,0,0.85);
  text-decoration: none;
}

.investors-contact-link:hover {
  text-decoration: underline;
}

/* ----------------------
   Footer
---------------------- */
.investors-footer {
  width: 100vw;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.investors-footer p {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}

/* ----------------------
   Mobile
---------------------- */
@media (max-width: 768px) {
  .investors-hero {
    padding: 120px 0 80px;
  }

  .investors-title {
    font-size: 44px;
  }

  .investors-subtitle {
    font-size: 18px;
  }

  .investors-grid {
    gap: 64px;
  }

  .investors-card h2 {
    font-size: 32px;
  }
}
