/* ── Company page ── */

.co-section {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.co-section--alt {
  background: rgba(255, 255, 255, 0.02);
}

.co-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.co-inner .eyebrow {
  margin-bottom: 1.75rem;
}

.co-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.co-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-weight: 300;
}

.co-team {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2.5rem;
}

.co-team-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.co-team-photo {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.co-team-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.co-team-role {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
}

.co-team-linkedin {
  display: inline-flex;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.co-team-linkedin:hover {
  opacity: 1;
}

.co-team-linkedin img {
  height: 18px;
  width: auto;
}

.co-investors {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.co-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.co-contact-label {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.co-contact-value {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.co-contact-link {
  text-decoration: none;
  transition: color 0.15s;
}

.co-contact-link:hover {
  color: #4ade80;
}

.co-cta-section {
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.co-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  text-align: center;
}

.co-cta-heading {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.co-cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.co-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.co-cta-address {
  font-family: 'Geist Mono', monospace;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .co-inner {
    padding: 4rem 1.25rem;
  }

  .co-team {
    grid-template-columns: 1fr 1fr;
  }

  .co-cta-inner {
    padding: 4rem 1.25rem;
  }

  .co-cta-actions {
    flex-direction: column;
  }
}
