*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

/*  Utility  */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1320px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/*  Section base  */
.section {
  padding: 80px 0;
}

.section--light {
  background-color: #f8f7f4; 
}

.section--white {
  background-color: #ffffff;
}

.section--dark {
  background-color: #1e2a3a; 
  color: #ffffff;
}

.section--navy {
  background-color: #2c3e57;
  color: #ffffff;
}

/*  Header / Top Bar  */
.site-header {
  background-color: #112437;
  padding: 14px 0;
  position: relative;
  z-index: 100;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header a{
  transition:.3s ease all;
}
.site-header a:hover{
  opacity:.7;
}
.site-header__logo img {
  height: 50px;
  width: auto;
}

.site-header__fund-name {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
}

/*  Hero Section  */
.hero {
  background-color: #1e2a3a;
  padding: 96px 0px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero__content {
  color: #ffffff;
}

.hero__headline {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero__headline strong {
  font-weight: 600;
  color: #88c7b4;
}

.hero__sub {
  max-width: 450px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #b0bec5;
}

/* Hero image grid */
.hero__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__img-wrap {
  position: relative;
  overflow: hidden;
  border:1px solid rgba(255,255,255,.15);
  border-radius: 6px;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hero__images.no-transition .hero__img-wrap{
  transition:transform .3s ease-in-out;
}
.hero__images.no-transition .hero__img-wrap:hover {
  transform: scale(1.03);
}
.hero__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__img-wrap:hover .hero__img-label {
  opacity: 1;
}

/*  Stat Bar  */
.stat-bar {
  background-color: #263a50;
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-bar__grid {
  display: flex;
  justify-content: center;
  gap:100px;
  text-align: center;
}

.stat-bar__item {
  color: #ffffff;
}

.stat-bar__number {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  color: #88c7b4; 
  margin-bottom: 3px;
}

.stat-bar__label {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.criteria {
  padding: 96px 0;
}

.section__title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: #1e2a3a;
  letter-spacing: -0.01em;
}

.section--dark .section__title,
.section--navy .section__title {
  color: #ffffff;
}

.section__subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
  margin-top: -40px;
  margin-bottom: 56px;
}

.criteria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.criteria__card {
  background: #ffffff;
  border: 1px solid #e8e5df;
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow:0px 0px 16px rgba(38,58,80,.1);
}

.criteria__card.no-transition{
  transition-delay: 0s!important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.criteria__card:hover {
  transform: translateY(-8px) scale(1.01)!important;
}

.criteria__icon {
  width: 48px;
  height: 48px;
  background-color: #1e2a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  border:1px solid #112437;
  justify-content: center;
  margin-bottom: 20px;
}

.criteria__icon svg {
  width: 22px;
  height: 22px;
  fill: #88c7b4;
}

.criteria__card-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1e2a3a;
  margin-bottom: 12px;
}

.criteria__card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.criteria__card-note {
  margin-top: 14px;
  font-size: 0.95rem;
  font-style: italic;
  color: #2c3e57;
  font-weight: 500;
  padding-left: 14px;
  border-left: 3px solid #88c7b4;
}

/*  Target Markets  */
.markets {
  padding: 96px 0;
}

.markets__map-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.markets__map-wrap img {
  display: inline-block;
  max-width: 860px;
  width: 100%;
}

.markets__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.markets__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1e2a3a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.markets__col-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #88c7b4;
  border-radius: 50%;
  flex-shrink: 0;
}

.markets__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.markets__tag {
  background-color: #f0eee9;
  color: #2c3e57;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

/*  Team / Connecting  */
.team {
  padding: 96px 0;
}

.team__grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 0px;
}

.team__member {
  text-align: center;
  max-width: 240px;
}

.team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.team__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e2a3a;
  margin-bottom: -6px;
}

.team__email {
  font-size: 0.95rem;
  color: #2c6fbb;
  font-weight: 500;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  transition: color 0.2s ease;
}

.team__email:hover {
  color: #1a4f8b;
  text-decoration: underline;
}

/*  Footer  */
.site-footer {
  background-color: #1e2a3a;
  padding: 48px 0 32px;
  color: #94a3b8;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__press {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer__press a {
  color: #88c7b4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer__press a:hover {
  color: #a7d8c8;
}

.footer__logo img {
  height: 50px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer__logo:hover img {
  opacity: 1;
}

.footer__legal {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 8px;
}

/*  Divider  */
.section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #88c7b4;
  margin: 0 auto 44px;
  border: none;
}

/*  Focus styles (accessibility)  */
a:focus-visible,
.team__email:focus-visible,
.footer__press a:focus-visible {
  outline: 2px solid #88c7b4;
  outline-offset: 3px;
  border-radius: 2px;
}

/*  Scroll Animations  */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left{
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right{
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.is-visible{
  opacity: 1;
  transform: translateX(0);
}
.fade-left.is-visible{
  opacity: 1;
  transform: translateX(0);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for stat bar items */
.stat-bar__item.fade-up:nth-child(1) { transition-delay: 0s; }
.stat-bar__item.fade-up:nth-child(2) { transition-delay: 0.15s; }
.stat-bar__item.fade-up:nth-child(3) { transition-delay: 0.3s; }

/* Staggered animation for criteria cards */
.criteria__card.fade-up:nth-child(1) { transition-delay: 0s; }
.criteria__card.fade-up:nth-child(2) { transition-delay: 0.12s; }
.criteria__card.fade-up:nth-child(3) { transition-delay: 0.24s; }



.stat-bar__item:nth-child(2){
  min-width: 360px!important;
}
.stat-bar__item:nth-child(3){
  min-width: 0px!important;
}
.stat-bar__item:nth-child(1){
  min-width: 190px!important;
}
@media (max-width: 1023px) {
  .stat-bar__item:nth-child(2){
    min-width: 0px!important;
  }
  .hero__images.no-transition .hero__img-wrap:hover{
    transform:none!important;
  }
  .stat-bar__grid{
    flex-direction: column;
  }
  .stat-bar{
    padding:48px 0px;
  }
  .hero__headline{
    max-width: 100%;
  }
  .hero__content.fade-left , .hero__images.fade-right{
    transform:translateY(24px) translateX(0px);
  }
  .hero__content.fade-left.is-visible , .hero__images.fade-right.is-visible{
    transform:translateY(0px) translateX(0px)!important;
    opacity:1;
  }
  .hero__inner {
    display: flex;
    gap:42px;
    flex-direction: column;
  }

  .hero__content {
    text-align: left;
  }

  .hero__images {
    max-width: 100%;
    margin: 0 auto;
  }

  .stat-bar__grid {
    gap:50px;
  }

  .stat-bar__number {
    font-size:60px;
  }
  .stat-bar__label{
    font-size: 22px;
  }

  .criteria__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .markets__columns {
    gap: 32px;
  }

  .team__grid {
    gap: 48px;
  }
  .hero__content {
    width: 100%;
  }
  .hero__headline{
    font-size: 56px;
    max-width: 100%;
    font-size: 5.8vw;
    margin-left: 0px;
  }
  .hero__sub{
    max-width: 100%;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}

/*  Responsive — Mobile (below 768px) */
@media (max-width: 767px) {
  .hero__slider-dots{
    padding-bottom: 5px;
  }

  .hero__images{
    width: calc(100% + 40px);
    margin-left: -20px;
    max-width: calc(100% + 40px);
  }
  .section {
    padding: 56px 0;
  }
  .hero__img-wrap img{
    height: 100%;
  }
  .hero__inner{
    gap:36px;
  }
  .container {
    padding: 0 20px;
  }

  .site-header__fund-name {
    font-size: 17px;
  }

  .site-header__logo img {
    height: 38px;
  }

  .hero {
    padding: 60px 0px;
  }

  .hero__headline {
    max-width: 100%;
    font-size:32px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-align: left;
  }
  .hero__sub{
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    font-size:21px;
  }

  .hero__content {
    text-align: left;
  }


  .hero__images {
    gap: 8px;
  }

  .stat-bar {
    padding:60px 0;
  }

  .stat-bar__grid {
    flex-direction: column;
    gap: 28px;
  }

  .stat-bar__number {
    font-size: 40px;
  }

  .stat-bar__label {
    font-size: 16px;
  }

  .criteria {
    padding: 64px 0;
  }

  .section__title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .criteria__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .criteria__card {
    padding: 28px 24px;
  }

  .markets {
    padding: 64px 0;
  }

  .markets__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .markets__map-wrap img {
    border-radius: 6px;
  }

  .team {
    padding: 64px 0;
  }

  .team__grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .team__photo {
    width: 140px;
    height: 140px;
  }

  .site-footer {
    padding: 40px 0 28px;
  }
}

/* Responsive — Small mobile (below 400px) */
@media (max-width: 399px) {
  .site-header__logo img{
    display: none;
  }
  .hero__images{
    gap:12px;
  }
  .hero__images{
    grid-template-columns: 1fr;
  }
  .hero{
    padding:48px 0px;
  }
  .site-header .container{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .site-header a{
    margin-bottom: 0px;
  }
  .hero__headline {
    font-size: 28px;
  }
  .hero__sub{
    font-size: 18px;
  }
  .container{
    padding-left: 15px;
    padding-right: 15px;
  }

  .stat-bar__number {
    font-size: 36px;
  }

  .hero__img-wrap img {
    height: 100%;
  }
}

/* Hero mobile slider (class added via JS when <767px) */
.hero__images--slider {
  display: block !important;
  overflow: hidden;
  position: relative;
}
.hero__images--slider,
.hero__images--slider * {
  touch-action: pan-y;
  -webkit-user-drag: none;
}
.hero__slider-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
}
.hero__slider-track:active {
  cursor: grabbing;
}
.hero__images--slider .hero__img-wrap {
  flex: 0 0 80%;
  aspect-ratio: 16/9;
}
.hero__images--slider .hero__img-wrap img {
  height: 100%;
  object-fit: cover;
}
.hero__slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 5px;
  padding-top: 18px;
}
.hero__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero__slider-dot--active {
  background: #88c7b4;
  transform: scale(1.25);
}

@media print {
  .site-header, .site-footer { display: none; }
  .section { padding: 24px 0; break-inside: avoid; }
  body { color: #000; }
}
