/* ================================
   INVESTOR HERO
================================ */
.investor-hero {
  background: linear-gradient(160deg, #0b0d12 20%, #0f1220 60%, #101426 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.investor-hero-badge {
  display: inline-block;
  background: rgba(21, 199, 154, 0.12);   /* soft mint glow bg */
  color: #15C79A;                         /* primary green text */
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: .5px;
  margin-bottom: 12px;
  border: 1px solid rgba(21,199,154,0.35); /* subtle frame */
  transition: .25s ease;
}


.investor-hero-title {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.investor-hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 740px;
  line-height: 1.6;
}

.investor-hero-cta .button {
  margin-top: 16px;
}

.investor-hero-cta .cta-primary {
  border-color: #15C79A;   /* mint outline */
  color: #15C79A;
}

.investor-hero-cta .cta-primary:hover {
  background: #15C79A;     /* mint fill */
  color: #00130E;           /* readable dark text */
}

/* ================================
   RIGHT HERO PANEL CARD
================================ */
.investor-hero-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}

.investor-highlight-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
}

.investor-highlight-text {
  color: rgba(255,255,255,0.75);
  font-size: .98rem;
  margin: 6px 0 14px 0;
}

/* list */
.investor-highlight-list {
  padding-left: 18px;
}

.investor-highlight-list li {
  color: rgba(255,255,255,0.82);
  margin-bottom: 6px;
}

/* ================================
   PAGE CONTENT SECTIONS
================================ */
.page-content {
  background: #0a0c14;
}

.investor-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 35px;
}

.content-heading {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 14px;
}

/* BODY TEXT */
.investor-section p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-size: 1rem;
}

/* Lists */
.investor-section ul {
  margin-top: 8px;
}

.investor-section ul li {
  color: rgba(255,255,255,0.82);
  margin-bottom: 6px;
}

/* Divider */
hr {
  border-color: rgba(255,255,255,0.06);
}

/* ================================
   CONTACT CTA
================================ */

.investor-contact-cta{
  margin-top: 10px;
}

.investor-contact-cta .cta-primary {
  border-color: #15C79A;
  color: #15C79A;
}

.investor-contact-cta .cta-primary:hover {
  background: #15C79A;
  border-color: #15C79A;
  color: #00130E;
}

.investor-contact-cta .button.is-light {
  background: #15C79A;                 /* Solid mint by default */
  color: #0c1020;                      /* Dark readable text */
  border: 1px solid #15C79A;
  transition: .3s ease;
}

.investor-contact-cta .button.is-light:hover {
  background: transparent;             /* Turns to outline */
  color: #D9FFF1;                      /* Soft mint text */
  border-color: rgba(21,199,154,.7);
  transform: translateY(-2px);
}

/* ================================
   MOBILE OPTIMIZATION
================================ */
@media(max-width: 1024px) {
  .investor-hero-title {
    font-size: 2.2rem;
  }

  .investor-hero-highlight {
    margin-top: 18px;
  }
}

@media(max-width: 768px) {
  .investor-hero-title {
    font-size: 1.9rem;
  }
}