@import url("./variables.css");

/* ================= BUTTON SIZES ================= */

/* Small (from: padding 6px 12px) */
.btn-sm { padding: 6px 12px !important; }

/* Medium (from: padding 12px 24px) */
.btn-md { padding: 12px 24px !important; }

/* Large (from: padding 16px 24px) */
.btn-lg {
  padding: 16px 24px !important;
}



/* ================= BUTTON BASE ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;

  transition: 0.2s ease;
}
/* ================= PRIMARY BUTTON (CYAN) ================= */
.btn-primary {
  background: var(--cyan-600) !important;
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--cyan-500);
}

.btn-primary:active {
  background: var(--cyan-700);
}

.btn-primary:disabled {
  background: var(--gray-50);
  color: var(--gray-400);
  cursor: not-allowed;
}
/* ================= SECONDARY BUTTON (CYAN) ================= */
.btn-secondary {
  background: var(--cyan-100) !important;
  color: var(--gray-900);
}

.btn-secondary:hover {
  background: var(--cyan-50) !important;
}

.btn-secondary:active {
  background: var(--cyan-700);
}

.btn-secondary:disabled {
  background: var(--gray-50);
  color: var(--gray-400);
  cursor: not-allowed;
}
/* ================= LIGHT GRAY BUTTON ================= */
.btn-light-gray {
  display: inline-flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  color: var(--gray-900);

  border-radius: 8px;
  background: var(--gray-50);

  border: none;

  transition:
    background 0.25s ease,
    transform 0.2s ease;

  cursor: pointer;
}

/* Hover */
.btn-light-gray:hover {
  background: var(--gray-100, #E7E9EC);
}

/* Active */
.btn-light-gray:active {
  background: var(--gray-200, #D9DDE1);
  transform: scale(0.98);
}

/* Disabled */
.btn-light-gray:disabled {
  background: var(--gray-50, #F1F2F3);
  cursor: not-allowed;
  opacity: 0.7;
}
/* ================= OUTLINE BUTTON ================= */
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-900);
  color: var(--primary-900);
}

.btn-outline:hover {
  background: var(--gray-100);
}

/* ================= SMALL ICON BUTTON ================= */
.btn-icon {
  padding: 6px;
  width: 32px;
  height: 32px;
}

/* ================= FOCUS ================= */
.btn:focus {
  outline: 2px solid var(--cyan-500);
  outline-offset: 2px;
}

/* GHOST BUTTON */
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background: var(--color-primary-light);
}


/* FOCUS (ACCESSIBILITY) */
.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@import url("./variables.css");

/* ================= TYPOGRAPHY CLASSES ================= */

/* Display */
.display-1 {
  font-size: var(--display-1);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
}

.display-2 {
  font-size: var(--display-2);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
}

.display-3 {
  font-size: var(--display-3);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
}

/* Headline */
.headline-1 {
  font-size: var(--headline-1) !important;
  font-weight: var(--fw-regular);
}

.headline-2 {
  font-size: var(--headline-2) !important;
  font-weight: var(--fw-regular);
}

.headline-3 {
  font-size: var(--headline-3) !important;
  font-weight: var(--fw-regular);
}

/* Title */
.title-1 {
  font-size: var(--title-1);
  font-weight: var(--fw-regular);
}

.title-2 {
  font-size: var(--title-2) !important ;
  font-weight: var(--fw-regular);
}

/* Body */
.body-1 {
  font-size: var(--body-1);
}

.body-2 {
  font-size: var(--body-2);
}

.body-3 {
  font-size: var(--body-3);
}

.body-4 {
  font-size: var(--body-4);
}

/* Emphasized (SemiBold) */
.semibold {
  font-weight: var(--fw-semibold) !important;
}

/* ================= TOKEN CARD ================= */

.card-token {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 320px;
  padding: 20px 16px;

  border-radius: 8px;
}

/* ================= DARK VARIANT ================= */

.card-token--dark {
  background: var(--gray-900);
  color: var(--gray-50);
}

/* ================= LIGHT VARIANT ================= */

.card-token--light {
  background: var(--gray-100);
  color: var(--gray-900);
}

/* ================= TEXT ================= */

.card-token__label,
.card-token__value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

/* Right side alignment */
.card-token__value {
  text-align: right;
}

/* ===================================================== */
/* ================= COLOR CARD ========================= */
/* ===================================================== */

.color-card {
  display: flex;
  width: 320px;
  padding: 20px 16px;
  justify-content: space-between;
  align-items: center;

  border-radius: 8px;
}

/* Optional border */
.color-card--border {
  border: 1px solid var(--gray-200);
}


/* ================= BACKGROUND VARIANTS ================= */

/* Neutral */
.color-card--gray-900 { background: var(--gray-900); }
.color-card--gray-800 { background: var(--gray-800); }
.color-card--gray-700 { background: var(--gray-700); }
.color-card--gray-600 { background: var(--gray-600); }
.color-card--gray-400 { background: var(--gray-400); }
.color-card--gray-300 { background: var(--gray-300); }
.color-card--gray-200 { background: var(--gray-200); }
.color-card--gray-50  { background: var(--gray-50); }

/* Primary */
.color-card--primary-900 { background: var(--primary-900); }
.color-card--primary-700 { background: var(--primary-700); }
.color-card--primary-600 { background: var(--primary-600); }
.color-card--primary-500 { background: var(--primary-500); }
.color-card--primary-300 { background: var(--primary-300); }
.color-card--primary-100 { background: var(--primary-100); }
.color-card--primary-50  { background: var(--primary-50); }

/* Secondary */
.color-card--secondary-700 { background: var(--secondary-700); }
.color-card--secondary-600 { background: var(--secondary-600); }
.color-card--secondary-500 { background: var(--secondary-500); }
.color-card--secondary-300 { background: var(--secondary-300); }
.color-card--secondary-100 { background: var(--secondary-100); }
.color-card--secondary-50  { background: var(--secondary-50); }

/* Feedback - Green */
.color-card--green-700 { background: var(--green-700); }
.color-card--green-600 { background: var(--green-600); }
.color-card--green-500 { background: var(--green-500); }
.color-card--green-300 { background: var(--green-300); }
.color-card--green-100 { background: var(--green-100); }
.color-card--green-50  { background: var(--green-50); }

/* Feedback - Yellow */
.color-card--yellow-700 { background: var(--yellow-700); }
.color-card--yellow-600 { background: var(--yellow-600); }
.color-card--yellow-500 { background: var(--yellow-500); }
.color-card--yellow-300 { background: var(--yellow-300); }
.color-card--yellow-100 { background: var(--yellow-100); }
.color-card--yellow-50  { background: var(--yellow-50); }

/* Feedback - Cyan */
.color-card--cyan-700 { background: var(--cyan-700); }
.color-card--cyan-600 { background: var(--cyan-600); }
.color-card--cyan-500 { background: var(--cyan-500); }
.color-card--cyan-300 { background: var(--cyan-300); }
.color-card--cyan-100 { background: var(--cyan-100); }
.color-card--cyan-50  { background: var(--cyan-50); }



/* ===================================================== */
/* ================= TEXT UTILITIES ===================== */
/* ===================================================== */

/* Base */
.text-base {
  font-style: normal;
  font-family: var(--font-primary);
}

/* Weights */
.text-regular { font-weight: 400; }
.text-medium  { font-weight: 500; }
.text-bold    { font-weight: 700; }

/* Colors */
.text-dark {
  color: var(--gray-900);
}

.text-light {
  color: var(--gray-50);
}

.text-disabled {
  color: var(--gray-400);
}

/* Alignment */
.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }



/* ===================================================== */
/* ================= CARD TEXT STRUCTURE ================ */
/* ===================================================== */

.color-card__label,
.color-card__value {
  font-size: 16px;
  line-height: 150%;
}

.color-card__value {
  text-align: right;
}


.footer-divider-top {
  border-top: 1px solid var(--Colour-Brand-Primary-500, #375075);
}


/* ================= MARQUEE ANIMATION ================= */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 70s linear infinite;
  gap: 90px;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ================= TEAM CARD ================= */

.team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.4s ease;
}

/* IMAGE HOVER */
.team-card:hover img {
  transform: scale(1.05);
}

/* ================= INFO BOX ================= */

.team-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;

  background: #ffffff;
  border-radius: 14px;

  padding: 16px;

  transition: all 0.35s ease;

  z-index: 2;
}

/* CONTENT */
.team-info-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* TEXT */
.team-text h3 {
  margin: 0;
  color: #111827;
  transition: color 0.3s ease;
}

.team-text p {
  margin-top: 4px;
  color: #6B7280;
  transition: color 0.3s ease;
}

/* ================= LINKEDIN ================= */

.linkedin-icon {
  width: 42px;
  height: 42px;

  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.18);

  color: #ffffff;

  opacity: 0;

  transform: translateY(10px);

  transition: all 0.3s ease;

  flex-shrink: 0;
}

/* ================= HOVER ================= */

.team-card:hover .team-info {
  background: #0054A5;
  transform: translateY(-6px);
}

/* TEXT WHITE */
.team-card:hover .team-text h3,
.team-card:hover .team-text p {
  color: #ffffff;
}

/* SHOW LINKEDIN */
.team-card:hover .linkedin-icon {
  opacity: 1;
  transform: translateY(0);
}

/* LINKEDIN HOVER */
.linkedin-icon:hover {
  background: rgba(255,255,255,0.28);
}

/* ================= SIZES ================= */

.team-card.leader {
  width: 100%;
  max-width: 384px;
  height: 456px;
}

.team-card.employee {
  width: 100%;
  max-width: 288px;
  height: 342px;
}
/* ================= ABOUT INTRO ================= */

.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ================= STATS ================= */

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}

.stat {
  padding-left: 24px;
  border-left: 1px solid var(--gray-200);
}

.stat:first-child {
  border-left: none;
  padding-left: 0;
}

/* ================= INVESTMENT ================= */

.investment {
  padding: 80px 0;
}

.investment-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.investment-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;

  padding: 32px;
  border-radius: 16px;
  background: var(--secondary-50);
}

.investment-icon {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 32px;
  background: #fff;

  font-size: 24px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left h2 {
    font-size: 28px; /* optional scaling */
  }

  .investment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {

  .about-intro,
  .investment {
    padding: 48px 0;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat {
    border-left: none;
    padding-left: 0;

    border-top: 1px solid var(--gray-200);
    padding-top: 16px;
  }

  .stat:first-child {
    border-top: none;
    padding-top: 0;
  }

  .investment-grid {
    grid-template-columns: 1fr;
  }

  .investment-card {
    padding: 24px;
  }

  .investment-icon {
    width: 56px;
    height: 56px;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= INNER HEADER ================= */

.inner-header {
  position: relative;
  padding: 140px 0 180px;
   z-index: 1;

  background: linear-gradient(
    180deg,
    #052453 0%,
    #063A78 25%,
    #00A3E0 60%,
    rgba(255,255,255,0) 100%
  );

  overflow: hidden;
}

/* CONTENT WIDTH CONTROL Header-inner */
.inner-header-content {
  max-width: 900px;
}

/* ================= OVERLAP EFFECT ================= */

.page-overlapping {
  margin-top: -120px;
  position: relative;
  z-index: 2;
}
.page-overlapping-bottom {
  margin-bottom: -120px;
  position: relative;
  z-index: 2;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .inner-header {
    padding: 100px 0 140px;
  }

  .about-intro {
    margin-top: -60px;
  }
}

/* FIX: Remove negative margin on mobile to prevent overlapping hamburger button */
@media (max-width: 1024px) {
  .page-overlapping {
    margin-top: 0 !important;
  }

  .page-overlapping > * {
    pointer-events: auto !important;
  }
}

  .page-overlapping button,
  .page-overlapping a,
  .page-overlapping input {
    pointer-events: auto !important;
  }
}

  /* FIX: Prevent page-overlapping from blocking mobile menu clicks */
  .page-overlapping {
    pointer-events: none !important;
  }

  .page-overlapping > * {
    pointer-events: auto !important;
  }

  .page-overlapping button,
  .page-overlapping a,
  .page-overlapping input {
    pointer-events: auto !important;
  }


/* ================= CONNECT ================= */

.connect-section {
  padding-bottom: 60px;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 24px;
}

.connect-card {
  padding: 32px;
  border-radius: 16px;
  color: white;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* BIG CARD */
.connect-card.large {
  justify-content: space-between;
}

/* ICON */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  color: black;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* LINKS */
.connect-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.connect-link:hover {
  opacity: 0.8;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 12px;
}

.socials span {
  width: 36px;
  height: 36px;
  border: 1px solid white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= MAP ================= */

.map-box {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ================= FAQ ================= */

.faq-section {
  padding: 80px 0;
}

.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  background: white;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  margin-top: 12px;
  display: none;
  color: var(--gray-700);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .connect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .connect-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .connect-card.large {
    grid-column: span 1;
  }

  .map-box iframe {
    height: 300px;
  }
}

/*==podcast details==*/

/* ================= LAYOUT ================= */

.podcast-layout {
  display: grid;
  grid-template-columns: 1fr 392px;
  gap: 40px;
  align-items: start;
}

/* ================= LEFT ================= */

.video-wrapper {
  width: 100%;
  aspect-ratio: 784 / 432;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* TEXT */

.podcast-heading {
  font-size: var(--headline-2);
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 24px;
}

.podcast-text {
  font-size: var(--body-1);
  color: var(--gray-800);
  margin-top: 16px;
  line-height: 1.6;
}

/* ================= RIGHT ================= */

.podcast-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;

  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: #fff;

  position: sticky;
  top: 120px;
}

.sidebar-title {
  font-size: var(--headline-2);
  font-weight: 600;
}

/* LIST */

.takeaways {
  list-style: disc;
   padding-left: 1.5rem;
   margin: 0;
}

.takeaways li {
  font-size: var(--body-1);
  color: var(--gray-800);
  margin-bottom: 10px;
}
/* BLACK BULLETS */
.takeaways li::marker {
  color: var(--gray-800);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .podcast-layout {
    grid-template-columns: 1fr;
  }

  .podcast-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .video-wrapper {
    aspect-ratio: 16 / 9;
  }
}

/*=====research======*/

/* GRID */
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.research-card {
  display: flex;
  flex-direction: column;
  gap: 24px; /* ✅ FIXED */

  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: #fff;
  cursor: pointer;

}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.research-card img {
  width: 100%;
  height: 240px;              /* ✅ correct */
  aspect-ratio: 43/30;        /* ✅ Figma */
  object-fit: cover;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .research-grid {
    grid-template-columns: 1fr;
  }
}

/* MODAL BACKGROUND */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);
  display: none;

  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 999;
}

/* BOX */
.modal-content {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #D5D9DB;

  width: 100%;
  max-width: 1224px;
  padding: 32px;

  display: flex;
  flex-direction: column;   /* 👈 forces title on top */
  gap: 24px;
}
.modal-body {
  display: grid;                 /* 👈 better than flex here */
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-left {
    width: 100%;
  }
}

/* LEFT IMAGE */
.modal-left {
  width: 100%;
}


.modal-left img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* RIGHT */
.modal-right {
  display: flex;
  flex-direction: column;
  height: 100%;                 /* 👈 important */
}
.modal-right p {
  margin-bottom: 20px;
}
.modal-right .btn {
  align-self: flex-start;       /* 👈 keeps it left */
  margin-top: auto;             /* 👈 pushes it down */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }
}

/* ===========MENU=========== */

/* DROPDOWN BASE */
.dropdown-menu {
  position: absolute;
  top: 100%; /* IMPORTANT: avoid gap */
  left: 0;

  width: 192px;
  padding: 12px 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border-radius: 16px;
  background: #ffffff;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  z-index: 100;
}

/* LINKS */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  padding: 10px 16px;

  font-size: 14px;
  color: #111827;

  border-radius: 8px;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
}

/* SHOW ON HOVER */
.group:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .headline-1 {
    white-space: normal !important;
  }
}


