/* ============================================================
   ABOUT.CSS — about.html only
   ============================================================ */

body {
  background: var(--bg-2);
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  min-height: 90vh;
  padding: 8rem 50px 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Flipped background */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/about_background.jpg") center/cover no-repeat;
  transform: scaleX(-1); /* Flip horizontally */
  z-index: 0;
}

/* Keep content above the background */
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.page-hero::after {
  display: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 3px;
  color: var(--accent-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.page-hero-content h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ---- SECTION ---- */
.section-light {
  background: var(--bg-2);
  padding: 60px 50px;
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px 0 22px;
}

/* ---- FOUNDER ---- */
.founder-section {
  background: var(--bg-2);
  padding: 40px 50px;
}
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image */
.founder-img-wrap {
  position: relative;
}
.founder-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(196, 98, 45, 0.1);
}
.founder-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.founder-img-frame:hover img {
  transform: scale(1.03);
}
.founder-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(196, 98, 45, 0.4);
  z-index: 2;
}
.fib-num {
  font-family: "Raleway", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.fib-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* Info */
.founder-info {
  color: var(--text);
}
.founder-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 98, 45, 0.2);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.founder-info h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.founder-role {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 0;
}
.founder-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 22px 0;
}
.founder-info p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Meta items */
.founder-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.founder-meta-item {
  flex: 1 1 180px;
}
.founder-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fmi-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fmi-icon svg {
  stroke: var(--accent);
}
.fmi-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.founder-meta-item strong {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}
.founder-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- WHO WE ARE ---- */
.whoweare-section {
  background: var(--bg-3);
  padding: 90px 50px;
}

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 48px;
  margin-bottom: 70px;
  gap: 20px;
  box-shadow: 0 4px 30px rgba(196, 98, 45, 0.06);
}
.stats-bar-item {
  text-align: center;
  flex: 1;
}
.sbi-num {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  letter-spacing: -1px;
}
.sbi-label {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}
.stats-bar-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* About layout */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-left h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin: 8px 0 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.about-left p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Pillar list */
.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(196, 98, 45, 0.4);
}

/* Vision cards */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vision-card {
  background: var(--bg-2);
  border-radius: 16px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.vision-card:hover::before {
  transform: scaleY(1);
}
.vision-card:hover {
  transform: translateX(6px);
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(196, 98, 45, 0.1);
}
.vision-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 98, 45, 0.12);
}
.vision-icon svg {
  stroke: var(--accent);
}
.vision-card h3 {
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
  margin: 0;
}
.vision-card p {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.65;
  margin: 0;
}

/* ---- WHY INVEST (image bg section) ---- */
.invest-section {
  position: relative;
  padding: 80px 50px;
  background: url("../assets/about 2.jpg") center/cover no-repeat;
}
.invest-section .section-inner {
  position: relative;
  z-index: 1;
}
.invest-section .eyebrow {
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 6px 16px;
  display: inline-block;
  letter-spacing: 3px;
}
.invest-section h2 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  margin: 10px 0 12px;
}
.invest-section .section-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  max-width: 550px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 18px;
}

/* about page: last section is dark image, so footer wave must be dark */
.invest-section + footer::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,70 1080,70 1440,0 L1440,0 L0,0 Z' fill='%231e1208'/%3E%3C/svg%3E")
    no-repeat top center / 100% 100%;
}

.invest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.invest-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.35s;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.invest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.invest-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.invest-card-icon svg {
  stroke: #fff;
}
.invest-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.invest-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.87rem;
  line-height: 1.7;
}
.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 16px 2.5rem;
    min-height: 44vh;
  }
  .page-hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .page-hero-content p { font-size: 0.9rem; }
  .section-light {
    padding: 28px 16px;
  }
  .founder-section {
    padding: 28px 16px;
  }
  .whoweare-section {
    padding: 32px 16px;
  }
  .invest-section {
    padding: 36px 16px;
  }
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-img-frame img {
    height: 320px;
  }
  .founder-img-badge {
    bottom: 12px;
    right: 12px;
    padding: 12px 16px;
  }
  .fib-num {
    font-size: 1.4rem;
  }
  .founder-info h2 {
    font-size: 1.6rem;
  }
  .founder-meta {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }
  .founder-meta-item {
    flex: none;
    width: 100%;
    gap: 10px;
  }
  .founder-divider {
    margin: 14px 0;
  }
  .founder-info p {
    font-size: 0.88rem;
    margin-bottom: 10px;
  }
  .founder-actions {
    flex-direction: column;
    gap: 8px;
  }
  .founder-actions .btn-primary,
  .founder-actions .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
  }
  .stats-bar-item {
    padding: 16px 12px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-bar-item:nth-child(2n) { border-right: none; }
  .stats-bar-divider { display: none; }
  .sbi-num {
    font-size: 1.5rem;
  }
  .whoweare-section .section-inner > h2 {
    font-size: 1.6rem;
  }
  .invest-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .invest-card {
    padding: 20px;
  }
  .vision-card {
    padding: 16px 18px;
  }
  .pillar-list {
    margin-top: 16px;
    gap: 8px;
  }
  .about-left h2 { font-size: 1.6rem; }
  .about-left p { font-size: 0.88rem; }
}
