.about-hero {
  position: relative;
  background:
    linear-gradient(rgba(10, 15, 24, 0.8), rgba(10, 15, 24, 0.8)),
    url('/assets/images/backgrounds/molecules.webp');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  color: #fff;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.about-hero-text {
  max-width: 800px;
}

.about-hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.about-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.about-hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.about-content {
  padding: 4rem 0 8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.about-card h3 {
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.about-card p {
  line-height: 1.8;
  color: var(--color-text);
}

.disclaimer-box {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-card);
  padding: 2rem;
  margin-top: 3rem;
}

.disclaimer-box h4 {
  color: #ef4444;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer-box p + p {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
