
/* =====================
   HERO
   ===================== */
.page-hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-hero-inner {
  position: relative;
  max-width: 900px;
  padding: 3rem 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero h1 span {
  font-weight: 400;
  opacity: 0.85;
}

.page-hero-sub {
  max-width: 600px;
  opacity: 0.9;
}

.belief-header {
  position: relative;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-hero {
  padding-top: env(safe-area-inset-top);
}

/* =====================================================
   PROGRAMS GRID — DESKTOP LOCK (2 ROWS × 3 COLUMNS)
   ===================================================== */

/* Desktop and large screens */
@media (min-width: 1024px) {
  .belief-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* JOIN PAGE */
.join-section {
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
}

.join-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.surface-card {
  background: rgba(15, 18, 22, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 2rem;
}

.join-form label,
.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  display: block;
}

.join-form label {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.join-form input,
.join-form select,
.join-form textarea {
  margin-top: 0.4rem;
  padding: 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: inherit;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.join-hidden {
  display: none;
}

.impact-list {
  list-style: none;
  padding: 0;
}

.impact-list li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
}

.impact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.join-cta form {
  margin-top: 1.5rem;
}

.btn-primary {
  margin-top: 1rem;
  width: 100%;
}

.btn-secondary {
  margin-top: 0.75rem;
  width: 100%;
  background: transparent;
  border: 1px solid currentColor;
}

/* HERO SPLIT */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.page-hero-visual img {
  max-width: 180px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .join-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-visual {
    margin-top: 1.5rem;
  }

  .form-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero-text {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    align-items: flex-start;
  }
}

