.projects-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(59, 130, 246, 0.09), transparent 34%),
    linear-gradient(180deg, #f9fbfd 0%, #f4f7fb 100%);
}

.projects-section {
  scroll-margin-top: 82px;
}

.projects-eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.projects-intro {
  max-width: 780px;
  margin-bottom: 30px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 220, 233, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(47, 63, 84, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.42);
  box-shadow: 0 14px 32px rgba(47, 63, 84, 0.12);
}

.project-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.project-kind {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #167044;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.project-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a566;
  box-shadow: 0 0 0 3px rgba(34, 165, 102, 0.12);
}

.project-status-pilot {
  background: #fff8e6;
  color: #8a5a00;
}

.project-status-pilot .project-status-dot {
  background: #e2a21b;
  box-shadow: 0 0 0 3px rgba(226, 162, 27, 0.14);
}

.project-status-lab {
  background: #eef4ff;
  color: #2859ad;
}

.project-status-lab .project-status-dot {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.project-card h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 1.45rem;
  line-height: 1.25;
}

.project-card p {
  flex: 1;
  margin: 0 0 24px;
  color: #4b5563;
}

.project-link {
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

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

  .project-card {
    min-height: 0;
    padding: 22px;
  }

  .project-card-top {
    margin-bottom: 18px;
  }
}

@media (max-width: 430px) {
  .project-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

