/* developers.css — OSS developers / contributors landing */

.dev-page {
  padding: 3rem 0 4rem;
}

.dev-hero {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.dev-hero .section-title {
  margin-bottom: 0.75rem;
}

.dev-hero .section-sub {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.dev-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.dev-card {
  background: var(--bg2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dev-card:hover {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.14);
}

.dev-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.dev-card p,
.dev-card li {
  color: var(--sub);
  font-size: 0.92rem;
  line-height: 1.6;
}

.dev-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.dev-card a {
  color: var(--accent);
}

.dev-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.dev-stack span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
}

.dev-section {
  margin-bottom: 2.75rem;
}

.dev-section-header {
  margin-bottom: 1.25rem;
}

.dev-section-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.dev-section-header p {
  color: var(--sub);
  font-size: 0.95rem;
  margin: 0;
  max-width: 42rem;
  line-height: 1.55;
}

.dev-tasks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dev-task {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

@media (max-width: 540px) {
  .dev-task {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.dev-task-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
}

.dev-task-badge--open {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.dev-task-badge--medium {
  background: rgba(234, 179, 8, 0.12);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.35);
}

.dev-task-badge--later {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.dev-task h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.dev-task p {
  margin: 0;
  color: var(--sub);
  font-size: 0.9rem;
  line-height: 1.55;
}

.dev-callout {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(15, 23, 42, 0.4));
  margin-top: 2rem;
}

.dev-callout h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.dev-callout p {
  margin: 0;
  color: var(--sub);
  font-size: 0.92rem;
  line-height: 1.6;
}

.dev-callout a {
  color: var(--accent);
}
