css
.stockstill-hero {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;

  width: 100% !important;
  min-height: 80vh !important;

  padding: 80px 40px !important;

  background: var(--neutral-900, #0d0d0d) !important;
  color: var(--neutral-100, #f2f2f2) !important;

  text-align: center !important;

  overflow: visible !important;

  /* These two lines are the missing magic */
  position: relative !important;
  display: block !important;
}
/* Title */


/* CTA Button */
.stockstill-hero__cta {
  display: inline-block;
  padding: 16px 36px;

  background: var(--brand-primary, #00c4ff);
  color: #000;

  font-size: 1.1rem;
  font-weight: 600;

  border-radius: 6px;
  text-decoration: none;

  transition: background 0.2s ease, transform 0.2s ease;
}

.stockstill-hero__cta:hover {
  background: #00eaff;
  transform: translateY(-2px);
}
.stockstill-section h2 {
    color: #00ff00;
}
.stockstill-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.stockstill-section p {
    font-size: 20px;
    line-height: 1.6;
}
/* INVESTOR SECTION */
.ss-investors {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.inv-intro {
  max-width: 750px;
  margin: 0 auto 40px auto;
  color: var(--ss-gray-light);
  line-height: 1.55;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.inv-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
}

.inv-card h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--ss-white);
  font-size: 1.1rem;
}

.inv-card p {
  margin-bottom: 16px;
  color: var(--ss-gray-light);
  font-size: 0.95rem;
}

.inv-cta {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .inv-grid {
grid-template-columns: 1fr;
  }

  .inv-card {
    text-align: center;
  }
}