.investor-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  color: var(--at-text, #e5e7eb);
}

body.investor-plain {
  background: #0b0d12;
}

body.investor-plain .hero-ambient {
  display: none !important;
}

.investor-hero {
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.investor-hero h1 {
  margin: 0 0 .35rem;
  font-size: 1.6rem;
  color: #f8fafc;
}

.investor-hero p {
  margin: 0;
  color: #cbd5f5;
  font-size: .95rem;
  line-height: 1.5rem;
}

.investor-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.investor-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
}

.investor-card h2 {
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  color: #f8fafc;
}

.investor-card p {
  margin: 0 0 .9rem;
  color: #cbd5f5;
  font-size: .9rem;
}

.inv-form {
  display: grid;
  gap: .75rem;
}

.inv-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #94a3b8;
  font-weight: 600;
}

.inv-input,
.inv-textarea {
  width: 100%;
  padding: .6rem .7rem;
  border-radius: 10px;
  border: 1px solid #283548;
  background: #0b1220;
  color: #e2e8f0;
  font-size: .9rem;
}

.inv-textarea {
  min-height: 120px;
  resize: vertical;
}

.inv-btn-primary {
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  color: #ffffff;
  border: 1px solid #6d28d9;
  border-radius: 10px;
  padding: .65rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}

.g-recaptcha { transform-origin: 0 0; }

.inv-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(59,130,246,.35);
}

.inv-btn-secondary {
  background: transparent;
  color: #cbd5f5;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: .65rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.inv-alert {
  border-radius: 10px;
  padding: .65rem .85rem;
  font-size: .88rem;
  margin-bottom: .8rem;
  border: 1px solid transparent;
}

.inv-alert.success {
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.45);
  color: #bbf7d0;
}

.inv-alert.error {
  background: rgba(248,113,113,0.18);
  border-color: rgba(248,113,113,0.45);
  color: #fecaca;
}

@media (max-width: 720px) {
  .investor-page { padding: 1.2rem .9rem 2rem; }
}
