.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.value-prop-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.value-prop-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-prop-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-prop-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.join-steps {
  margin-bottom: 56px;
}

.join-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.join-steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 0;
}

.join-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.join-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.join-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.join-step p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-heading--centered {
  text-align: center;
}

.eyebrow--unbounded {
  max-width: none;
}

.join-form-lead {
  margin: 0 auto;
}

.tally-embed-card {
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.tally-embed-card iframe {
  width: 100% !important;
  max-width: 100%;
  height: 520px;
  min-height: 520px;
  border: none;
  display: block;
}

@media (max-width: 960px) {
  .value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .join-steps-grid::before {
    display: none;
  }

  .join-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .join-step__number {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .value-props {
    grid-template-columns: 1fr;
  }

  .tally-embed-card {
    width: 100%;
    margin: 0;
    padding: 12px;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .value-props {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .value-prop-card {
    padding: 20px 16px;
  }

  .value-prop-card h3 {
    font-size: 0.95rem;
  }

  .value-prop-card p {
    font-size: 0.82rem;
  }

  .join-steps {
    margin-bottom: 40px;
  }

  .join-step {
    gap: 12px;
  }

  .join-step__number {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .join-step h3 {
    font-size: 0.88rem;
  }

  .join-step p {
    font-size: 0.78rem;
  }

  .tally-embed-card {
    padding: 16px;
  }

}
