/* =============================================
   SIF PROJECT — Custom CSS
   Bootstrap 5 handles grid / spacing utilities
   ============================================= */

/* ---------- Georama Font ---------- */
@font-face {
  font-family: 'Georama';
  src: url('../assets/fonts/Georama-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Georama';
  src: url('../assets/fonts/Georama-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Georama';
  src: url('../assets/fonts/Georama-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Georama';
  src: url('../assets/fonts/Georama-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body,
button,
input,
select,
textarea {
  font-family: 'Georama', sans-serif;
}
body { background: #000; color: #fff; margin: 0; overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ---------- Container ---------- */
.container-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 576px)  { .container-main { padding: 0 1.5rem; } }
@media (min-width: 768px)  { .container-main { padding: 0 2rem; } }
@media (min-width: 1024px) { .container-main { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container-main { padding: 0; } }

/* ---------- Scrollbar Utilities ---------- */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.thin-scrollbar { scrollbar-width: thin; scrollbar-color: #05A65B #1a1a1a; }
.thin-scrollbar::-webkit-scrollbar { height: 3px; display: block; }
.thin-scrollbar::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 999px; }
.thin-scrollbar::-webkit-scrollbar-thumb { background: #05A65B; border-radius: 999px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 576px)  { .site-header { padding: 0 2rem; } }
@media (min-width: 1024px) { .site-header { padding: 0 5rem; } }

.site-header__inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}

.site-header__logo img { height: 36px; width: 128px; }
@media (min-width: 576px)  { .site-header__logo img { height: 44px; width: 144px; } }
@media (min-width: 1024px) { .site-header__logo img { height: 48px; width: 160px; } }

/* Desktop Nav */
.site-header__nav { display: none; gap: 2.5rem; font-size: 13px; color: #d1d5db; font-weight: 600; }
@media (min-width: 1024px) { .site-header__nav { display: flex; } }

.site-header__nav a {
  position: relative; padding-bottom: 4px; color: inherit; transition: color .2s;
}
.site-header__nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; background: #fff; width: 0; transition: width .3s;
}
.site-header__nav a:hover { color: #fff; }
.site-header__nav a:hover::after { width: 100%; }
.site-header__nav a.active { color: #fff; }
.site-header__nav a.active::after { width: 100%; }

/* Login button */
.btn-login {
  padding: .5rem 1.25rem; border-radius: 9999px;
  font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase;
  border: 1px solid #fff;
  background: radial-gradient(closest-side at 50% 50%, #05A65B 0%, #004B28 100%);
  cursor: pointer; transition: filter .3s;
}
@media (min-width: 576px) { .btn-login { padding: .5rem 2rem; font-size: 12px; } }
.btn-login:hover { filter: brightness(1.1); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  width: 32px; height: 32px; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 30; background: rgba(0,0,0,.5);
}
.mobile-overlay.active { display: block; }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; left: 0; z-index: 40;
  height: 100%; width: 75%; max-width: 300px;
  background: rgba(0,0,0,.95); backdrop-filter: blur(12px);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 1024px) { .mobile-drawer { display: none; } }
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer__links {
  padding: 5rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.mobile-drawer__links a {
  font-size: 15px; font-weight: 600; letter-spacing: .05em;
  color: #d1d5db;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s;
}
.mobile-drawer__links a:hover,
.mobile-drawer__links a.active { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 5rem; padding-left: 1.5rem; padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .hero {
    min-height: 72vh;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 576px)  { .hero { padding-left: 2.5rem; padding-right: 2.5rem; } }
@media (min-width: 1024px) {
  .hero {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); z-index: 1; }

.hero__decor-top {
  position: absolute; top: 5rem; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(59,130,246,.1); border-radius: 50%;
  filter: blur(48px); z-index: 1;
}
.hero__decor-bottom {
  position: absolute; bottom: 0; left: 0;
  width: 24rem; height: 24rem;
  background: rgba(168,85,247,.1); border-radius: 50%;
  filter: blur(48px); z-index: 1;
}

.hero__grid {
  position: relative; z-index: 10;
  width: 100%; max-width: 1240px; margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero__grid {
    max-width: 1120px;
  }
}

.hero__text {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .hero__text { max-width: 58%; }
}

.hero__beam {
  position: absolute; top: -2.5rem; left: -4rem; width: 14rem;
}
@media (min-width: 576px)  { .hero__beam { top: -3.8rem; left: -5rem; width: 18rem; } }
@media (min-width: 1024px) { .hero__beam { top: -3.8rem; left: -7.5rem; width: 22rem; } }

.hero__pre { color: #fff; font-size: 13px; margin: 0 0 .15rem; line-height: 1.5; }
@media (min-width: 576px) { .hero__pre { font-size: 14px; } }

.hero__title { color: #fff; font-size: 22px; font-weight: 700; line-height: 1.35; letter-spacing: 0.01em; margin: 0 0 .35rem; word-spacing: 0.08em; }
@media (min-width: 576px)  { .hero__title { font-size: 26px; } }
@media (min-width: 1024px) { .hero__title { font-size: 30px; } }

.hero__brand {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  margin-right: 0.35em;
}
.hero__brand-m {
  color: #d80028;
  text-transform: lowercase;
  margin-right: 0.12em;
  font-size: 1em;
  line-height: 1;
  vertical-align: baseline;
}

.mpower-brand {
  display: inline;
  white-space: nowrap;
  font-weight: inherit;
}
.mpower-brand__m {
  color: #d80028;
  font-size: 1em;
  font-weight: inherit;
  text-transform: lowercase;
  line-height: inherit;
  vertical-align: baseline;
}
.mpower-brand__power {
  color: #05A65B;
  font-weight: inherit;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero__brand-power {
  color: #2c9846;
  text-transform: uppercase;
}

.hero__desc { color: #fff; font-size: 15px; line-height: 1.5; margin: 0 0 1.25rem; max-width: 520px; }
@media (min-width: 576px)  { .hero__desc { font-size: 16px; } }
@media (min-width: 1024px) { .hero__desc { font-size: 18px; max-width: 100%; } }

.hero__btns { display: flex; gap: 1rem; margin: 1rem 0 0; padding: 0; }
@media (min-width: 1024px) {
  .hero__btns { margin-top: 1.5rem; }
}

.btn-green {
  padding: .75rem 1.5rem; border-radius: 9999px;
  font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase;
  border: 1px solid #fff;
  background: radial-gradient(closest-side at 50% 50%, #05A65B 0%, #004B28 100%);
  cursor: pointer; transition: filter .3s; line-height: 18px;
  display: inline-block;
}
@media (min-width: 576px) { .btn-green { padding: .75rem 2rem; font-size: 12px; } }
.btn-green:hover { filter: brightness(1.1); color: #fff; }

.hero__tagline {
  color: #d1d5db;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 .5rem;
  max-width: 520px;
}
@media (min-width: 576px)  { .hero__tagline { font-size: 14px; } }
@media (min-width: 1024px) { .hero__tagline { font-size: 15px; } }

.btn-green--outline {
  background: transparent;
  border: 1px solid #05A65B;
  color: #05A65B;
}
.btn-green--outline:hover {
  background: rgba(5, 166, 91, 0.15);
  color: #fff;
  border-color: #05A65B;
}

.hero__img-wrap {
  display: none;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__img-wrap {
    display: block;
    right: -2rem;
  }
}
@media (min-width: 1200px) {
  .hero__img-wrap { right: 0; }
}
.hero__bridge {
  width: min(980px, 58vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 80px rgba(120,200,255,.18));
  transform: translate(2rem, -12px);
}

/* =============================================
   ABOUT SIF
   ============================================= */
.about-sif { padding-top: 3.5rem; padding-bottom: 0; background: #000; }
@media (min-width: 768px)  { .about-sif { padding-top: 4rem; } }
@media (min-width: 1024px) { .about-sif { padding-top: 5rem; } }

.section-title {
  font-size: 20px; color: #fff; font-weight: 700;
  text-align: center; line-height: 1.2; margin-bottom: 2.5rem;
}
@media (min-width: 576px)  { .section-title { font-size: 34px; } }
@media (min-width: 768px)  { .section-title { font-size: 40px; margin-bottom: 3rem; } }
@media (min-width: 1024px) { .section-title { font-size: 36px; margin-bottom: 4rem; } }

.about-intro {
  max-width: 896px; margin: 0 auto 1.25rem; padding: 0 1rem;
  color: #d1d5db; font-size: 14px; line-height: 1.6; text-align: center;
}
@media (min-width: 768px) {
  .about-intro { padding: 0; font-size: 16px; margin-bottom: 1.5rem; }
}

.about-list {
  list-style: none; margin: 0 auto 2rem; padding: 0 1rem;
  max-width: 896px;
}
@media (min-width: 768px) { .about-list { padding: 0; margin-bottom: 2.5rem; } }

.about-list li {
  display: flex; gap: .75rem;
  color: #d1d5db; font-size: 14px; line-height: 1.6; margin-bottom: .75rem;
}
@media (min-width: 768px) { .about-list li { font-size: 16px; margin-bottom: 1rem; } }

.sif-label { flex-shrink: 0; color: #05A65B; font-weight: 500; }

/* Constitution of MPower SIF */
.mpower-constitution {
  background: #000;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .mpower-constitution { padding: 3rem 0; }
}

.mpower-constitution__body {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) {
  .mpower-constitution__body { padding: 0; font-size: 16px; }
}

.mpower-constitution__body p {
  margin: 0 0 1.25rem;
}
.mpower-constitution__body p:last-child {
  margin-bottom: 0;
}

.mpower-constitution__link a {
  color: #05A65B;
  font-weight: 500;
  text-decoration: underline;
}
.mpower-constitution__link a:hover {
  color: #07c96d;
}

.sif-solution-section {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .sif-solution-section { margin-top: 2.5rem; }
}

.sif-solution-box {
  max-width: 896px; margin: 0 auto 2.5rem; padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.2); border-radius: 1rem;
  backdrop-filter: blur(12px);
  background: radial-gradient(closest-side at 63% 44%, #5D5D5D 0%, #090909 100%);
}
@media (min-width: 768px) { .sif-solution-box { padding: 1.5rem 2rem; margin-bottom: 3.5rem; } }

.sif-solution-box h3 {
  color: #fff; font-weight: 700; font-size: 16px;
  text-align: center; margin-bottom: 1.25rem; letter-spacing: .05em;
}
@media (min-width: 576px) { .sif-solution-box h3 { font-size: 18px; } }
@media (min-width: 768px) { .sif-solution-box h3 { font-size: 20px; } }

/* Feature Cards Grid */
.feature-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 2.5rem; padding: 0 1rem;
}
@media (min-width: 576px) { .feature-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .feature-cards { grid-template-columns: 1fr 1fr 1fr; padding: 0; margin-top: 4rem; } }

.feature-card {
  border: 1px solid rgba(255,255,255,.2); border-radius: 1rem;
  padding: 1.25rem; backdrop-filter: blur(12px);
  background: radial-gradient(closest-side at 63% 44%, #5D5D5D 0%, #090909 100%);
  transition: all .3s;
}
@media (min-width: 768px) { .feature-card { padding: 1.5rem; } }
.feature-card:hover {
  background: radial-gradient(closest-side at 50% 50%, #05A65B 0%, #002313 100%);
  border-color: rgba(5,166,91,.6);
}
@media (min-width: 576px) and (max-width: 767px) { .feature-card:last-child { grid-column: 1 / -1; } }

.feature-card__head { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: .5rem; }
.feature-card__head img { width: 40px; height: 40px; }
@media (min-width: 768px) { .feature-card__head img { width: 48px; height: 48px; } }

.feature-card__title { color: #fff; font-size: 16px; font-weight: 600; text-align: left; line-height: 1.3; margin: 0; }
@media (min-width: 768px) { .feature-card__title { font-size: 18px; } }

.feature-card__divider { border-top: 1px solid rgba(255,255,255,.1); margin: .75rem -1.25rem; }
@media (min-width: 768px) { .feature-card__divider { margin: .75rem -1.5rem; } }

.feature-card__desc { color: #d1d5db; font-size: 13px; text-align: center; margin: 0; }
@media (min-width: 768px) { .feature-card__desc { font-size: 14px; } }

/* =============================================
   WHY SIF
   ============================================= */
.why-sif { background: #000; width: 100%; display: flex; align-items: center; }

.why-sif__inner { width: 100%; max-width: 100%; margin: 0 auto; padding: 2.5rem 1.5rem; }
@media (min-width: 768px) { .why-sif__inner { width: 75%; } }

.why-sif__mobile { display: block; }
@media (min-width: 768px) { .why-sif__mobile { display: none; } }

.why-sif__desktop { display: none; }
@media (min-width: 768px) {
  .why-sif__desktop {
    display: block;
    position: relative;
    min-height: 420px;
  }
}
@media (min-width: 1024px) {
  .why-sif__desktop { min-height: 480px; }
}

.why-sif__text-static p,
.why-sif__split-text p { color: #d1d5db; font-size: 16px; line-height: 1.6; margin-bottom: 1.5rem; }
.why-sif__text-static p .sif-label,
.why-sif__split-text p .sif-label { color: #05A65B; font-weight: 500; margin-right: .35rem; }
@media (min-width: 768px) { .why-sif__split-text p { font-size: 17px; } }
.why-sif__split-text p:last-child { margin-bottom: 0; }

/* Desktop: centered image phase */
.why-sif__centered {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .55s ease, visibility .55s ease;
}
.why-sif__centered.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.why-sif__centered img {
  width: 260px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity;
}
@media (min-width: 768px)  { .why-sif__centered img { width: 300px; } }
@media (min-width: 1024px) { .why-sif__centered img { width: 430px; } }
.why-sif__centered img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop: split phase — image from left, text from right */
.why-sif__split {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility .5s ease;
}
.why-sif__split.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.why-sif__split-img {
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  opacity: 0;
  transform: translateX(-90px);
  transition:
    opacity 1s cubic-bezier(.22, 1, .36, 1),
    transform 1s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, opacity;
}
.why-sif__split-img.animate {
  opacity: 1;
  transform: translateX(0);
}
.why-sif__split-img img { width: 260px; }
@media (min-width: 768px)  { .why-sif__split-img img { width: 300px; } }
@media (min-width: 1024px) { .why-sif__split-img img { width: 320px; } }

.why-sif__split-text {
  padding-right: 50px;
  opacity: 0;
  transform: translateX(90px);
  transition:
    opacity 1s cubic-bezier(.22, 1, .36, 1) .18s,
    transform 1s cubic-bezier(.22, 1, .36, 1) .18s;
  will-change: transform, opacity;
}
.why-sif__split-text.animate {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-section {
  padding: 2rem 1rem; overflow-x: hidden; overflow-y: visible;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, #05A65B 0%, #002313 80%, #000000 100%);
}
@media (min-width: 768px) { .comparison-section { padding: 2.5rem 1.5rem; } }

.comparison-section__inner { max-width: 960px; margin: 0 auto; position: relative; }

.comparison-glow {
  position: absolute; top: 50%; left: 55%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: #000; filter: blur(90px); opacity: .6;
  pointer-events: none; z-index: 0;
}

.comparison-content {
  position: relative; z-index: 1;
  transform: translateY(32px); opacity: 0;
  transition: transform .8s cubic-bezier(.16,1,.3,1), opacity .8s ease;
}
.comparison-content.visible { transform: translateY(0); opacity: 1; }

.scroll-hint {
  font-size: 11px; color: #4a7058; margin-bottom: 6px;
  text-align: right; display: none;
}
@media (max-width: 767px) { .scroll-hint { display: block; } }

@media (min-width: 768px) {
  .comparison-section .thin-scrollbar {
    overflow-x: hidden !important;
    scrollbar-width: none;
  }
  .comparison-section .thin-scrollbar::-webkit-scrollbar {
    display: none;
    height: 0;
  }
  .comparison-section .data-table-wrap {
    min-width: 0 !important;
  }
}

.comparison-note {
  margin-top: 12px; padding-left: 4px;
  font-size: 11px; color: #4a7058;
  opacity: 0; transition: opacity 1.2s ease .9s;
}
.comparison-note.visible { opacity: 1; }

.comparison-disclaimer {
  margin-top: 0.75rem;
  text-align: left;
  line-height: 1.5;
  color: #fff;
}
@media (min-width: 768px) {
  .comparison-disclaimer { margin-top: 1rem; }
}

.comparison-table-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 0 2rem;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .comparison-table-block {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
}

.comparison-table-title {
  margin: 0 0 0.5rem;
  padding: 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 768px) {
  .comparison-table-title { font-size: 18px; }
}

.comparison-section .comparison-table-title {
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
}
@media (min-width: 576px) {
  .comparison-section .comparison-table-title {
    font-size: 22px;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .comparison-section .comparison-table-title {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }
}

.data-table-wrap {
  border-radius: 18px; border: 1px solid #1e3a28;
  overflow: hidden; backdrop-filter: blur(12px); background: #000000;
}

.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 12px; text-align: center; table-layout: fixed;
}
@media (min-width: 768px) { .data-table { font-size: 13px; } }

.data-table th {
  padding: 14px 10px; font-weight: 700; font-size: 12px;
  letter-spacing: .08em; color: #e0ede6;
  border-bottom: 1px solid #1e3a28;
}
.data-table th:first-child { text-align: left; }
@media (min-width: 768px) { .data-table th { padding: 18px 12px; font-size: 13px; } }

.data-table td {
  padding: 12px 10px; vertical-align: middle;
  line-height: 1.5; color: #8faa99; font-size: 12px;
}
.data-table td:first-child { text-align: left; color: #c8dace; }
@media (min-width: 768px) { .data-table td { padding: 16px 12px; font-size: 13px; } }

.data-table--mf-sif .data-table__col-desc { width: 46%; }
.data-table--mf-sif .data-table__col-value { width: 27%; }

.data-table__sif-head {
  background: #0f3020;
  color: #e0ede6;
}

.data-table__sif-cell {
  background: #0f2f1c;
  color: #d0f0dc;
  font-weight: 500;
}

.comparison-section .data-table--mf-sif .comparison-rating-row__label {
  vertical-align: top;
  line-height: 1.45;
}

.comparison-section .data-table--mf-sif .comparison-rating-row__stack {
  vertical-align: top;
  text-align: center;
  line-height: 1.1;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (min-width: 768px) {
  .comparison-section .data-table--mf-sif .comparison-rating-row__stack {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.data-table--strategies th,
.data-table--strategies td {
  vertical-align: middle;
}
.data-table--strategies td[rowspan] {
  vertical-align: top;
  font-weight: 500;
  color: #e0ede6;
}
.data-table__sub {
  color: #8faa99 !important;
  font-size: 11px;
}
@media (min-width: 768px) {
  .data-table__sub { font-size: 12px; }
}

/* =============================================
   SIF STRATEGIES PAGE
   ============================================= */
.strategies-section {
  background: #000;
  padding: 2.5rem 1rem 3.5rem;
}
@media (min-width: 768px) {
  .strategies-section { padding: 3rem 1.5rem 4rem; }
}

.strategies-section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.strategies-heading {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .strategies-heading { margin-bottom: 2.5rem; }
}

.strategies-heading .about-team__subheading {
  margin-bottom: 0;
}

.strategies-table-block {
  margin-bottom: 2.5rem;
}
.strategies-table-block:last-child {
  margin-bottom: 0;
}
.strategies-table-block .comparison-table-title {
  margin-bottom: 1rem;
  color: #fff;
}

.strategies-section .comparison-table-title {
  color: #fff;
}

.strategies-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
  border-radius: 20px;
  background: rgba(5, 166, 91, 0.06);
  box-shadow:
    0 0 0 1px rgba(5, 166, 91, 0.25),
    0 0 24px rgba(5, 166, 91, 0.08),
    0 4px 24px rgba(0, 0, 0, 0.4);
}

.strategies-section .data-table-wrap {
  border: 1px solid #1e3a28;
  background: linear-gradient(160deg, #0f1f16 0%, #050a08 50%, #0a1410 100%);
  box-shadow: inset 0 1px 0 rgba(5, 166, 91, 0.15);
}

.strategies-section .data-table--strategies th {
  background: #0f3020;
  border-bottom: 1px solid #1e3a28;
  color: #e0ede6;
  font-weight: 700;
}

.strategies-section .data-table--strategies tbody tr {
  background: rgba(5, 166, 91, 0.03);
}

.strategies-section .data-table--strategies tbody tr:nth-child(even) {
  background: rgba(15, 47, 32, 0.35);
}

.strategies-section .data-table--strategies td {
  border-bottom: 1px solid #1e3a28;
  font-weight: 400;
  color: #c8dace;
  text-align: center;
}

.strategies-section .data-table--strategies td:first-child {
  text-align: center;
  color: #c8dace;
  font-weight: 400;
}

.strategies-section .data-table--strategies td[rowspan] {
  font-weight: 400;
  color: #c8dace;
}

.strategies-section .data-table--strategies .data-table__sub {
  font-weight: 400;
  color: #c8dace !important;
  font-size: 12px;
}
@media (min-width: 768px) {
  .strategies-section .data-table--strategies .data-table__sub {
    font-size: 13px;
  }
}

.strategies-section .data-table--strategies tbody tr:last-child td {
  border-bottom: none;
}

.strategies-philosophy {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid #1e3a28;
  background: linear-gradient(160deg, #0f1f16 0%, #050a08 50%, #0a1410 100%);
  box-shadow:
    0 0 0 1px rgba(5, 166, 91, 0.2),
    0 0 20px rgba(5, 166, 91, 0.08),
    inset 0 1px 0 rgba(5, 166, 91, 0.12);
}
@media (min-width: 768px) {
  .strategies-philosophy {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
  }
}

.strategies-philosophy .comparison-table-title {
  margin-bottom: 1.25rem;
  text-align: left;
  color: #05A65B;
}

.strategies-philosophy__subtitle {
  margin: 0 0 0.75rem;
  color: #05A65B;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .strategies-philosophy__subtitle { font-size: 15px; }
}

.strategies-philosophy__text {
  margin: 0;
  color: #c8dace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}
@media (min-width: 768px) {
  .strategies-philosophy__text { font-size: 13px; }
}

/* =============================================
   ABOUT TEAM — KEY PEOPLE
   ============================================= */
.about-team {
  background: #000;
  padding: 2.5rem 0;
  color: #fff;
}
@media (min-width: 768px)  { .about-team { padding: 3.5rem 0; } }
@media (min-width: 1024px) { .about-team { padding: 4rem 0; } }

.about-team__intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}
@media (min-width: 768px) { .about-team__intro { margin-bottom: 2.5rem; } }

.about-team__intro + .about-team__intro {
  margin-top: 0;
}

.about-team__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .75rem;
}
@media (min-width: 576px)  { .about-team__heading { font-size: 28px; } }
@media (min-width: 1024px) { .about-team__heading { font-size: 34px; margin-bottom: 1rem; } }

.about-team__text {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 768px) { .about-team__text { font-size: 15px; } }

.text-green { color: #05A65B; }

.about-team__subheading {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
  letter-spacing: .02em;
}
@media (min-width: 576px)  { .about-team__subheading { font-size: 22px; margin-bottom: 2rem; } }
@media (min-width: 1024px) { .about-team__subheading { font-size: 26px; margin-bottom: 2.5rem; } }

.key-people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 576px) {
  .key-people-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .key-people-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* Two fund managers — centered pair */
.key-people-grid--duo {
  max-width: 72rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.key-people-grid--duo .key-person-card {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .key-people-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .key-people-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .key-people-grid--duo {
    gap: 2.5rem 3rem;
  }
}

/* Show first row only until expanded */
@media (max-width: 575px) {
  .key-people-grid:not(.is-expanded) .key-person-card:nth-of-type(n + 2) {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .key-people-grid:not(.is-expanded) .key-person-card:nth-of-type(n + 3) {
    display: none;
  }
}
@media (min-width: 992px) {
  .key-people-grid:not(.is-expanded) .key-person-card:nth-of-type(n + 4) {
    display: none;
  }
}

.key-people-group-title {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  color: #05A65B;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .key-people-group-title { font-size: 15px; margin-top: 1rem; }
}

.key-people-grid:not(.is-expanded) .key-people-group-title {
  display: none;
}

.key-person-card {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  background: radial-gradient(closest-side at 50% 30%, #5D5D5D 0%, #090909 100%);
  transition: border-color .3s, transform .3s;
}
.key-person-card:hover {
  border-color: rgba(5,166,91,.5);
  transform: translateY(-4px);
}
@media (min-width: 768px) { .key-person-card { padding: 1.5rem; } }

.key-person-card__photo {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(5,166,91,.45);
  background: linear-gradient(145deg, #1a3d2a 0%, #0a1f14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .key-person-card__photo {
    width: 140px;
    height: 140px;
  }
}

.key-person-card__initials {
  font-size: 1.75rem;
  font-weight: 700;
  color: #05A65B;
  letter-spacing: .04em;
}

.key-person-card__photo:has(img.is-loaded) .key-person-card__initials {
  display: none;
}

.key-person-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.key-person-card__role {
  color: #05A65B;
  font-size: 10px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: .02em;
  margin: 0 0 .35rem;
  line-height: 1.45;
  min-height: 2.9em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .key-person-card__role { font-size: 11px; min-height: 3.2em; } }
@media (min-width: 992px) { .key-person-card__role { font-size: 11px; } }

.key-person-card__name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 .75rem;
  line-height: 1.3;
}
@media (min-width: 768px) { .key-person-card__name { font-size: 18px; } }

.key-person-card__bio {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}
@media (min-width: 768px) { .key-person-card__bio { font-size: 13px; } }

/* =============================================
   WHY INVEST
   ============================================= */
.why-invest { background: #000; padding: 3rem 0; }
@media (min-width: 768px)  { .why-invest { padding: 4rem 0; } }
@media (min-width: 1024px) { .why-invest { padding: 5rem 0; } }

.why-invest__title {
  font-size: 18px; color: #fff; font-weight: 700;
  text-align: center; margin-bottom: 1rem; line-height: 1.2;
  letter-spacing: .02em;
}
@media (min-width: 576px)  { .why-invest__title { font-size: 22px; } }
@media (min-width: 768px)  { .why-invest__title { margin-bottom: 1.5rem; } }
@media (min-width: 1024px) { .why-invest__title { font-size: 26px; } }

.why-invest__sub {
  text-align: center; color: rgba(255,255,255,.9);
  font-size: 15px; max-width: 48rem;
  margin: 0 auto 2.5rem; padding: 0 1rem;
}
@media (min-width: 576px)  { .why-invest__sub { font-size: 16px; } }
@media (min-width: 768px)  { .why-invest__sub { font-size: 18px; margin-bottom: 3.5rem; padding: 0; } }

.investor-cards { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .investor-cards { gap: 2rem; } }

.investor-card {
  border: 1px solid rgba(255,255,255,.2); border-radius: 1rem;
  padding: 1.25rem; backdrop-filter: blur(12px);
  background: radial-gradient(closest-side at 63% 44%, #5D5D5D 0%, #090909 100%);
}
@media (min-width: 768px) { .investor-card { padding: 1.5rem 2rem; } }

.investor-card__head { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .investor-card__head { gap: 1rem; margin-bottom: 1.25rem; } }

.investor-card__num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(5,166,91,.2); border: 1px solid rgba(5,166,91,.4);
  display: flex; align-items: center; justify-content: center;
  color: #05A65B; font-weight: 700; font-size: 14px;
}
@media (min-width: 768px) { .investor-card__num { width: 36px; height: 36px; font-size: 16px; } }

.investor-card__title {
  color: #fff; font-weight: 700; font-size: 16px;
  line-height: 1.3; padding-top: 4px; margin: 0;
}
@media (min-width: 576px)  { .investor-card__title { font-size: 18px; } }
@media (min-width: 768px)  { .investor-card__title { font-size: 20px; } }

.investor-card__intro {
  color: #d1d5db; font-size: 14px; line-height: 1.6;
  margin-bottom: 1rem; margin-left: 2.75rem;
}
@media (min-width: 768px) { .investor-card__intro { font-size: 15px; margin-left: 52px; } }

.investor-card__footnote {
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.5;
  margin: 1rem 0 0 2.75rem;
}
@media (min-width: 768px) {
  .investor-card__footnote { font-size: 13px; margin-left: 52px; }
}

.investor-card__list {
  list-style: none; margin: 0; padding: 0;
  margin-left: 2.75rem;
  display: flex; flex-direction: column; gap: .75rem;
}
@media (min-width: 768px) { .investor-card__list { margin-left: 52px; gap: 1rem; } }

.investor-card__list li { display: flex; gap: .75rem; color: #d1d5db; font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .investor-card__list li { font-size: 15px; } }

/* =============================================
   SIF CARD
   ============================================= */
.sif-card-section { background: #000; }

.sif-card__top-bar,
.sif-card__bot-bar { padding: 0 1rem; }
@media (min-width: 576px) { .sif-card__top-bar, .sif-card__bot-bar { padding: 0 2.5rem; } }
@media (min-width: 768px)  { .sif-card__top-bar, .sif-card__bot-bar { padding: 0 5rem; } }
@media (min-width: 1024px) { .sif-card__top-bar, .sif-card__bot-bar { padding: 0 9rem; } }

.sif-card__top-inner {
  height: 60px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px;
  background: linear-gradient(180deg, #00000000 0%, #242424 100%);
}
@media (min-width: 576px)  { .sif-card__top-inner { height: 90px; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; } }
@media (min-width: 1024px) { .sif-card__top-inner { height: 125px; } }

.sif-card__bot-inner {
  height: 60px; border-top-left-radius: 20px; border-top-right-radius: 20px;
  background: linear-gradient(0deg, #00000000 0%, #242424 100%);
}
@media (min-width: 576px)  { .sif-card__bot-inner { height: 90px; border-top-left-radius: 28px; border-top-right-radius: 28px; } }
@media (min-width: 1024px) { .sif-card__bot-inner { height: 125px; } }

.sif-card__outer {
  display: flex; align-items: center; gap: .5rem; padding: 0 1rem;
}
@media (min-width: 576px) { .sif-card__outer { gap: 1rem; padding: 0; } }
@media (min-width: 1024px) { .sif-card__outer { gap: 1.5rem; } }

.sif-side-bar {
  display: none; width: 6%; min-height: 400px; flex-shrink: 0;
}
@media (min-width: 576px)  { .sif-side-bar { display: block; } }
@media (min-width: 1024px) { .sif-side-bar { width: 10%; min-height: 465px; } }

.sif-side-bar--left {
  background: linear-gradient(90deg, #00000000 0%, #242424 100%);
  border-top-right-radius: 20px; border-bottom-right-radius: 20px;
}
@media (min-width: 1024px) { .sif-side-bar--left { border-top-right-radius: 28px; border-bottom-right-radius: 28px; } }

.sif-side-bar--right {
  background: linear-gradient(270deg, #00000000 0%, #242424 100%);
  border-top-left-radius: 20px; border-bottom-left-radius: 20px;
}
@media (min-width: 1024px) { .sif-side-bar--right { border-top-left-radius: 28px; border-bottom-left-radius: 28px; } }

.sif-card__main { position: relative; flex: 1; min-width: 0; }

.sif-shadow {
  display: none; position: absolute; bottom: 16px; top: 16px;
  z-index: -1; width: 96%; border-radius: 28px; background: #1a1a1a;
}
@media (min-width: 576px) { .sif-shadow { display: block; } }

.sif-shadow--left  { left: 16px;  transform: translateX(-12px); }
.sif-shadow--right { right: 16px; transform: translateX(12px); }

.sif-card__white {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 1rem; background: #fff;
  background-size: cover; background-position: center;
  padding: 1.25rem; display: grid; gap: 2rem;
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 576px)  { .sif-card__white { border-radius: 28px; padding: 1.5rem 2rem; } }
@media (min-width: 1024px) { .sif-card__white { padding: .25rem 4rem; grid-template-columns: 1fr 1fr; min-height: 420px; } }

.sif-accent-line {
  display: none; position: absolute; height: 5px; width: 56px; background: #ef4444;
}
@media (min-width: 576px) { .sif-accent-line { display: block; height: 6px; width: 80px; } }
.sif-accent-line--1 { left: -10px; top: 6rem; transform: rotate(-30deg); }
.sif-accent-line--2 { left: 80px; top: 2.5rem; transform: rotate(-25deg); }
@media (min-width: 576px) {
  .sif-accent-line--1 { left: -16px; top: 7.5rem; }
  .sif-accent-line--2 { left: 128px; top: 3.1rem; }
}

.sif-left__logo { height: auto; width: 12rem; margin-bottom: 1rem; }
@media (min-width: 576px)  { .sif-left__logo { width: 16rem; } }
@media (min-width: 1024px) { .sif-left__logo { width: 20rem; } }

.sif-left__type {
  margin-bottom: 1rem; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; color: #374151; text-transform: uppercase;
}
.sif-left__desc {
  margin-bottom: 1.5rem; font-size: 13px; line-height: 1.6;
  color: #374151; text-align: justify;
}
@media (min-width: 576px)  { .sif-left__desc { font-size: 14px; } }
@media (min-width: 1024px) { .sif-left__desc { font-size: 15px; max-width: 340px; } }

.btn-know-more-card {
  border-radius: 9999px; border: 1px solid #fff; background: #000;
  padding: .5rem 1.5rem;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  color: #fff; cursor: pointer; line-height: 25px; transition: background .2s;
}
@media (min-width: 576px)  { .btn-know-more-card { font-size: 11px; padding: .5rem 2.5rem; } }
@media (min-width: 1024px) { .btn-know-more-card { font-size: 12px; padding: .5rem 3rem; } }
.btn-know-more-card:hover { background: #1a1a1a; }

.sif-right__inner {
  border-radius: 1rem; border: 1px solid #ADADAD;
  background: linear-gradient(244deg, #FFFFFF 0%, #E4E4E4 100%);
  padding: 1.25rem; box-shadow: 0 4px 6px rgba(0,0,0,.1);
  backdrop-filter: blur(19px);
}
@media (min-width: 576px)  { .sif-right__inner { border-radius: 25px; padding: 1.75rem; } }
@media (min-width: 1024px) { .sif-right__inner { padding: 2rem; } }

.sif-right__title { margin-bottom: 1rem; font-size: 13px; font-weight: 700; color: #000; }
@media (min-width: 576px) { .sif-right__title { font-size: 14px; } }

.sif-right__list { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; gap: .5rem; }
.sif-right__list li { display: flex; gap: .5rem; font-size: 12px; color: #000; }
@media (min-width: 576px) { .sif-right__list li { font-size: 14px; } }

.sif-risk-bands { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1rem; }
@media (min-width: 576px) { .sif-risk-bands { gap: 1.5rem; } }
.sif-risk-bands > div { border-radius: .5rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.1); }

/* SIF Card animations (know-more page) */
@keyframes sif-card-rise {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sif-shadow-left {
  from { opacity: 0; transform: translateX(0); }
  to   { opacity: 1; transform: translateX(-12px); }
}
@keyframes sif-shadow-right {
  from { opacity: 0; transform: translateX(0); }
  to   { opacity: 1; transform: translateX(12px); }
}
@keyframes sif-slide-left  { from { opacity:0; transform: translateX(-48px); } to { opacity:1; transform:translateX(0); } }
@keyframes sif-slide-right { from { opacity:0; transform: translateX(48px);  } to { opacity:1; transform:translateX(0); } }
@keyframes sif-line-grow   { from { opacity:0; width:0; } to { opacity:1; } }

.sif-animate-card         { animation: sif-card-rise   .65s cubic-bezier(.22,1,.36,1) both .05s; }
.sif-animate-shadow-left  { animation: sif-shadow-left  .7s  cubic-bezier(.22,1,.36,1) both .25s; }
.sif-animate-shadow-right { animation: sif-shadow-right .7s  cubic-bezier(.22,1,.36,1) both .25s; }
.sif-animate-left-content { animation: sif-slide-left   .6s  cubic-bezier(.22,1,.36,1) both .3s;  }
.sif-animate-right-card   { animation: sif-slide-right  .6s  cubic-bezier(.22,1,.36,1) both .45s; }
.sif-animate-line1        { animation: sif-line-grow    .5s  ease               both .6s;  }
.sif-animate-line2        { animation: sif-line-grow    .5s  ease               both .72s; }

/* =============================================
   FAQs
   ============================================= */
.faqs-section { background: #000; padding: 2.5rem 0 1.25rem; color: #fff; }
@media (min-width: 576px)  { .faqs-section { padding: 3rem 0 1.5rem; } }
@media (min-width: 1024px) { .faqs-section { padding: 4rem 0 2rem; } }

.faqs-section__inner { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 576px) { .faqs-section__inner { padding: 0 1.5rem; } }

.faqs-heading { margin-bottom: 2rem; text-align: center; }
@media (min-width: 576px)  { .faqs-heading { margin-bottom: 3rem; } }
@media (min-width: 1024px) { .faqs-heading { margin-bottom: 4rem; } }

.faqs-heading .about-team__subheading {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .faqs-heading .about-team__subheading { margin-bottom: 1.5rem; }
}

.faqs-heading p { max-width: 800px; margin: 0 auto; font-size: 13px; color: #fff; }
@media (min-width: 576px)  { .faqs-heading p { font-size: 14px; } }
@media (min-width: 1024px) { .faqs-heading p { font-size: 15px; } }

.faq-item {
  margin-bottom: .75rem; border-bottom: 2px solid #aba2a2;
  border-radius: 1rem; cursor: pointer; transition: background .5s ease;
}
@media (min-width: 576px) { .faq-item { margin-bottom: 1rem; } }

.faq-item:hover  { background: linear-gradient(180deg, #00000000 0%, #012E1935 0%, #05A65BBF 100%); }
.faq-item.open   { background: linear-gradient(180deg, #00000000 0%, #012E1935 0%, #05A65BBF 100%); }
.faq-item.hidden { display: none; }

.faq-btn {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  padding: 1rem; text-align: left; background: none; border: none; color: #fff;
  cursor: pointer; border-bottom: 1px solid #374151;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 576px)  { .faq-btn { padding: 1.25rem 1.5rem; } }
@media (min-width: 1024px) { .faq-btn { padding: 1.5rem 2rem; } }
.faq-item.open .faq-btn { border-bottom: none; }

.faq-btn__q {
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  font-size: 14px;
  font-weight: 500;
  padding-right: 1rem;
  text-align: left;
}

.faq-num {
  flex-shrink: 0;
  color: #05A65B;
  font-weight: 600;
}
@media (min-width: 576px)  { .faq-btn__q { font-size: 16px; } }
@media (min-width: 1024px) { .faq-btn__q { font-size: 18px; } }

.faq-icon {
  flex-shrink: 0; font-size: 20px; display: inline-block; font-style: normal;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 576px) { .faq-icon { font-size: 24px; } }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer { max-height: 2000px; opacity: 1; }

.faq-answer p {
  padding: .5rem 1rem 0.75rem;
  color: #d1d5db; font-size: 13px; line-height: 1.6; white-space: pre-line; margin: 0;
}
.faq-answer p:last-child {
  padding-bottom: 1.25rem;
}

.faq-answer a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover {
  color: #000;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1rem;
}
@media (min-width: 576px)  { .faq-list { padding: 0 1.5rem 1.25rem; } }
@media (min-width: 1024px) { .faq-list { padding: 0 2rem 1.25rem; } }

.faq-list > li {
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: .75rem;
}
@media (min-width: 576px)  { .faq-list > li { font-size: 14px; } }
@media (min-width: 1024px) { .faq-list > li { font-size: 15px; } }

.faq-list__row {
  display: flex;
  gap: .75rem;
}

.faq-list__row .sif-label {
  flex-shrink: 0;
}

.faq-list__row > span:not(.sif-label) {
  flex: 1;
  min-width: 0;
}

.faq-sublist {
  list-style: none;
  margin: .5rem 0 0;
  padding: 0 0 0 1.25rem;
  width: 100%;
}

.faq-sublist li {
  display: flex;
  gap: .75rem;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: .5rem;
}
@media (min-width: 576px)  { .faq-sublist li { font-size: 14px; } }
@media (min-width: 1024px) { .faq-sublist li { font-size: 15px; } }

.faq-sublist li:last-child {
  margin-bottom: 0;
}

.faq-list-or {
  margin: 0;
  padding: 0 1rem .5rem;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.6;
}
@media (min-width: 576px)  { .faq-list-or { padding: 0 1.5rem .5rem; font-size: 14px; } }
@media (min-width: 1024px) { .faq-list-or { padding: 0 2rem .5rem; font-size: 15px; } }

.faq-list--inline-options {
  padding-bottom: 0;
}

.faq-list--inline-options > li {
  margin-bottom: 0;
}

.faq-nav-formula {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0.5rem 1rem 1.25rem;
  padding: 0.75rem 0 0;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .faq-nav-formula { margin-left: 1.5rem; margin-right: 1.5rem; font-size: 14px; }
}
@media (min-width: 1024px) {
  .faq-nav-formula { margin-left: 2rem; margin-right: 2rem; font-size: 15px; }
}

.faq-nav-formula__equals {
  flex-shrink: 0;
  font-weight: 700;
  color: #fff;
  align-self: center;
}

.faq-nav-formula__fraction {
  flex: 1;
  min-width: 0;
}

.faq-nav-formula__numerator,
.faq-nav-formula__denominator {
  margin: 0;
  text-align: center;
}

.faq-nav-formula__rule {
  height: 2px;
  margin: 0.4rem 0;
  background: #d1d5db;
  border-radius: 1px;
}
@media (min-width: 576px)  { .faq-answer p { padding: .5rem 1.5rem 1.25rem; font-size: 14px; } }
@media (min-width: 1024px) { .faq-answer p { padding: .5rem 2rem 1.25rem; font-size: 15px; } }

.faq-view-more-wrap { margin-top: 3rem; text-align: center; }

/* =============================================
   DOWNLOADS
   ============================================= */
.downloads-section { background: #000; padding: 2.5rem 0 1.25rem; color: #fff; }
@media (min-width: 576px)  { .downloads-section { padding: 3rem 0 1.5rem; } }
@media (min-width: 1024px) { .downloads-section { padding: 4rem 0 2rem; } }

.downloads-section__inner { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 576px) { .downloads-section__inner { padding: 0 1.5rem; } }

.downloads-heading { margin-bottom: 2rem; text-align: center; }
@media (min-width: 576px)  { .downloads-heading { margin-bottom: 3rem; } }
@media (min-width: 1024px) { .downloads-heading { margin-bottom: 4rem; } }

.downloads-heading .about-team__subheading {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .downloads-heading .about-team__subheading { margin-bottom: 1.5rem; }
}

.downloads-heading p { max-width: 800px; margin: 0 auto; font-size: 13px; color: #d1d5db; }
@media (min-width: 576px)  { .downloads-heading p { font-size: 14px; } }
@media (min-width: 1024px) { .downloads-heading p { font-size: 15px; } }

.downloads-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) { .downloads-tabs { margin-bottom: 2rem; gap: 1rem; } }

.downloads-switch {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.downloads-tab {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border-radius: 32px;
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
  margin: 0;
}
@media (min-width: 576px) { .downloads-tab { font-size: 13px; padding: .75rem 2rem; } }

.downloads-tab:hover {
  border-color: #05A65B;
  color: #05A65B;
}

#downloads-switch-sai:checked ~ .downloads-tabs label[for="downloads-switch-sai"],
#downloads-switch-forms:checked ~ .downloads-tabs label[for="downloads-switch-forms"],
#downloads-switch-policies:checked ~ .downloads-tabs label[for="downloads-switch-policies"] {
  background: #05A65B;
  border-color: #05A65B;
  color: #fff;
}

.downloads-panel {
  display: none;
}

#downloads-switch-sai:checked ~ .downloads-panels #downloads-panel-sai,
#downloads-switch-forms:checked ~ .downloads-panels #downloads-panel-forms,
#downloads-switch-policies:checked ~ .downloads-panels #downloads-panel-policies {
  display: block;
}

.downloads-empty {
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 1.25rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 576px) { .downloads-empty { padding: 2rem 1.5rem; } }

.downloads-empty__title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 .75rem;
}
@media (min-width: 576px) { .downloads-empty__title { font-size: 16px; } }

.downloads-empty p {
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 .75rem;
}
.downloads-empty p:last-child { margin-bottom: 0; }
@media (min-width: 576px)  { .downloads-empty p { font-size: 14px; } }
@media (min-width: 1024px) { .downloads-empty p { font-size: 15px; } }

.downloads-empty a {
  color: #05A65B;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.downloads-empty a:hover { color: #fff; }

.download-item {
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition:
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease,
    background .5s ease;
}
.download-item:hover {
  border-color: #05A65B;
  background: linear-gradient(180deg, #00000000 0%, #012E1935 0%, #05A65BBF 100%);
  box-shadow: 0 6px 24px rgba(5, 166, 91, 0.4);
  transform: translateY(-3px);
}

.download-item .faq-btn,
.download-item .download-link {
  border-bottom: none;
  transition: color .35s ease;
}

a.download-link {
  text-decoration: none;
  color: inherit;
}
a.download-link:hover,
a.download-link:focus { color: #fff; }

.download-item:hover .faq-btn__q {
  color: #fff;
}

.download-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: #05A65B;
  line-height: 1;
  transition: transform .35s ease, color .35s ease;
}
@media (min-width: 576px) { .download-icon { font-size: 24px; } }

.download-item:hover .download-icon {
  color: #fff;
  transform: translateY(3px) scale(1.1);
}

.btn-view-more {
  border-radius: 32px; border: 1px solid #fff; background: rgba(255,255,255,.1);
  padding: .75rem 2rem; font-size: 12px; font-weight: 700; text-transform: uppercase;
  color: #fff; cursor: pointer; backdrop-filter: blur(37px); transition: background .3s;
}
.btn-view-more:hover { background: rgba(255,255,255,.15); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #fff;
  margin-top: 0;
}

.site-footer__body { padding: 1.25rem 0 2.5rem; }
@media (min-width: 576px)  { .site-footer__body { padding: 1.5rem 0 3rem; } }
@media (min-width: 1024px) { .site-footer__body { padding: 2rem 0 4rem; } }

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .footer-grid { gap: 7rem; margin-bottom: 3rem; } }

.footer-connect__title {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 .75rem;
}
@media (min-width: 576px) { .footer-connect__title { font-size: 13px; } }
@media (min-width: 1024px) { .footer-connect__title { font-size: 14px; margin-bottom: 1rem; } }

.footer-brand__logo { height: 32px; width: auto; margin-bottom: 1rem; }
@media (min-width: 576px)  { .footer-brand__logo { height: 36px; margin-bottom: 1.25rem; } }
@media (min-width: 1024px) { .footer-brand__logo { height: 40px; margin-bottom: 1.5rem; } }

.footer-brand__desc { color: #fff; font-size: 12px; line-height: 1.6; margin-bottom: 1rem; }
@media (min-width: 576px)  { .footer-brand__desc { font-size: 13px; margin-bottom: 1.25rem; } }
@media (min-width: 1024px) { .footer-brand__desc { max-width: 360px; margin-bottom: 0; font-size: 14px; } }

.footer-social { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (min-width: 576px)  { .footer-social { gap: 1rem; } }
@media (min-width: 1024px) { .footer-social { gap: 2rem; } }

.footer-social a img { width: 28px; height: 28px; transition: transform .2s; }
@media (min-width: 576px)  { .footer-social a img { width: 32px; height: 32px; } }
@media (min-width: 1024px) { .footer-social a img { width: 40px; height: 40px; } }
.footer-social a img:hover { transform: scale(1.1); }

.footer-col__title { color: #fff; font-weight: 600; font-size: 13px; margin-bottom: 1rem; }
@media (min-width: 576px)  { .footer-col__title { font-size: 14px; margin-bottom: 1.25rem; } }
@media (min-width: 1024px) { .footer-col__title { font-size: 18px; margin-bottom: 1.5rem; } }

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: .75rem;
}

/* Footer — mobile: stacked sections */
@media (max-width: 767px) {
  .footer-col--quick .footer-col__title {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-col--quick ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 0.5rem;
    width: 100%;
    padding: 0;
  }

  .footer-col--quick ul li {
    min-width: 0;
    text-align: center;
  }

  .footer-col--quick ul li a {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .footer-connect {
    text-align: center;
  }

  .footer-connect__title {
    text-align: center;
  }

  .footer-social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 .5rem;
  }

  .footer-social a {
    flex-shrink: 0;
  }
}

/* Footer — desktop: single row — brand | quick links | connect */
@media (min-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.85fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
  }

  .footer-brand__desc {
    margin-bottom: 0;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-col--quick .footer-col__title {
    text-align: center;
  }

  .footer-col--quick ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 0.75rem;
    align-items: start;
    justify-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-col--quick ul li {
    width: 100%;
    text-align: center;
  }

  .footer-col--quick ul li a {
    display: block;
    text-align: center;
  }

  .footer-connect__title {
    text-align: left;
  }

  .footer-social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
  }

  .footer-social a {
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .footer-connect .footer-social {
    gap: .75rem;
  }

  .footer-connect .footer-social a img {
    width: 36px;
    height: 36px;
  }
}

.footer-col ul li a { color: #9ca3af; font-size: 12px; transition: color .2s; }
@media (min-width: 576px)  { .footer-col ul li a { font-size: 13px; } }
@media (min-width: 1024px) { .footer-col ul li a { font-size: 14px; } }
.footer-col ul li a:hover { color: #fff; }

.footer-disclaimer {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
}

.footer-disclaimer__legal,
.footer-disclaimer__main {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .footer-disclaimer__legal,
  .footer-disclaimer__main { font-size: 11px; }
}
@media (min-width: 1024px) {
  .footer-disclaimer__legal,
  .footer-disclaimer__main { font-size: 12px; }
}

.footer-disclaimer__legal { color: #9ca3af; font-weight: 400; }

.footer-disclaimer__main { color: #fff; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  color: #9ca3af;
  font-size: 10px;
}
@media (min-width: 576px)  { .footer-bottom { font-size: 11px; padding-top: 1.5rem; } }
@media (min-width: 1024px) { .footer-bottom { font-size: 12px; } }

.footer-bottom p {
  margin: 0 0 .35rem;
  line-height: 1.6;
  color: #9ca3af;
}
.footer-bottom p:last-child { margin-bottom: 0; }

.footer-bottom__dev a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom__dev a:hover {
  color: #fff;
  text-decoration: underline;
}

/* =============================================
   OVERVIEW (know-more page)
   ============================================= */
.overview-wrap {
  display: flex; flex-direction: column; padding: 2.5rem 0;
  background: radial-gradient(ellipse at 0% 50%, #05A65B -20%, #002313 50%, #000 70%);
}
@media (min-width: 1024px) { .overview-wrap { flex-direction: row; height: 100vh; } }

/* Mobile nav strip */
.ov-mobile-nav {
  position: sticky; top: 70px; z-index: 20;
  background: rgba(0,0,0,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: .5rem 1rem;
}
@media (min-width: 1024px) { .ov-mobile-nav { display: none; } }

.ov-mobile-nav__pills {
  display: flex; gap: .5rem; overflow-x: auto; padding-bottom: 4px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.ov-mobile-nav__pills::-webkit-scrollbar { display: none; }

.ov-pill {
  flex-shrink: 0; padding: 6px 12px; border-radius: 9999px;
  font-size: 11px; font-weight: 600; cursor: pointer; white-space: nowrap;
  background: #1a1a1a; color: #9ca3af; border: 1px solid rgba(255,255,255,.1);
  transition: all .2s;
}
.ov-pill:hover { color: #fff; }
.ov-pill.active { background: #22c55e; color: #000; border-color: #22c55e; }

.ov-mobile-invest { display: flex; align-items: center; gap: .75rem; margin-top: .5rem; }

.btn-invest-now,
.btn-invest-desk {
  display: inline-block;
  font-size: 11px; font-weight: 600; color: #fff;
  border: 1px solid rgba(255,255,255,.3); background: #1f2937;
  border-radius: 9999px; padding: .5rem 1.5rem;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-invest-now:hover,
.btn-invest-desk:hover {
  color: #fff;
  background: #374151;
  border-color: rgba(255,255,255,.5);
}

/* Desktop sidebar */
.ov-sidebar { display: none; width: 25%; height: 100%; padding: 6.25rem .625rem 0 5.125rem; }
@media (min-width: 1024px) { .ov-sidebar { display: block; } }

.ov-sidebar__box { border: 1px solid rgba(255,255,255,.3); border-radius: .75rem; overflow: hidden; }

.ov-sidebar__top {
  width: 100%; padding: .625rem .875rem; height: 75px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff;
}
.ov-sidebar__suitable { font-size: 10px; text-align: start; margin: 0; width: 100%; }
.ov-sidebar__type { font-size: 12px; font-weight: 700; margin: 0; }

.ov-sidebar__nav { border: 1px solid rgba(112,112,112,.3); }

.ov-sidebar__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }

.ov-sidebar__nav li {
  padding: .5rem 1rem; font-size: 14px; cursor: pointer;
  transition: all .3s; color: #9ca3af; letter-spacing: 0;
}
.ov-sidebar__nav li:hover { letter-spacing: .1em; color: #fff; }
.ov-sidebar__nav li.active { color: #fff; font-weight: 600; letter-spacing: .1em; }

.ov-sidebar__actions {
  display: flex; align-items: center; justify-content: space-evenly; padding: 1rem 0;
}
.btn-invest-desk { font-size: 12px; padding: .75rem 2.5rem; }

/* Overview content */
.ov-content {
  width: 100%; height: auto; overflow-y: auto;
  padding: 1.5rem 1rem 0;
  -ms-overflow-style: none; scrollbar-width: none;
}
.ov-content::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .ov-content { width: 70%; height: 100%; padding: 6.25rem 0 0 .625rem; }
}

.ov-content__inner {
  border: 1px solid rgba(112,112,112,.5); border-radius: .75rem;
  overflow: hidden; padding: 1rem;
}
@media (min-width: 576px)  { .ov-content__inner { padding: 1.5rem; } }
@media (min-width: 1024px) { .ov-content__inner { padding: 2rem; } }

/* Fund Overview box */
.fund-ov-box { border-radius: .75rem; background: #000; border: 1px solid rgba(112,112,112,.5); overflow: hidden; }

.fund-ov-box__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem; padding: 1rem 1.5rem; border-bottom: 1px solid #1f1f1f;
}
.fund-ov-box__title { font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -.01em; }
@media (min-width: 576px) { .fund-ov-box__title { font-size: 17px; } }

.tab-toggle { display: flex; align-items: center; background: #1a1a1a; border: 1px solid #1f1f1f; border-radius: 9999px; padding: 3px; }
.tab-btn {
  padding: 6px 1rem; font-size: 11px; font-weight: 600; border-radius: 9999px;
  cursor: pointer; border: none; background: none; color: #888; transition: all .2s;
}
@media (min-width: 576px) { .tab-btn { padding: 6px 1.25rem; font-size: 12px; } }
.tab-btn.active { background: #22c55e; color: #000; }
.tab-btn:hover:not(.active) { color: #fff; }

.nav-cards-grid {
  padding: 1rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
}
@media (min-width: 576px)  { .nav-cards-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .nav-cards-grid { grid-template-columns: repeat(4,1fr); } }

.nav-card {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 1rem .75rem;
  border-bottom: 1px solid #1f1f1f; border-right: 1px solid #1f1f1f;
}
.nav-card:nth-child(2n)   { border-right: none; }
@media (min-width: 576px)  {
  .nav-card:nth-child(2n)  { border-right: 1px solid #1f1f1f; }
  .nav-card:nth-child(3n)  { border-right: none; }
}
@media (min-width: 1024px) {
  .nav-card:nth-child(3n)  { border-right: 1px solid #1f1f1f; }
  .nav-card:nth-child(4n)  { border-right: none; }
}
.nav-card:last-child { border-bottom: none; }

.nav-card__lbl { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.nav-card__nav-t { font-size: 10px; font-weight: 700; color: #ccc; letter-spacing: .1em; }
@media (min-width: 576px) { .nav-card__nav-t { font-size: 11px; } }
.nav-card__date { font-size: 8px; color: rgba(255,255,255,.7); }
@media (min-width: 576px) { .nav-card__date { font-size: 9px; } }
.nav-card__val { font-size: 12px; font-weight: 600; color: #fff; letter-spacing: -.01em; line-height: 1; }
@media (min-width: 576px) { .nav-card__val { font-size: 14px; } }

/* Overview sections */
.ov-section { padding: 1.5rem 1rem; border-bottom: 1px solid #1f1f1f; }
@media (min-width: 576px) { .ov-section { padding: 1.5rem; } }
.ov-section:last-child { border-bottom: none; }

.ov-section__title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: .75rem; }
@media (min-width: 576px) { .ov-section__title { font-size: 16px; } }

.ov-section__text { font-size: 12px; color: #888; line-height: 1.6; margin: 0; }
@media (min-width: 576px) { .ov-section__text { font-size: 13px; } }

.ov-empty { background: #111827; display: flex; align-items: center; justify-content: center; border-radius: .75rem; height: 160px; }
@media (min-width: 576px) { .ov-empty { height: 200px; } }
.ov-empty p { font-size: 12px; color: #888; text-align: center; margin: 0; }
@media (min-width: 576px) { .ov-empty p { font-size: 13px; } }

/* Asset Allocation table */
.asset-tbl-wrap { overflow-x: auto; }
.asset-tbl { border: 1px solid #1f1f1f; background: #000; border-radius: .75rem; overflow: hidden; min-width: 480px; }
.asset-row { display: grid; grid-template-columns: 55% 22.5% 22.5%; }
.asset-row:not(:last-child) { border-bottom: 1px solid #1f1f1f; }
.asset-cell { padding: .75rem 1rem; font-size: 11px; color: #fff; line-height: 1.5; }
@media (min-width: 576px) { .asset-cell { font-size: 12px; } }
.asset-cell--br { border-right: 1px solid #1f1f1f; }
.asset-cell--center { text-align: center; }

/* Product docs */
.product-docs { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (min-width: 1024px) { .product-docs { grid-template-columns: repeat(4,1fr); } }

.product-doc {
  display: flex; align-items: center; gap: .75rem;
  background: #0e0e0e; border: 1px solid #1f1f1f; border-radius: .75rem;
  padding: 1.25rem .75rem; cursor: pointer; transition: border-color .2s;
}
@media (min-width: 576px) { .product-doc { padding: 2rem 1rem; } }
.product-doc:hover { border-color: #444; }
.product-doc__icon { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.product-doc__label { font-size: 11px; color: #fff; font-weight: 500; line-height: 1.3; }
@media (min-width: 576px) { .product-doc__label { font-size: 12px; } }

/* Fund Managers */
.fm-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 576px)  { .fm-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .fm-grid { grid-template-columns: repeat(3,1fr); } }

.fm-grid--duo {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .fm-grid--duo { grid-template-columns: 1fr 1fr; }
}

.fm-card {
  display: flex; flex-direction: column; justify-content: space-between;
  background: #0e0e0e; border: 1px solid #1f1f1f; border-radius: .75rem;
  padding: 1rem; cursor: pointer; transition: border-color .2s;
}
.fm-card:hover { border-color: #444; }
.fm-card__top { display: flex; align-items: flex-start; gap: .75rem; }
.fm-card__photo { width: 48px; height: 48px; border-radius: .5rem; object-fit: cover; flex-shrink: 0; }
@media (min-width: 576px) { .fm-card__photo { width: 56px; height: 56px; } }
.fm-card__photo--lg { width: 64px; height: 64px; }
@media (min-width: 576px) { .fm-card__photo--lg { width: 72px; height: 72px; } }
.fm-card__role { font-size: 10px; color: #05A65B; font-weight: 600; margin: 0 0 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.fm-card__name { font-size: 12px; color: #fff; font-weight: 700; line-height: 1.3; margin: 0 0 8px; }
@media (min-width: 576px) { .fm-card__name { font-size: 13px; } }
.fm-card__bio { font-size: 10px; color: #aaa; line-height: 1.55; margin: 0; }
@media (min-width: 576px) { .fm-card__bio { font-size: 11px; } }
.fm-card__exp { font-size: 10px; color: #888; margin: 0 0 8px; }
.fm-card__flabel { font-size: 10px; color: #888; font-weight: 600; margin: 0 0 2px; }
.fm-card__fval { font-size: 10px; color: #aaa; line-height: 1.5; margin: 0; }

.ov-empty--docs a {
  color: #05A65B;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ov-empty--docs a:hover { color: #fff; }

/* Scroll-margin for sections */
.scroll-mt { scroll-margin-top: 6rem; }
