/* Base & Typography */
:root {
  --mint-bg-black: #000000;
  --mint-bg-dark-grey: #111111;
  --mint-text-white: #ffffff;
  --mint-text-light-grey: #eaeaea;
  --mint-text-medium-grey: #a0a0a0;
  --mint-border-dark: #333333;
  --mint-success-color: #10b981;
  --mint-code-bg: rgba(255, 255, 255, 0.08);
}

.mint-page-single-file {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: var(--mint-bg-black);
  color: var(--mint-text-light-grey);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

:root {
  font-size: 10px;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 1.6rem;
  background: #000;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
button,
input,
textarea,
select {
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #fff;
  cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h5,
p {
  margin: 0;
  font-weight: normal;
}

.button {
  border: none;
  background: none;
  outline: none;
}

.container,
.container2 {
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
}

.container2 {
  max-width: 1400px;
}

.animated__link {
  background: rgba(196, 220, 255, 0.15);
  padding: 2.35rem 2rem;
  border-radius: 14px;
  position: relative;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  transition: background 0.5s linear;
}

.animated__wrap {
  border-radius: 10px;
  -webkit-mask: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #fff)
      )
      content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff))
      content-box,
    -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  position: absolute;
  display: inline-block;
  inset: 0 0 0 0;
  padding: 1px;
  overflow: hidden;
}

.animated__elem {
  background: conic-gradient(
    from 290deg at 50%,
    transparent 0%,
    #fff 20%,
    transparent 25%
  );
  -webkit-animation: anim 5s linear infinite;
  animation: anim 5s linear infinite;
  min-width: 100%;
  min-height: 100%;
  display: inline-block;
  aspect-ratio: 1 / 1;
  inset-inline-start: 50%;
  top: 50%;
  position: absolute;
  pointer-events: none;
}

@-webkit-keyframes anim {
  0% {
    -webkit-transform: translate(-88%, -50%) rotate(0deg);
    transform: translate(-88%, -50%) rotate(0deg);
  }
  33% {
    -webkit-transform: translate(-12%, -50%) rotate(0deg);
    transform: translate(-12%, -50%) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-12%, -50%) rotate(180deg);
    transform: translate(-12%, -50%) rotate(180deg);
  }
  83% {
    -webkit-transform: translate(-88%, -50%) rotate(180deg);
    transform: translate(-88%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-88%, -50%) rotate(360deg);
    transform: translate(-88%, -50%) rotate(360deg);
  }
}

@keyframes anim {
  0% {
    -webkit-transform: translate(-88%, -50%) rotate(0deg);
    transform: translate(-88%, -50%) rotate(0deg);
  }
  33% {
    -webkit-transform: translate(-12%, -50%) rotate(0deg);
    transform: translate(-12%, -50%) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(-12%, -50%) rotate(180deg);
    transform: translate(-12%, -50%) rotate(180deg);
  }
  83% {
    -webkit-transform: translate(-88%, -50%) rotate(180deg);
    transform: translate(-88%, -50%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-88%, -50%) rotate(360deg);
    transform: translate(-88%, -50%) rotate(360deg);
  }
}

/* Header */
.header {
  width: 100%;
  padding: 1.9rem 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px;
}

.header__logo {
  width: 100%;
  max-width: 56px;
}

.header__logo .mobile__on {
  display: none;
}

.header__logo img {
  width: 100%;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  border-radius: 16px;
  padding: 0.6rem;
  background: rgba(196, 220, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.header__nav--link {
  padding: 1.3rem 3.9rem;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 10px;
  text-transform: uppercase;
}

.header__logo--wrapper {
  min-width: 172px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__link {
  padding: 1.2rem 3.4rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.menu__button {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(137, 143, 155, 0.15);
}

.menu__button svg {
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mobile__menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(137, 143, 155, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99;
  padding: 3rem 0 4rem 0;
  overflow-y: auto;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateX(-110%);
  -ms-transform: translateX(-110%);
  transform: translateX(-110%);
}

.mobile__menu--wrp {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.mobile__menu--content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}

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

.mobile__menu--cross {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: rgba(196, 220, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  color: #fff;
}

.mobile__menu--cross svg {
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mobile__menu--link {
  width: 100%;
  padding: 0.9rem 1.6rem;
  text-transform: uppercase;
  color: #fff;
  border-radius: 20px;
  background: rgba(137, 143, 155, 0.15);
}

/* Footer */
.footer {
  width: 100%;
  padding: 3rem 0 5.6rem 0;
  position: relative;
}

.footer__inner {
  width: 100%;
  padding: 4rem 10rem 10rem 10rem;
  background: #15171a;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 150px;
}

.footer__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

.footer__logo {
  width: 100%;
  max-width: 96px;
}

.footer__title {
  text-align: center;
  font-size: 9.6rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  width: 100%;
  max-width: 680px;
}

.footer__text {
  width: 100%;
  max-width: 590px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #9ba3ae;
  line-height: 1.27;
}

.footer__social {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
}

.footer__social--link {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__social--icon {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer__content {
  width: 100%;
  padding: 4rem;
  border-radius: 28px;
  background: rgba(196, 220, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

.footer__content--top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 42px;
}

.footer__content--join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__content--title {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 600;
}

.footer__content--text {
  color: #9ba3ae;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.71;
}

.footer__content--button {
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
  color: #000;
  background: #fff;
  padding: 2.4rem 3.4rem;
  border-radius: 14px;
  margin-top: 3.4rem;
  letter-spacing: 1px;
}

.footer__content--navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.footer__content--nav {
  width: 195px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
}

.footer__content--nav--title {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
}

.footer__content--nav--links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 17px;
}

.footer__content--nav--link {
  font-size: 1.7rem;
  color: #9ba3ae;
  font-weight: 500;
  line-height: 1.5;
}

.footer__content--bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.footer__subtext {
  width: 100%;
  max-width: 460px;
  font-size: 1.4rem;
  color: #9ba3ae;
  line-height: 1.71;
  font-weight: 500;
}

.footer__subtext a {
  color: inherit;
  font-size: inherit;
}

.footer__copy {
  font-size: 1.7rem;
  font-weight: 500;
  color: #9ba3ae;
  line-height: 1.5;
  padding-right: 5.4rem;
}

@media (any-hover: hover) {
  a,
  button {
    cursor: pointer;
  }

  a.footer__content--nav--link:hover,
  .footer__subtext a:hover {
    color: #fff;
  }

  .animated__link:hover {
    background: #7d63eb;
  }

  .header__nav--link:hover {
    background: rgba(196, 220, 255, 0.15);
  }
}

/* Responsive */
@media (max-width: 1420px) {
  .container2 {
    max-width: 1180px;
  }

  .footer__inner {
    padding: 4rem;
  }

  .footer__title {
    font-size: 7.6rem;
    max-width: 540px;
  }

  .header__logo--wrapper {
    min-width: unset;
  }

  .header__nav {
    gap: 16px;
  }
}

@media (max-width: 998px) {
  .container,
  .container2 {
    max-width: 748px;
  }

  .footer__inner {
    border-radius: 35px;
    padding: 2.4rem;
    gap: 100px;
  }

  .footer__content {
    padding: 4rem 2.4rem;
  }

  .footer__logo {
    max-width: 75px;
  }

  .footer__wrapper {
    gap: 35px;
  }

  .footer__content--nav {
    width: 160px;
  }

  .footer__content--nav--link {
    font-size: 1.6rem;
  }

  .footer__content--bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .footer__subtext {
    max-width: 100%;
  }

  .header__nav,
  .header__link .mobile__off {
    display: none;
  }

  .menu__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mobile__menu.active {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__logo .mobile__off {
    display: none;
  }

  .header__logo .mobile__on {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__logo {
    max-width: 112px;
  }

  .footer__copy {
    padding-right: 1.4rem;
  }
}

@media (max-width: 768px) {
  .container,
  .container2 {
    max-width: 460px;
  }

  .footer__title {
    font-size: 4rem;
    max-width: 285px;
    margin-top: 1rem;
  }

  .footer__text {
    font-size: 1.4rem;
  }

  .footer__logo {
    max-width: 45px;
  }

  .footer__wrapper {
    gap: 12px;
  }

  .footer__social {
    margin-top: 2rem;
    gap: 29px;
  }

  .footer__social--link {
    width: 36px;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer__inner {
    padding: 1.2rem 0.9rem;
    border-radius: 15px;
  }

  .footer__content {
    padding: 2.4rem 1.2rem;
    border-radius: 7px;
  }

  .footer__content--top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__content--navs {
    width: 100%;
    justify-content: space-between;
  }

  .footer__content--nav {
    width: auto;
  }

  .footer__content--join {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }

  .footer__content--button {
    margin-top: 0;
  }

  .footer__inner {
    gap: 60px;
  }

  .header {
    padding: 1.6rem 0;
  }

  .animated__link {
    font-size: 1.4rem;
  }

  .footer__copy {
    padding-right: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container,
  .container2 {
    max-width: 100%;
    padding: 0rem 1.2rem;
  }

  .footer__content--nav--title,
  .footer__content--nav--link,
  .footer__subtext,
  .footer__copy {
    font-size: 1.2rem;
  }

  .footer__content--nav--links {
    gap: 12px;
  }

  .footer__inner {
    gap: 32px;
  }

  .footer__text {
    max-width: 274px;
  }

  .footer__content--button {
    padding: 1.3rem 3.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    line-height: auto;
    background: rgba(196, 220, 255, 0.15);
  }

  .header__link {
    padding: 0.8rem 1.2rem;
    text-transform: capitalize;
  }

  .footer__copy {
    padding-right: 1rem;
  }
}

@media (max-width: 390px) {
  .footer__copy {
    padding-right: 1rem;
  }
}

/* Ecosystem Styles */
.ecosystem-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem 0;
  gap: 1rem;
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
}

.ecosystem-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9.6rem 1.6rem 1.6rem;
  gap: 9.6rem;
  width: 100%;
  height: 48.5rem;
  background: linear-gradient(180deg, #7d63eb 0%, #060607 100%);
  border-radius: 2.4rem;
}

.ecosystem-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24.8rem;
  gap: 1.6rem;
  width: 100%;
  height: 24.3rem;
}

.ecosystem-hero__title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 8rem;
  line-height: 8.2rem;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.2rem;
  color: #ffffff;
  margin: 0;
}

.ecosystem-hero__subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0 10.4rem;
  gap: 1rem;
  width: 51.6rem;
  height: 6.3rem;
}

.ecosystem-hero__subtitle-text {
  width: 30.8rem;
  height: 6.3rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.1rem;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: -0.01rem;
  color: #ffffff;
  opacity: 0.7;
  margin: 0;
}

.ecosystem-categories__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: flex-start;
  padding: 0;
  gap: 0.8rem;
  width: 100%;
  height: 3.4rem;
}

.ecosystem-category-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 1.2rem;
  gap: 1rem;
  height: 3.4rem;
  background: rgba(196, 220, 255, 0.15);
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.6rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.01rem;
  text-transform: capitalize;
  color: #ffffff;
  flex-grow: 1;
}

.ecosystem-category-btn.active {
  background: #ffffff;
  color: #000000;
}

.ecosystem-category-btn:hover {
  background: rgba(196, 220, 255, 0.25);
}

.ecosystem-partners {
  padding: 1.6rem 0;
  background: #000;
}

.ecosystem-partners__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
}

.ecosystem-partners-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
  gap: 1.6rem;
  width: 100%;
  max-width: 114rem;
  margin: 0 auto;
}

/* Partner Card */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
  gap: 1rem;
  min-width: 24.2rem;
  max-width: 27.3rem;
  height: 24.5rem;
  background: rgba(196, 220, 255, 0.15);
  border-radius: 2.4rem;
  flex: none;
  flex-grow: 1;
  transition: all 0.3s ease;
}

.partner-card:hover {
  background: rgba(196, 220, 255, 0.25);
  transform: translateY(-0.4rem);
}

/* Partner Card Content */
.partner-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 1.6rem;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

/* Partner Card Header */
.partner-card__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 3.1rem;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

/* Partner Card Icon */
.partner-card__icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.2rem;
  gap: 1rem;
  width: 4.8rem;
  height: 4.8rem;
  flex: none;
  flex-grow: 0;
}

.partner-card__icon img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
  flex: none;
  flex-grow: 0;
}

/* Partner Card Action Button */
.partner-card__action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 4rem;
  flex: none;
  flex-grow: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partner-card__action:hover {
  background: rgba(255, 255, 255, 0.1);
}

.partner-card__action svg {
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  flex-grow: 0;
}

/* Partner Card Info */
.partner-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 1.6rem;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

/* Partner Card Title */
.partner-card__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 0.8rem;
  width: 21.7rem;
  height: 5.3rem;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

/* Partner Card Name */
.partner-card__name {
  width: 21.7rem;
  height: 2.5rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.5rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.04px;
  color: #ffffff;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

/* Partner Card Badge */
.partner-card__badge {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.2rem 0.8rem;
  gap: 1rem;
  height: 2rem;
  background: rgba(196, 220, 255, 0.15);
  border-radius: 0.6rem;
  flex: none;
  flex-grow: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.6rem;
  letter-spacing: 0.1px;
  color: #ffffff;
  width: fit-content;
}

/* Partner Card Description */
.partner-card__description {
  width: 21.7rem;
  height: 8rem;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.6rem;
  letter-spacing: 0.1px;
  color: #ffffff;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

/* Mobile Responsive */
@media (max-width: 998px) {
  .ecosystem-hero__content {
    justify-content: center;
    align-items: flex-start;
    padding: 0;
  }

  .ecosystem-hero__subtitle-text {
    text-align: left;
  }

  .ecosystem-hero {
    padding: 8rem 0 6rem 0;
    border-radius: 0 0 2.5rem 2.5rem;
  }

  .ecosystem-hero__title {
    font-size: 6.4rem;
    text-align: left;
  }

  .ecosystem-hero__subtitle {
    font-size: 1.8rem;
    padding: 0;
    justify-content: flex-start;
  }

  .ecosystem-categories__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .ecosystem-partners {
    padding: 0 1.6rem;
  }

  .ecosystem-partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2.4rem;
    max-width: none;
  }

  .partner-card {
    padding: 1.4rem;
    height: 22rem;
    max-width: none;
    min-width: 18rem;
    width: 100%;
  }

  .partner-card__content {
    width: 100%;
    height: auto;
  }

  .partner-card__header {
    width: 100%;
    gap: 2rem;
  }

  .partner-card__info {
    width: 100%;
  }

  .partner-card__title {
    width: 100%;
  }

  .partner-card__name {
    width: 100%;
    font-size: 1.8rem;
    line-height: 2.2rem;
  }

  .partner-card__description {
    width: 100%;
    height: auto;
    min-height: 6rem;
  }
}

@media (max-width: 768px) {
  .ecosystem-hero {
    padding: 6rem 0 4rem 0;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .ecosystem-hero__inner {
    gap: 1.6rem;
    text-align: left;
    align-items: flex-start;
  }

  .ecosystem-hero__title {
    font-size: 4rem;
    line-height: 0.9;
    text-align: left;
  }

  .ecosystem-hero__subtitle {
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: left;
    max-width: none;
  }

  .ecosystem-categories__buttons {
    gap: 0.8rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .ecosystem-category-btn {
    flex-grow: 0;
    padding: 1rem 1.6rem;
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .ecosystem-partners-grid {
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
  }

  .partner-card {
    padding: 1.6rem;
    height: auto;
    min-height: 20rem;
    width: 100%;
  }

  .partner-card__header {
    gap: 1.6rem;
  }

  .partner-card__name {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .partner-card__description {
    font-size: 1.2rem;
    line-height: 1.5rem;
    -webkit-line-clamp: 4;
  }
}

@media (max-width: 480px) {
  .ecosystem-hero {
    padding: 4rem 0 3rem 0;
  }

  .ecosystem-hero__title {
    font-size: 3.2rem;
  }

  .ecosystem-hero__subtitle {
    font-size: 1.4rem;
  }

  .ecosystem-categories__buttons {
    gap: 0.5rem;
    width: 100%;
  }

  .ecosystem-category-btn {
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
  }

  .partner-card {
    padding: 1.2rem;
    border-radius: 1.6rem;
    min-height: 18rem;
  }

  .partner-card__icon {
    width: 4rem;
    height: 4rem;
  }

  .partner-card__icon img {
    width: 3.6rem;
    height: 3.6rem;
  }

  .partner-card__action {
    width: 3.2rem;
    height: 3.2rem;
  }

  .partner-card__action svg {
    width: 2rem;
    height: 2rem;
  }

  .partner-card__name {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .partner-card__badge {
    font-size: 1.1rem;
    padding: 0.1rem 0.6rem;
  }

  .partner-card__description {
    font-size: 1.1rem;
    line-height: 1.4rem;
    -webkit-line-clamp: 3;
  }
}
