/* ============================================
   BECOME A MEMBER PAGE
   ============================================ */

/* ---- MEMBERSHIP BENEFITS HERO ---- */

.member-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.member-hero h1 {
  margin: 0.8rem 0 1.2rem;
}

.member-hero-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.member-hero-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.member-hero-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.member-hero-item-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--magenta-deep);
}

.member-hero-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
  margin-bottom: 0.15rem;
}

.member-hero-item p {
  font-size: 0.88rem;
  margin: 0;
}

.member-hero-visual {
  display: flex;
  justify-content: center;
}

/* ---- ID CARD PREVIEW MOCK ---- */

.id-card-mock {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1.58/1;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-3deg);
}

.id-card-mock::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  bottom: -60px;
  right: -50px;
}

.id-card-mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.id-card-mock-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.id-card-mock-badge {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.id-card-mock-body {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.id-card-mock-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.id-card-mock-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.id-card-mock-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.15rem;
}

.id-card-mock-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-label);
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .member-hero {
    grid-template-columns: 1fr;
  }
  .member-hero-visual {
    order: -1;
  }
}

/* ---- SIGNUP FLOW CONTAINER ---- */

.flow-section {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.flow-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.flow-step-dot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flow-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(27,45,107,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate-light);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.flow-step-circle.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--white);
}

.flow-step-circle.done {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}

.flow-step-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-light);
  white-space: nowrap;
}

.flow-step-label.active {
  color: var(--navy);
}

.flow-step-connector {
  width: 28px;
  height: 2px;
  background: rgba(27,45,107,0.15);
}

@media (max-width: 700px) {
  .flow-step-label {
    display: none;
  }
  .flow-step-connector {
    width: 16px;
  }
}

/* ---- FLOW CARD ---- */

.flow-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.flow-panel {
  display: none;
}

.flow-panel.active {
  display: block;
  animation: panelFade 0.4s ease;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.flow-panel-head {
  text-align: center;
  margin-bottom: var(--space-md);
}

.flow-panel-head h3 {
  margin-bottom: 0.4rem;
}

.flow-panel-head p {
  font-size: 0.92rem;
}

.flow-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.flow-nav-row .btn-ghost {
  padding-left: 0.5rem;
}

/* ---- PHOTO UPLOAD MOCK ---- */

.photo-upload-mock {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: var(--space-sm);
}

.photo-upload-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 2px dashed rgba(107,45,140,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.photo-upload-circle:hover {
  border-color: var(--magenta);
}

.photo-upload-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--slate);
}

.photo-upload-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.photo-upload-text span {
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* ---- AREA OF INTEREST PILLS (reuse checkbox-pill pattern, single select) ---- */

.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}

.radio-pill {
  position: relative;
}

.radio-pill span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(27,45,107,0.16);
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--cream);
  transition: all 0.2s ease;
  pointer-events: none;
}

.radio-pill input:checked + span {
  background: var(--gradient-brand);
  color: var(--white);
  border-color: transparent;
}

.radio-pill input:focus-visible + span {
  outline: 2.5px solid var(--magenta);
  outline-offset: 2px;
}

/* ---- VERIFY EMAIL PANEL ---- */

.verify-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
}

.verify-icon-wrap svg {
  width: 38px;
  height: 38px;
  stroke: var(--magenta-deep);
}

.verify-email-display {
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-label);
  font-size: 0.92rem;
  color: var(--navy);
  margin: 1rem 0 1.4rem;
}

.verify-resend {
  text-align: center;
  font-size: 0.88rem;
  margin-top: 1rem;
}

.verify-resend button {
  color: var(--magenta-deep);
  font-weight: 600;
  text-decoration: underline;
}

/* ---- PENDING APPROVAL PANEL ---- */

.pending-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
}

.pending-icon-wrap svg {
  width: 38px;
  height: 38px;
  stroke: var(--magenta-deep);
}

.pending-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.3rem 0;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.pending-timeline-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pending-timeline-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pending-timeline-dot.done {
  background: var(--navy);
}

.pending-timeline-dot.pending {
  background: var(--cream-deep);
  border: 2px solid rgba(107,45,140,0.3);
}

.pending-timeline-dot svg {
  width: 13px;
  height: 13px;
  stroke: var(--white);
}

.pending-timeline-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.pending-timeline-text span {
  font-size: 0.78rem;
  color: var(--slate-light);
}

.pending-note {
  background: var(--gradient-brand-soft);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--navy);
  text-align: center;
}
