/* ================= ABOUT HERO (VIDEO BG) ================= */

.about-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  margin: 24px;
}

/* Video */
.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay for readability */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Content */
.about-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.about-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .about-content h1 {
    font-size: 44px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .about-hero {
    border-radius: 20px;
    margin: 16px;
  }

  .about-content {
    padding: 96px 20px;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* ================= VISION SECTION ================= */

.vision {
  padding: 140px 24px;
  background: #ffffff;
}

.vision-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: center;
}

/* LEFT */
.vision-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-visual svg {
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* RIGHT */
.vision-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0b0d12;
  margin-bottom: 16px;
}

.vision-content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #5b5af0; /* brand primary */
  max-width: 620px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .vision-container {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .vision-content h2 {
    font-size: 38px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .vision {
    padding: 96px 20px;
  }

  .vision-content h2 {
    font-size: 30px;
  }

  .vision-visual svg {
    max-width: 300px;
  }
}

/* ================= LIQUIDITY STATEMENT ================= */

.liquidity {
  padding: 100px 24px;
  background: #ffffff;
  text-align: center;
}

.liquidity-container {
  max-width: 960px;
  margin: 0 auto;
}

.liquidity-container h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #0b0d12;
  margin-bottom: 24px;
}

.liquidity-container p {
  font-size: 17px;
  line-height: 1.6;
  color: #6b7280;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .liquidity-container h2 {
    font-size: 38px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .liquidity-container h2 {
    font-size: 30px;
  }

  .liquidity-container p {
    font-size: 16px;
  }
}

/* ================= LEADERSHIP ================= */

.leadership {
  padding: 0px 24px;
  background: #ffffff;
}

.leadership-container {
  max-width: 1280px;
  margin: 0 auto;
}

.leadership-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #0b0d12;
}

/* Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px 64px;
}

/* Card */
.leader-card {
  text-align: center;
}

.leader-card img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  background: #f3f4f6;
}

.leader-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0b0d12;
}

.leader-card span {
  font-size: 14px;
  color: #6b7280;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .leadership {
    padding: 0px 20px;
  }

  .leadership-title {
    font-size: 30px;
    margin-bottom: 56px;
  }

  .leadership-grid {
    gap: 15px;
  }

  .leader-card img {
    max-width: 200px;
  }
}

/* ================= AI CTA SECTION ================= */

.ai-cta {
  padding: 50px 24px;
  background: linear-gradient(
    135deg,
    #f28b6b 0%,
    #8b6cf2 50%,
    #5b5af0 100%
  );
}

.ai-cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ai-cta-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.15);
}

/* LEFT */
.ai-cta-left h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0b0d12;
}

.ai-cta-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 40px;
  max-width: 520px;
}

.ai-cta-button {
  display: inline-block;
  background: #5b5af0;
  color: #ffffff;
  padding: 18px 40px;
  text-align: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ai-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(91, 90, 240, 0.4);
}

/* RIGHT */
.ai-cta-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ai-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ai-feature .check {
  font-size: 18px;
  font-weight: 700;
  color: #5b5af0;
  margin-top: 2px;
}

.ai-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0b0d12;
}

.ai-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .ai-cta-card {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .ai-cta {
    padding: 120px 16px;
  }

  .ai-cta-card {
    padding: 48px 24px;
    border-radius: 24px;
  }

  .ai-cta-left h2 {
    font-size: 32px;
  }
}
