/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: #2b2b2f;
  background: #ededed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Header / Navbar ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  position: relative;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo img {
  height: 30px;
  width: auto;
}

.navbar__right {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #2b2b2f;
  background: #eee;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.lang-switcher__select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 14px;
}

.lang-switcher:hover {
  background: #e4e4e4;
}

.lang-switcher__icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.lang-switcher__chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

.lang-switcher__label {
  font-size: 14px;
  font-weight: 500;
  color: #2b2b2f;
}

/* ===== Sticky Header ===== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ededed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header__logo img {
  height: 26px;
  width: auto;
}

.sticky-header__right {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #2b2b2f;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px;
  border-radius: 30px;
  border: 1.5px solid #ccc;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Manrope', sans-serif;
}

.btn-outline:hover {
  border-color: #2b2b2f;
  background: rgba(0,0,0,0.03);
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 60px 20px 0;
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.hero__title-wrapper {
  position: relative;
  display: inline-block;
}

.hero__badge {
  display: inline-block;
  background: rgba(86, 150, 122, 0.75);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  top: -26px;
  right: -10px;
  z-index: 2;
  transform: rotate(4deg);
}

.hero__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 64px;
  color: #2b2b2f;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #827d7b;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2b2b2f;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Manrope', sans-serif;
}

.btn-primary:hover {
  background: #3d3d42;
  transform: translateY(-1px);
}

/* ===== People Grid ===== */
.people-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 50px 0 60px;
  overflow-x: clip;
  overflow-y: visible;
}

.people-grid__card {
  width: 222px;
  height: 222px;
  flex-shrink: 0;
  position: relative;
}

.people-grid__card:first-child {
  margin-left: -80px;
}

.people-grid__card:last-child {
  margin-right: -80px;
}

.people-grid__photo {
  width: 222px;
  height: 222px;
  object-fit: cover;
  border-radius: 24px;
}

.people-grid__tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  width: 222px;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.people-grid__card:hover .people-grid__tooltip {
  opacity: 1;
}

.people-grid__tooltip-name {
  font-size: 16px;
  font-weight: 600;
  color: #2b2b2f;
}

.people-grid__tooltip-desc {
  font-size: 16px;
  font-weight: 600;
  color: #9ec2b2;
}

.people-grid__tooltip-desc a {
  color: #9ec2b2;
}

.people-grid__tooltip-desc a:hover {
  text-decoration: underline;
}

.people-grid__join {
  width: 222px;
  height: 222px;
  border-radius: 50%;
  background: #2b2b2f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f5f6fa;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  z-index: 2;
}

.people-grid__join:hover {
  background: #4a4a50;
  transform: scale(1.03);
}

.people-grid__join-plus {
  font-size: 91px;
  font-weight: 400;
  line-height: 0.64;
}

.people-grid__join-text {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  max-width: 140px;
  display: none;
}

/* ===== Features (Pill Cards with colored borders) ===== */
.features {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.feature-pill {
  background: #ededed;
  border: 1.5px solid #b8d4c5;
  border-radius: 184px;
  padding: 48px 70px;
  font-size: 24px;
  font-weight: 500;
  color: #181819;
  text-align: center;
  width: fit-content;
  margin-bottom: -8px;
  position: relative;
}

.feature-pill:nth-child(1) { border-color: #b8d4c5; z-index: 7; }
.feature-pill:nth-child(2) { border-color: #b8d4c5; z-index: 6; transform: translateX(20px); }
.feature-pill:nth-child(3) { border-color: #a8b8d4; z-index: 5; transform: translateX(40px); }
.feature-pill:nth-child(4) { border-color: #e0a0b8; z-index: 4; transform: translateX(20px); }
.feature-pill:nth-child(5) { border-color: #a8b8d4; z-index: 3; }
.feature-pill:nth-child(6) { border-color: #b8d4c5; z-index: 2; transform: translateX(20px); }
.feature-pill:nth-child(7) { border-color: #a8b8d4; z-index: 1; transform: translateX(40px); }

/* ===== Mid CTA ===== */
.mid-cta {
  text-align: center;
  padding: 40px 20px;
}

/* ===== Quote Section ===== */
.quote-section {
  text-align: center;
  max-width: 960px;
  margin: 40px auto 60px;
  padding: 40px 20px;
}

.quote-section__text {
  font-size: 40px;
  font-weight: 600;
  color: #181819;
  line-height: 1.25;
}

/* ===== Testimonials (Card style) ===== */
.testimonials {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial {
  background: transparent;
  border-radius: 24px;
  padding: 32px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial__quote {
  font-size: 18px;
  font-weight: 500;
  color: #2b2b2f;
  line-height: 1.55;
}

.testimonial__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__photo {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__author {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: #808080;
  line-height: 1.3;
}

.testimonial__author a {
  color: #808080;
  transition: color 0.2s;
}

.testimonial__author a:hover {
  color: #555;
}

.testimonial__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__arrow svg {
  width: 14px;
  height: 22px;
}

.testimonial__author a[href*="liquifund"],
.testimonial__author a[href*="genosynth"] {
  color: #9ec2b2;
}

.testimonial__author a[href*="liquifund"]:hover,
.testimonial__author a[href*="genosynth"]:hover {
  color: #7aa896;
}

/* ===== FAQ / Accordion ===== */
.faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-item:first-child {
  border-top: 1px solid #ddd;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  color: #181819;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-header:hover { color: #555; }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #88b5ed;
  border-radius: 2px;
}

.faq-icon::before {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-body {
  max-height: 2000px;
  padding-bottom: 24px;
}

.faq-body__content {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.65;
}

.faq-body__content p {
  margin-bottom: 16px;
}

.faq-body__content p:last-child {
  margin-bottom: 0;
}

.faq-body__content ul {
  list-style: none;
  padding: 0;
}

.faq-body__content ul li {
  padding-left: 0;
  margin-bottom: 4px;
}

/* ===== CTA Section ===== */
.cta-section {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.cta-card {
  background: #ededed;
  border-radius: 32px 32px 24px 24px;
  padding: 40px 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-card__title {
  font-size: 40px;
  font-weight: 600;
  color: #181819;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-card__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #2b2b2f;
  margin-bottom: 4px;
}

.cta-card__description {
  font-size: 20px;
  font-weight: 600;
  color: #2b2b2f;
  margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.footer p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #181819;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 810px) {
  .hero__title {
    font-size: 38px;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__badge {
    position: static;
    margin-bottom: 8px;
    transform: none;
  }

  .people-grid {
    gap: 10px;
    padding: 30px 16px 40px;
    flex-wrap: wrap;
    overflow: visible;
  }

  .people-grid__card {
    width: calc(33.33% - 8px);
    height: auto;
    aspect-ratio: 1;
  }

  .people-grid__card:first-child {
    margin-left: 0;
  }

  .people-grid__card:last-child {
    margin-right: 0;
  }

  .people-grid__photo {
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }

  .people-grid__tooltip {
    display: none;
  }

  .people-grid__join {
    width: calc(33.33% - 8px);
    height: auto;
    aspect-ratio: 1;
  }

  .people-grid__join-plus {
    font-size: 48px;
  }

  .people-grid__join-text {
    font-size: 11px;
    display: block;
  }

  .feature-pill {
    font-size: 16px;
    padding: 20px 28px;
    border-radius: 100px;
  }

  .feature-pill:nth-child(n) {
    transform: none !important;
  }

  .features {
    padding: 0 16px 40px;
  }

  .quote-section__text {
    font-size: 24px;
  }

  .quote-section {
    padding: 24px 16px;
    margin: 20px auto 40px;
  }

  .testimonials {
    padding: 0 16px 40px;
    gap: 16px;
  }

  .testimonial {
    padding: 24px;
    gap: 16px;
  }

  .testimonial__quote {
    font-size: 16px;
  }

  .testimonial__author {
    font-size: 16px;
  }

  .testimonial__photo {
    width: 48px;
    height: 48px;
  }

  .testimonial__arrow {
    width: 36px;
    height: 36px;
  }

  .testimonial__arrow svg {
    width: 10px;
    height: 16px;
  }

  .faq {
    padding: 20px 16px 40px;
  }

  .faq-header {
    font-size: 18px;
  }

  .faq-body__content {
    font-size: 16px;
  }

  .cta-card__title {
    font-size: 28px;
  }

  .cta-card {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .cta-card__subtitle,
  .cta-card__description {
    font-size: 18px;
  }

  .cta-section {
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .sticky-header__right .lang-switcher {
    display: none;
  }

  .navbar__right .lang-switcher {
    display: none;
  }

  .footer {
    padding: 30px 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px 16px;
  }

  .navbar__right {
    right: 16px;
  }

  .hero {
    padding: 24px 16px 0;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero__badge {
    font-size: 14px;
    padding: 3px 12px;
  }

  .btn-primary {
    font-size: 18px;
    padding: 12px 32px;
  }

  .sticky-header {
    padding: 12px 16px;
  }

  .feature-pill {
    font-size: 14px;
    padding: 16px 22px;
  }
}
