@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Inter+Tight:wght@300;400;500;600;700&display=swap');

:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-headings: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --color-black: #1b1b18;
  --color-gray: #6c6c60;
  --color-white: #ffffff;
  
  --color-blue-500: #4381ff;
  --color-blue-200: #b4cdff;
  --color-blue-100: #d9e6ff;
  --color-blue-50: #f0f5ff;
  
  --color-purple-500: #7751e0;
  --color-purple-200: #c9b9f3;
  --color-purple-100: #e4dcf9;
  --color-purple-50: #f8f7fd;
  
  --color-green-500: #277023;
  --color-green-200: #94dc90;
  --color-green-100: #caeec8;
  --color-green-50: #e7f0e7;

  --color-graphite: #363630;

  --font-size-h1: 96px;
  --line-height-h1: 104px;
  --font-size-h2: 80px;
  --line-height-h2: 88px;
  --font-size-h3: 64px;
  --line-height-h3: 76px;
  --font-size-h4: 48px;
  --line-height-h4: 56px;
  --font-size-h5: 32px;
  --line-height-h5: 40px;

  --font-size-body-xl: 24px;
  --line-height-body-xl: 36px;
  --font-size-body-l: 20px;
  --line-height-body-l: 32px;
  --font-size-body-m: 16px;
  --line-height-body-m: 26px;
  --font-size-body-s: 14px;
  --line-height-body-s: 22px;

  --spacer-small: 16px;
  --spacer-medium: 24px;
  --spacer-large: 40px;
  --spacer-xlarge: 80px;
  --spacer-xxlarge: 120px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-body);
  color: var(--color-black);
  background-color: #ffffff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #ffffff;
  color: var(--color-black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Classes */
.h1 {
  font-family: var(--font-headings);
  color: var(--color-black);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.h1 strong {
  font-weight: 700;
}

.h2 {
  font-family: var(--font-headings);
  color: var(--color-black);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.h3 {
  font-family: var(--font-headings);
  color: var(--color-black);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-weight: 500;
}

.h4 {
  font-family: var(--font-headings);
  color: var(--color-black);
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: 500;
}

.h5 {
  font-family: var(--font-headings);
  color: var(--color-black);
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  font-weight: 500;
}

.body-xl {
  font-family: var(--font-body);
  color: var(--color-gray);
  font-size: var(--font-size-body-xl);
  line-height: var(--line-height-body-xl);
  font-weight: 400;
}

.body-xl-link {
  font-weight: 600;
  text-decoration: none;
}

.body-l {
  font-family: var(--font-body);
  color: var(--color-gray);
  font-size: var(--font-size-body-l);
  line-height: var(--line-height-body-l);
  font-weight: 400;
}

.body-l-link {
  font-weight: 600;
}

.body-m {
  font-family: var(--font-body);
  color: var(--color-gray);
  font-size: var(--font-size-body-m);
  line-height: var(--line-height-body-m);
  font-weight: 400;
}

.body-s {
  font-family: var(--font-body);
  color: var(--color-gray);
  font-size: var(--font-size-body-s);
  line-height: var(--line-height-body-s);
}

.blue-500 {
  color: var(--color-blue-500) !important;
}

.purple-500 {
  color: var(--color-purple-500) !important;
}

.green-500 {
  color: var(--color-green-500) !important;
}

.bold-text {
  color: var(--color-purple-500);
}

.bold-text-2 {
  color: var(--color-blue-500);
}

/* Spacers */
.spacer-small {
  height: var(--spacer-small);
  width: 100%;
}

.spacer-medium {
  height: var(--spacer-medium);
  width: 100%;
}

.spacer-large {
  height: var(--spacer-large);
  width: 100%;
}

.spacer-xlarge {
  height: var(--spacer-xlarge);
  width: 100%;
}

/* Navbar */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--color-white);
}

.navbar_top {
  border-bottom: 0.5px solid var(--color-black);
  background-color: var(--color-white);
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

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

.brand_logo .logo img {
  height: 38px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  color: var(--color-black);
  font-size: var(--font-size-body-m);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--color-blue-500);
}

.nav-link.w--current {
  font-weight: 700;
  color: var(--color-black);
}

.nav-link.w--current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-black);
}

.navbar_icon {
  display: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.icon_menu, .icon_close {
  width: 28px;
  height: 28px;
}

.icon_close {
  display: none;
}

.navbar-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 0.5px solid var(--color-black);
  padding: 20px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex-direction: column;
}

.navbar-menu.active {
  display: flex;
}

.nav-link-mobile {
  font-family: var(--font-body);
  color: var(--color-black);
  font-size: var(--font-size-body-xl);
  font-weight: 500;
  padding: 16px 30px;
  display: block;
}

.nav-link-mobile.w--current {
  font-weight: 700;
  background-color: var(--color-blue-50);
}

/* Button */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 0px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 1px solid var(--color-black);
  cursor: pointer;
}

.button-primary:hover {
  background-color: #363630;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.button-link {
  margin: 0;
}

/* Hero Section */
.section_hero {
  width: 100%;
  padding: 100px 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.hero_container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.column-left {
  max-width: 870px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-bg-pattern {
  flex: 0 0 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-pattern img {
  width: 100%;
  max-width: 550px;
  height: auto;
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Subcompanies Cards Section */
.section_subcompanies {
  width: 100%;
  padding: 80px 60px 120px 60px;
  display: flex;
  justify-content: center;
}

.subcompanies_container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.subcompany-card {
  width: 100%;
}

/* Card IN (For Developers) */
.card-in {
  border: 0.5px solid var(--color-black);
  background-color: var(--color-white);
  background-image: linear-gradient(270deg, var(--color-blue-100), var(--color-white));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px 50px 80px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-in:hover, .card-cn:hover, .card-da:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Card CN (The Fund) */
.card-cn {
  border: 0.5px solid var(--color-black);
  background-color: var(--color-white);
  background-image: linear-gradient(270deg, var(--color-purple-100), var(--color-white));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px 50px 80px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Card DA (Products) */
.card-da {
  border: 0.5px solid var(--color-black);
  background-color: var(--color-white);
  background-image: linear-gradient(270deg, var(--color-green-50), var(--color-white));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px 50px 80px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.card_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 650px;
}

.card_info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card_info .heading {
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
}

.card_info .h3 {
  font-size: 32px;
  line-height: 40px;
}

.card_icon {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_icon .icon {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Inner Page Layouts */
.section_page-desk {
  width: 100%;
  padding: 80px 60px 120px 60px;
  display: flex;
  justify-content: center;
}

.page-desk_conteiner {
  max-width: 1600px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.page-desk_info {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.page-desk_icon-in, .page-desk_icon-cn, .page-desk_icon-da {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.icon-big {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* CTA Card Banners */
.page-desk_cta-in {
  border-left: 4px solid var(--color-blue-500);
  background-color: var(--color-blue-50);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.page-desk_cta-cn {
  border-left: 4px solid var(--color-purple-500);
  background-color: var(--color-purple-50);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.page-desk_cta-da {
  border-left: 4px solid var(--color-green-500);
  background-color: var(--color-green-50);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.cta_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  padding-left: 24px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.body-l-list {
  font-family: var(--font-body);
  font-size: var(--font-size-body-l);
  line-height: var(--line-height-body-l);
  color: var(--color-gray);
}

/* Footer */
.footer {
  width: 100%;
  border-top: 0.5px solid var(--color-black);
  background-color: var(--color-white);
  padding: 80px 60px 60px 60px;
  margin-top: auto;
}

.footer_container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer_first-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer_brand .logo img {
  height: 36px;
}

.footer_links {
  display: flex;
  gap: 32px;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.footer-link:hover {
  color: var(--color-blue-500);
}

.footer_second-column {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  border-top: 0.5px solid #e0e0e0;
  padding-top: 40px;
}

.footer-info-text {
  max-width: 900px;
}

.footer-copyright {
  white-space: nowrap;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  :root {
    --font-size-h1: 44px;
    --line-height-h1: 52px;
    --font-size-h2: 36px;
    --line-height-h2: 44px;
    --font-size-h3: 30px;
    --line-height-h3: 38px;
    --font-size-h4: 26px;
    --line-height-h4: 34px;
    --font-size-h5: 22px;
    --line-height-h5: 30px;
    --font-size-body-xl: 18px;
    --line-height-body-xl: 28px;
    --font-size-body-l: 16px;
    --line-height-body-l: 26px;
  }

  .navbar_top {
    height: 80px;
    padding: 0 24px;
  }

  .navbar-links {
    display: none;
  }

  .navbar_icon {
    display: flex;
  }

  .section_hero {
    padding: 60px 24px;
  }

  .hero_container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-bg-pattern {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .section_subcompanies {
    padding: 40px 24px 80px 24px;
  }

  .card-in, .card-cn, .card-da {
    padding: 36px 28px;
  }

  .card_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .card_icon {
    flex: none;
    width: 100%;
    max-width: 240px;
  }

  .section_page-desk {
    padding: 40px 24px 80px 24px;
  }

  .page-desk_conteiner {
    flex-direction: column;
    gap: 40px;
  }

  .page-desk_info {
    width: 100%;
  }

  .page-desk_icon-in, .page-desk_icon-cn, .page-desk_icon-da {
    width: 100%;
  }

  .footer {
    padding: 60px 24px 40px 24px;
  }

  .footer_first-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer_second-column {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
