/* ═══════════════════════════════════════════
   Board of Directors — bod.css
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.bod-hero {
  background: linear-gradient(135deg, #1A0B30 0%, #3D1A50 50%, #7C3784 100%);
  padding: clamp(70px, 10vw, 120px) clamp(16px, 4vw, 60px) clamp(50px, 8vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bod-hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px;
}

.bod-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
}

.bod-hero h1 span {
  color: #E8C6F0;
}

.bod-hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Intro Strip ── */
.bod-intro-strip {
  background: #F8F5FF;
  padding: 40px clamp(16px, 4vw, 60px);
  text-align: center;
  border-bottom: 3px solid #7C3784;
}

.bod-intro-strip p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 500;
  color: #1A0B30;
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}

.bod-intro-strip strong {
  color: #7C3784;
}

/* ── Board Grid ── */
.bod-section {
  background: #fff;
  padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 60px);
}

.bod-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.bod-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #1A0B30;
  text-align: center;
  margin: 0 0 12px;
}

.bod-section-wave {
  display: block;
  margin: 0 auto 40px;
}

.bod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ── Board Member Card ── */
.bod-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(124, 58, 132, 0.09);
  border: 1px solid #EDE5F5;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 58, 132, 0.15);
}

/* Card top — purple bar with avatar */
.bod-card-top {
  background: linear-gradient(135deg, #1A0B30 0%, #7C3784 100%);
  padding: 32px 28px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.bod-avatar {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.bod-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bod-card-identity {
  flex: 1;
}

.bod-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.25;
}

.bod-card-title {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #E8C6F0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.bod-card-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Card body — bio text */
.bod-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.bod-card-org {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #7C3784;
}

.bod-card-org::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: #7C3784;
  border-radius: 2px;
  flex-shrink: 0;
}

.bod-card-bio {
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #4A4A5A;
  line-height: 1.75;
  margin: 0;
}

.bod-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.bod-tag {
  display: inline-block;
  background: #F0ECF7;
  color: #7C3784;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.bod-card-linkedin {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7C3784;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  padding-top: 8px;
  border-top: 1px solid #F0ECF7;
}

.bod-card-linkedin:hover { color: #5a2863; }

.bod-card-linkedin i { font-size: 16px; }

/* ── Promoters Highlight ── */
.bod-promoters {
  background: #F8F5FF;
  padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 60px);
}

.bod-promoters-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.bod-promoters h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: #1A0B30;
  margin: 0 0 16px;
}

.bod-promoters p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 32px;
}

.bod-promoters-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bod-promoter-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #7C3784;
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  box-shadow: 0 4px 12px rgba(124,58,132,0.1);
}

.bod-promoter-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #7C3784;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.bod-promoter-info {
  display: flex;
  flex-direction: column;
}

.bod-promoter-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1A0B30;
  line-height: 1.2;
}

.bod-promoter-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #7C3784;
}

/* ── IPO CTA ── */
.bod-ipo {
  background: linear-gradient(135deg, #1A0B30 0%, #7C3784 100%);
  padding: clamp(50px, 7vw, 80px) clamp(16px, 4vw, 60px);
  text-align: center;
}

.bod-ipo h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.bod-ipo p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

.bod-ipo-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bod-btn-white {
  display: inline-block;
  background: #fff;
  color: #7C3784;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.bod-btn-white:hover { background: #F0ECF7; color: #5a2863; }

.bod-btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.bod-btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── Governance Section ── */
.bod-governance {
  background: #fff;
  padding: clamp(50px, 6vw, 70px) clamp(16px, 4vw, 60px);
}

.bod-governance-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.bod-governance h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: #1A0B30;
  margin: 0 0 40px;
  text-align: center;
}

.bod-governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bod-gov-card {
  background: #F8F5FF;
  border-radius: 14px;
  padding: 28px 24px;
  border-left: 4px solid #7C3784;
}

.bod-gov-icon {
  width: 44px;
  height: 44px;
  background: #7C3784;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  font-size: 20px;
}

.bod-gov-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A0B30;
  margin: 0 0 10px;
}

.bod-gov-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bod-grid { grid-template-columns: 1fr; }
  .bod-governance-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .bod-card-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bod-governance-grid { grid-template-columns: 1fr; }
  .bod-promoters-list { flex-direction: column; align-items: center; }
  .bod-ipo-btns { flex-direction: column; align-items: center; }
}
