/* UTILITY CLASSES */
.is-hidden {
  display: none !important;
}

/* GLOBAL RESET + BASE */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  -webkit-overscroll-behavior: none;
}

body {
  font-family: "Space Grotesk", "Inter", "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  background: #000;
  overflow-x: hidden;
}

p,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
}

/* GRID */
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  /* padding: 0 80px; */
  padding: 0 40px;
}

@media (max-width: 1375px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding: 160px 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 99px;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 45px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  transform: skewX(-45deg);
  animation: shine 6s infinite;
  pointer-events: none;
  z-index: 9;
}

@keyframes shine {
  0% {
    left: -60px;
  }
  10% {
    left: 110%;
  }
  100% {
    left: 150%;
  }
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--outline::before {
  animation: none !important;
  display: none;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.download-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 36px;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.auth-btn {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 36px;
  min-width: fit-content;
}

.auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(91, 43, 255, 0.4);
}
.about-liberion {
  position: relative;
  background: #0b0d11;
  background-image: linear-gradient(
      236.04489090255916deg,
      rgba(117, 66, 255, 0) 38.734%,
      rgba(117, 66, 255, 0.05) 82.656%
    ),
    linear-gradient(
      106.22494399972666deg,
      rgba(117, 66, 255, 0) 44.417%,
      rgba(117, 66, 255, 0.1) 100%
    ),
    linear-gradient(90deg, rgba(11, 13, 17, 1) 0%, rgba(11, 13, 17, 1) 100%);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.about-liberion .container {
  position: relative;
  z-index: 2;
}

.about-liberion__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.about-liberion__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 720px;
  flex-shrink: 0;
}

.about-liberion__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.about-liberion__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.about-liberion__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  
}

.about-liberion__description p {
  margin: 0;
}

.about-liberion__founder {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #8b56fe !important;
}

.about-liberion__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.about-liberion__contact-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.about-liberion__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.about-liberion__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #5b2bff;
  width: 320px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-liberion__contact-item:hover {
  background: rgba(91, 43, 255, 0.1);
  border-color: rgba(91, 43, 255, 0.8);
  transform: translateY(-1px);
}

.about-liberion__contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5b2bff;
}

.about-liberion__contact-email {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

.about-liberion__visual {
  flex: 1;
  min-height: 400px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.about-liberion__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-liberion__background-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(117, 66, 255, 0.08) 0%,
    rgba(117, 66, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: 40px;
  opacity: 0.1;
}

.about-liberion__background-shape::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(117, 66, 255, 0.15) 0%,
    rgba(117, 66, 255, 0.08) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .about-liberion__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .about-liberion__description {
    font-size: clamp(16px, calc(16px + 4 * ((100vw - 480px) / 720)), 20px);
  }

  .about-liberion__contact-title {
    font-size: clamp(20px, calc(20px + 4 * ((100vw - 480px) / 720)), 24px);
  }

  .about-liberion__contact-email {
    font-size: clamp(18px, calc(18px + 4 * ((100vw - 480px) / 720)), 22px);
  }
}

@media (max-width: 991.98px) {
  .about-liberion {
    padding: 60px 0;
  }

  .about-liberion__wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .about-liberion__content {
    width: 100%;
    max-width: 100%;
    gap: 32px;
  }

  .about-liberion__visual {
    width: 100%;
    min-height: 280px;
  }

  .about-liberion__contact-item {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 767.98px) {
  .about-liberion__wrapper {
    gap: 28px;
  }

  .about-liberion__content {
    gap: 28px;
  }

  .about-liberion__visual {
    min-height: 240px;
    border-radius: 32px;
  }

  .about-liberion__background-shape {
    border-radius: 32px;
  }

  .about-liberion__contact-item {
    padding: 14px;
    border-radius: 16px;
  }

  .about-liberion__contact-icon {
    width: 28px;
    height: 28px;
  }

  .about-liberion__contact-email {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / 255)), 18px);
  }
}

@media (max-width: 575.98px) {
  .about-liberion {
    padding: 40px 0;
  }

  .about-liberion__wrapper {
    gap: 24px;
  }

  .about-liberion__content {
    gap: 24px;
  }

  .about-liberion__title {
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 320px) / 255)), 28px);
  }

  .about-liberion__description {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 255)), 16px);
  }

  .about-liberion__contact-title {
    font-size: clamp(18px, calc(18px + 2 * ((100vw - 320px) / 255)), 20px);
  }

  .about-liberion__visual {
    min-height: 200px;
    border-radius: 24px;
  }

  .about-liberion__background-shape {
    border-radius: 24px;
  }

  .about-liberion__contact-item {
    padding: 12px;
    border-radius: 14px;
    width: 100%;
  }

  .about-liberion__contact-icon {
    width: 24px;
    height: 24px;
  }

  .about-liberion__contact-email {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 255)), 16px);
  }
}

/* Tablet landscape specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .about-liberion__wrapper {
    flex-direction: row;
    gap: 32px;
  }

  .about-liberion__content {
    width: 50%;
    max-width: 50%;
  }

  .about-liberion__visual {
    min-height: 400px;
  }
}
.documents-resources {
  position: relative;
  background: #0b0d11;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.documents-resources .container {
  position: relative;
  z-index: 2;
}

.documents-resources__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.documents-resources__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
  width: 100%;
}

.documents-resources__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.documents-resources__row {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.documents-resources__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  flex: 1;
  min-height: 175px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.documents-resources__card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.documents-resources__card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 175px;
  padding: 16px;
  position: relative;
  z-index: 2;
}

.documents-resources__card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.documents-resources__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
  width: 100%;
}

.documents-resources__card-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
}

.documents-resources__card-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.documents-resources__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 99px;
  border: 1px solid #5b2bff;
  background: transparent;
  color: #8b56fe;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.documents-resources__card-btn:hover {
  background: rgba(139, 86, 254, 0.1);
  color: #a675ff;
  border-color: #7542ff;
  transform: translateY(-1px);
}

.documents-resources__card-btn:active {
  transform: translateY(0);
}

.documents-resources__card-btn--disabled {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}

.documents-resources__card-btn--disabled:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .documents-resources__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .documents-resources__card-title {
    font-size: clamp(18px, calc(18px + 4 * ((100vw - 480px) / 720)), 22px);
  }
}

@media (max-width: 991.98px) {
  .documents-resources {
    padding: 60px 0;
  }

  .documents-resources__wrapper {
    gap: 32px;
  }

  .documents-resources__row {
    flex-direction: column;
    gap: 12px;
  }

  .documents-resources__card-content {
    height: auto;
    min-height: 140px;
    padding: 14px;
  }

  .documents-resources__card-title {
    font-size: 20px;
  }

  .documents-resources__card-description {
    font-size: 15px;
  }

  .documents-resources__card-btn {
    padding: 8px 10px;
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .documents-resources__wrapper {
    gap: 28px;
  }

  .documents-resources__grid {
    gap: 12px;
  }

  .documents-resources__row {
    gap: 10px;
  }

  .documents-resources__card {
    border-radius: 20px;
  }

  .documents-resources__card-content {
    min-height: 120px;
    padding: 12px;
  }

  .documents-resources__card-header {
    gap: 6px;
  }

  .documents-resources__card-title {
    font-size: 18px;
  }

  .documents-resources__card-description {
    font-size: 14px;
  }

  .documents-resources__card-btn {
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  .documents-resources {
    padding: 40px 0;
  }

  .documents-resources__wrapper {
    gap: 24px;
  }

  .documents-resources__title {
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 320px) / 255)), 28px);
  }

  .documents-resources__grid {
    gap: 8px;
  }

  .documents-resources__row {
    gap: 8px;
  }

  .documents-resources__card {
    border-radius: 16px;
  }

  .documents-resources__card-content {
    min-height: 100px;
    padding: 10px;
  }

  .documents-resources__card-header {
    gap: 4px;
  }

  .documents-resources__card-title {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 255)), 16px);
  }

  .documents-resources__card-description {
    font-size: clamp(12px, calc(12px + 1 * ((100vw - 320px) / 255)), 13px);
  }

  .documents-resources__card-btn {
    padding: 4px 6px;
    font-size: 11px;
    border-radius: 12px;
  }
}

/* Tablet landscape specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .documents-resources__row {
    flex-direction: row;
    gap: 12px;
  }

  .documents-resources__card-content {
    height: 160px;
    min-height: 160px;
  }
}
.exploremarketplace {
  background: linear-gradient(
      226.3019542177547deg,
      rgba(117, 66, 255, 0) 34.328%,
      rgba(117, 66, 255, 0.1) 100%
    ),
    linear-gradient(90deg, rgba(18, 17, 29, 1) 0%, rgba(18, 17, 29, 1) 100%);
  color: #fff;
  padding: 80px 0;
}

.exploremarketplace__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.exploremarketplace__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.exploremarketplace__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.exploremarketplace__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.exploremarketplace__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.exploremarketplace__cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.exploremarketplace__btn {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.exploremarketplace__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.exploremarketplace__row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.exploremarketplace__card {
  flex: 1;
  max-width: 416px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  transition: all 0.3s ease;
  cursor: default;
  height: -webkit-fill-available;
  cursor: pointer;
}

.exploremarketplace__card:hover,
.exploremarketplace__card:focus-within {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.exploremarketplace__card:focus-within {
  outline: 2px solid #00e1c7;
  outline-offset: 2px;
}

.exploremarketplace__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.exploremarketplace__card-logo {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.exploremarketplace__logo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  border-radius: 16px;
}

.exploremarketplace__logo-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exploremarketplace__logo-shape {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  opacity: 0.8;
}

.exploremarketplace__logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.exploremarketplace__verification {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.exploremarketplace__verification-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #00e1c7;
}

.exploremarketplace__verification-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.exploremarketplace__card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  flex-grow: 1;
}

.exploremarketplace__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.exploremarketplace__card-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  word-break: break-word;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .exploremarketplace__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .exploremarketplace__row {
    gap: 12px;
  }
}

@media (max-width: 991.98px) {
  .exploremarketplace {
    padding: 60px 0;
  }

  .exploremarketplace__header {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .exploremarketplace__content {
    align-items: center;
    text-align: center;
  }

  .exploremarketplace__title {
    max-width: 100%;
  }

  .exploremarketplace__subtitle {
    max-width: 100%;
  }

  .exploremarketplace__cta {
    justify-content: center;
  }

  .exploremarketplace__row {
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 15px;
    margin: 0 -15px;
  }

  .exploremarketplace__card {
    flex-shrink: 0;
    min-width: 250px;
    scroll-snap-align: start;
  }
}

@media (max-width: 767.98px) {
  .exploremarketplace__wrapper {
    gap: 32px;
  }

  .exploremarketplace__header {
    gap: 20px;
  }

  .exploremarketplace__btn {
    width: 100%;
    min-width: 240px;
  }

  .exploremarketplace__grid {
    gap: 12px;
  }

  .exploremarketplace__row {
    flex-direction: column;
    gap: 16px;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }

  .exploremarketplace__card {
    min-width: 100%;
    scroll-snap-align: none;
  }
}

@media (max-width: 575.98px) {
  .exploremarketplace__wrapper {
    gap: 24px;
  }

  .exploremarketplace__header {
    gap: 16px;
  }

  .exploremarketplace__grid {
    gap: 12px;
  }

  .exploremarketplace__card {
    min-height: 180px;
    padding: 12px;
  }

  .exploremarketplace__card-logo {
    width: 72px;
    height: 72px;
  }

  .exploremarketplace__logo-icon {
    width: 32px;
    height: 32px;
  }

  .exploremarketplace__card-title {
    font-size: 18px;
  }

  .exploremarketplace__verification-text {
    font-size: 12px;
  }

  .exploremarketplace__verification-icon {
    width: 20px;
    height: 20px;
  }
}
.footer {
  background-color: #0b0d11;
  color: white;
}

.footer__main {
  padding: 40px 0;
}

.footer__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer__logo {
  flex-shrink: 0;
  width: 86px;
  height: 100px;
}

.footer__logo svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.footer__content {
  display: flex;
  gap: 40px;
  flex: 1;
  max-width: 720px;
}

.footer__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__column-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: white;
  margin: 0;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer__language {
  flex-shrink: 0;
}

.footer__language-selector {
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  padding: 4px;
  height: 36px;
}

.footer__language-btn {
  width: 32px;
  height: 28px;
  border: none;
  border-radius: 99px;
  background: transparent;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer__language-btn--active {
  background: linear-gradient(138.81deg, #5b2bff 0%, #a970ff 100%);
}

.footer__language-btn:hover:not(.footer__language-btn--active) {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__bottom {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer__content {
    max-width: none;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer__main {
    padding: 32px 0;
  }

  .footer__content {
    flex-direction: column;
    gap: 24px;
  }

  .footer__wrapper {
    gap: 24px;
  }

  .footer__language {
    order: -1;
  }
}

@media (max-width: 480px) {
  .footer__main {
    padding: 24px 0;
  }

  .footer__logo {
    width: 60px;
    height: 70px;
  }

  .footer__column-title {
    font-size: 16px;
  }

  .footer__nav-link {
    font-size: 13px;
  }

  .footer__copyright {
    font-size: 12px;
    padding: 0 16px;
  }
}
.for-developers {
  position: relative;
  background: #0b0d11;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.for-developers .container {
  position: relative;
  z-index: 2;
}

.for-developers__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.for-developers__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.for-developers__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  flex: 1;
  width: 100%;
}

.for-developers__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
  width: 100%;
}

.for-developers__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
}

.for-developers__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.for-developers__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 99px;
  border: 1px solid #5b2bff;
  background: transparent;
  color: #8b56fe;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.for-developers__github {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.for-developers__github-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 24px;
  height: 24px;
}

.for-developers__cards {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.for-developers__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  flex: 1;
  min-width: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.for-developers__card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.for-developers__card-content {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 100%;
}

.for-developers__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  flex: 1;
  
}

.for-developers__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .for-developers__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .for-developers__card-title {
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .for-developers {
    padding: 60px 0;
  }

  .for-developers__header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .for-developers__text {
    align-items: flex-start;
    text-align: left;
  }

  .for-developers__actions {
    align-self: flex-start;
  }

  .for-developers__card-title {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .for-developers__wrapper {
    gap: 32px;
  }

  .for-developers__header {
    gap: 20px;
  }

  .for-developers__actions {
    flex-wrap: wrap;
    gap: 6px;
  }

  .for-developers__btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .for-developers__github {
    width: 44px;
    height: 44px;
  }

  .for-developers__cards {
    gap: 12px;
  }

  .for-developers__card-content {
    padding: 20px;
  }

  .for-developers__card-title {
    font-size: 20px;
  }

  .for-developers__card-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 575.98px) {
  .for-developers {
    padding: 40px 0;
  }

  .for-developers__wrapper {
    gap: 24px;
  }

  .for-developers__text {
    gap: 12px;
  }

  .for-developers__title {
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 320px) / 255)), 28px);
  }

  .for-developers__description {
    font-size: 14px;
  }

  .for-developers__actions {
    gap: 4px;
  }

  .for-developers__btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .for-developers__github {
    width: 40px;
    height: 40px;
  }

  .for-developers__github-icon {
    width: 20px;
    height: 20px;
  }

  .for-developers__card-content {
    padding: 16px;
    gap: 12px;
  }

  .for-developers__card-title {
    font-size: 18px;
  }

  .for-developers__card-icon {
    width: 28px;
    height: 28px;
  }
}
.for-investors {
  position: relative;
  background: #0b0d11;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.for-investors .container {
  position: relative;
  z-index: 2;
}

.for-investors__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  min-height: 400px;
}

.for-investors__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 720px;
  width: 100%;
  flex-shrink: 0;
}

.for-investors__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.for-investors__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.for-investors__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  
}

.for-investors__description p {
  margin: 0;
}

.for-investors__cta-btn {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
}

.for-investors__visual {
  flex: 1;
  height: 280px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.for-investors__background-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(117, 66, 255, 0.05) 0%,
    rgba(117, 66, 255, 0.02) 50%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border-radius: 40px;
}

.for-investors__background-shape::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(117, 66, 255, 0.1) 0%,
    rgba(117, 66, 255, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .for-investors__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .for-investors__description {
    font-size: clamp(16px, calc(16px + 4 * ((100vw - 480px) / 720)), 20px);
  }
}

@media (max-width: 991.98px) {
  .for-investors {
    padding: 60px 0;
  }

  .for-investors__wrapper {
    flex-direction: column;
    gap: 32px;
    min-height: auto;
  }

  .for-investors__content {
    max-width: 100%;
    gap: 32px;
  }

  .for-investors__visual {
    width: 100%;
    height: 240px;
  }

  .for-investors__cta-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .for-investors__wrapper {
    gap: 28px;
  }

  .for-investors__content {
    gap: 28px;
  }

  .for-investors__visual {
    height: 200px;
    border-radius: 32px;
  }

  .for-investors__background-shape {
    border-radius: 32px;
  }

  .for-investors__cta-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .for-investors {
    padding: 40px 0;
  }

  .for-investors__wrapper {
    gap: 24px;
  }

  .for-investors__content {
    gap: 24px;
  }

  .for-investors__title {
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 320px) / 255)), 28px);
  }

  .for-investors__description {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 255)), 16px);
  }

  .for-investors__visual {
    height: 180px;
    border-radius: 24px;
  }

  .for-investors__background-shape {
    border-radius: 24px;
  }

  .for-investors__cta-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Tablet landscape specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .for-investors__wrapper {
    flex-direction: row;
    gap: 32px;
  }

  .for-investors__content {
    max-width: 50%;
  }

  .for-investors__visual {
    height: 280px;
  }
}
/* Header styles matching Figma design exactly */
.header {
  background: rgba(255, 255, 255, 0.03);
  position: fixed;
  width: 100%;
  z-index: 4;
  backdrop-filter: blur(10px);
}

.header__container {
  width: 100%;
  padding: 0 80px;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  width: 100%;
  gap:10px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo svg:first-child {
  height: 32px;
  width: 27px;
  color: #8960ff;
  margin: 0;
}

.header__logo svg:last-child {
  height: 23px;
  width: 144px;
  color: #8960ff;
  margin: 0;
}

.header__logo svg path {
  fill: currentColor;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

/* Desktop Navigation */
.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 16px;
  margin: 0;
  padding: 0;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}

.header__nav-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__nav-link {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Language Switcher - exact match to Figma */
.header__lang-switcher {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  padding: 4px;
  display: flex;
  height: 36px;
  align-items: center;
  flex-shrink: 0;
}

.header__lang-btn {
  height: 28px;
  width: 32px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__lang-btn.active {
  background: linear-gradient(
    138.81407483429035deg,
    rgba(91, 43, 255, 1) 0%,
    rgba(169, 112, 255, 1) 100%
  );
}

.header__lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

/* Hide download button in desktop nav */
.header__nav-list .download-lib-btn {
  display: none;
}

/* Header auth button styling */
/* .header__auth-btn button {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 36px;
  min-width: fit-content;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
} */

/* Burger Menu */
.header__burger {
  width: 32px;
  height: 32px;
  background-color: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;
  z-index: 6;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__burger--open {
  display: none;
}

.header__burger--close {
  width: 32px;
  height: 32px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;
  z-index: 6;
  position: absolute;
  top: 12px;
  right: 20px;
  border-radius: 8px;
}

/* Base styles for close button spans */
.header__burger--close span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  transition: all 0.3s ease;
  position: absolute;
}

/* Close button X shape */
.header__burger--close span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__burger--close span:nth-child(2) {
  opacity: 0;
}
.header__burger--close span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* New X close icon */
.header__close {
  width: 32px;
  height: 32px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;
  z-index: 6;
  position: absolute;
  top: 12px;
  right: 20px;
  border-radius: 8px;
  font-size: 24px;
  color: white;
  font-weight: 300;
}

.header__close:hover {
  opacity: 0.7;
}
@media (max-width: 1480px) {
  .header__container {
    padding: 0 40px;
  }
}

/* Desktop Navigation - ensure visibility */
@media (min-width: 1376px) {
  .header__nav {
    display: flex;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header__container {
    padding: 0 40px;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .header__container {
    padding: 0 30px;
  }

  .header__right {
    gap: 8px;
    padding-right: 42px;
  }
  .header__burger {
    /* padding-top: 12px; */
  }
}

@media (max-width: 1375px) {
  .header__container {
    padding: 0 20px;
  }

  .header__nav {
    display: none;
  }

  .header__auth {
    display: none;
  }

  .header__nav.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 5;
    padding: 80px 20px 20px;
  }

  .header__nav.open .header__nav-list {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .header__nav.open .header__nav-item {
    padding: 0;
  }

  .header__nav.open .header__nav-link {
    font-size: 18px;
    padding: 12px 0;
  }

  .header__burger--open {
    display: flex !important;
  }

  .header__burger--open.is-hidden,
  .header__burger--close.is-hidden {
    display: none !important;
  }

  .header__right {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 0 15px;
  }

  .header__wrapper {
    padding: 12px 0;
    min-height: 56px;
    justify-content: space-between;
  }

  .header__logo {
    height: 28px;
    width: 158px;
    padding-left: 10px;
  }

  .header__right {
    gap: 4px;
    padding-right: 40px;
  }

  .header__lang-switcher {
    height: 32px;
  }

  .header__lang-btn {
    height: 24px;
    width: 28px;
    font-size: 12px;
  }

  .header__passport-btn {
    font-size: 12px;
    padding: 8px 10px;
  }

  .header__nav.open .header__nav-list .download-lib-btn {
    display: inline-flex;
    max-width: 80%;
    margin: 0 auto;
    width: 280px;
  }
}
@media (max-width: 576px) {
  .header__right {
    gap: 4px;
    padding-right: 0;
  }
}

/* Ensure header overrides global styles */
.header {
  background: rgba(255, 255, 255, 0.03) !important;
}
/* Mobile-specific menu styles - desktop styles are in header.css */

/* Mobile burger override - fix span color */
.header__burger span {
  background-color: white;
}

/* Mobile menu specific overrides */
.header__nav.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 5;
  padding: 80px 20px 20px;
}

.header__nav.open .header__nav-list {
  flex-direction: column;
  text-align: center;
  gap: 24px;
}

.header__nav.open .header__nav-item {
  padding: 0;
}

.header__nav.open .header__nav-link {
  font-size: 18px;
  padding: 12px 0;
}

/* Состояния кнопок (видимость по брейкпоинту см. ниже) */
.header__burger--open {
  display: none;
}

.header__burger--close {
  width: 32px;
  height: 32px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;
  z-index: 6;
  position: absolute;
  top: 13px;
  right: 16px;
}

/* Base styles for close button spans */
.header__burger--close span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Крестик при открытии */
.header__burger--close span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__burger--close span:nth-child(2) {
  opacity: 0;
}
.header__burger--close span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Брэйкпоинты как в исходных стилях */
@media (max-width: 1375px) {
  .header__nav {
    display: none; /* по умолчанию скрыто */
  }
  .header__burger--open {
    display: flex; /* показать бургер */
  }
}

@media (min-width: 1376px) and (max-width: 1699px) {
  .header__burger {
    display: none; /* на десктопе бургер не нужен */
  }
  .header__nav {
    display: block; /* десктопная навигация видима */
    position: static;
  }

  .header__nav-list .header__nav-item--user {
    display: none !important;
  }

  .header__nav-item--wide-only {
    display: none !important;
  }
}

@media (min-width: 1700px) {
  .header__burger {
    display: none; /* на десктопе бургер не нужен */
  }
  .header__nav {
    display: block; /* десктопная навигация видима */
    position: static;
  }

  .header__nav-list .header__nav-item--user {
    display: none !important;
  }

  .header__nav-item--wide-only {
    display: flex !important;
  }
}

@media (max-width: 1375px) {
  .header__burger--close {
    display: flex !important;
    position: absolute;
    top: 13px;
    right: 16px;
    z-index: 6;
  }
}

@media (max-width: 1375px) {
  .header__nav-list .download-lib-btn {
    display: inline-flex !important;
  }
}

@media (max-width: 572px) {
  .header__nav-list .download-lib-btn {
    display: inline-flex !important;
    max-width: 80%;
    margin: 0 auto;
    width: 320px;
  }
}
.libercoin {
  background: linear-gradient(
      180deg,
      rgba(117, 66, 255, 0) 0%,
      rgba(117, 66, 255, 0.05) 100%
    ),
    linear-gradient(90deg, rgba(11, 13, 17, 1) 0%, rgba(11, 13, 17, 1) 100%);
  color: #fff;
  padding: 80px 0;
}

.libercoin__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.libercoin__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

.libercoin__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  min-width: 0;
}

.libercoin__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.libercoin__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.libercoin__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  
}

.libercoin__buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.libercoin__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 99px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.libercoin__btn--primary {
  background: #7542ff;
  color: #fff;
}

.libercoin__btn--secondary {
  background: transparent;
  color: #8b56fe;
  border: 1px solid #5b2bff;
}

.libercoin__btn--secondary:hover,
.libercoin__btn--secondary:focus {
  background: rgba(117, 66, 255, 0.1);
  border-color: #7542ff;
  color: #a673ff;
}

.libercoin__visual {
  position: relative;
  width: 610px;
  height: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.libercoin__coin {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #ffd700 0%,
    #ffed4e 25%,
    #ffd700 50%,
    #ffcc02 75%,
    #e6ac00 100%
  );
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.3),
    inset 0 -10px 20px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.libercoin__coin-symbol {
  width: 120px;
  height: 140px;
  color: #8b4513;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(4);
}

.libercoin__usecases {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor:pointer;
}

.libercoin__usecase {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  min-height: 64px;
  cursor: default;
}

.libercoin__usecase:hover,
.libercoin__usecase:focus-within {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.libercoin__usecase-icon {
  width: 32px;
  height: 32px;
  color: #7542ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.libercoin__usecase-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .libercoin__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .libercoin__visual {
    width: 500px;
    height: 280px;
  }

  .libercoin__coin {
    width: 240px;
    height: 240px;
  }

  .libercoin__coin-symbol {
    width: 100px;
    height: 100px;
  }

  .libercoin__usecases {
    gap: 8px;
  }
}

@media (max-width: 991.98px) {
  .libercoin {
    padding: 60px 0;
  }

  .libercoin__content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .libercoin__text {
    align-items: center;
    text-align: center;
    order: 2;
  }

  .libercoin__header {
    align-items: center;
    text-align: center;
  }

  .libercoin__visual {
    order: 1;
    width: 400px;
    height: 240px;
  }

  .libercoin__coin {
    width: 200px;
    height: 200px;
  }

  .libercoin__coin-symbol {
    width: 80px;
    height: 80px;
    transform: scale(3);
  }

  .libercoin__buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .libercoin__usecases {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 15px;
    margin: 0 -15px;
  }

  .libercoin__usecase {
    flex-shrink: 0;
    min-width: 180px;
    scroll-snap-align: start;
  }
}

@media (max-width: 767.98px) {
  .libercoin__wrapper {
    gap: 32px;
  }

  .libercoin__content {
    gap: 32px;
  }

  .libercoin__text {
    gap: 24px;
  }

  .libercoin__visual {
    width: 320px;
    height: 200px;
  }

  .libercoin__coin {
    width: 160px;
    height: 160px;
  }

  .libercoin__coin-symbol {
    width: 64px;
    height: 64px;
    transform: scale(2);
  }

  .libercoin__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .libercoin__btn {
    width: 100%;
    min-width: 240px;
  }

  .libercoin__usecases {
    flex-direction: column;
    gap: 12px;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }

  .libercoin__usecase {
    min-width: 100%;
    scroll-snap-align: none;
  }

  .libercoin__usecase-title {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .libercoin__wrapper {
    gap: 24px;
  }

  .libercoin__content {
    gap: 24px;
  }

  .libercoin__text {
    gap: 20px;
  }

  .libercoin__visual {
    width: 280px;
    height: 180px;
  }

  .libercoin__coin {
    width: 140px;
    height: 140px;
  }

  .libercoin__coin-symbol {
    width: 56px;
    height: 56px;
  }

  .libercoin__usecase {
    padding: 12px;
    min-height: 56px;
  }

  .libercoin__usecase-icon {
    width: 28px;
    height: 28px;
  }

  .libercoin__usecase-title {
    font-size: 18px;
  }
}
.liberion-unites {
  position: relative;
  background: #0b0d11;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.liberion-unites__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.liberion-unites__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      232.2deg,
      rgba(117, 66, 255, 0) 38.734%,
      rgba(117, 66, 255, 0.05) 82.656%
    ),
    linear-gradient(
      108.53deg,
      rgba(117, 66, 255, 0) 44.417%,
      rgba(117, 66, 255, 0.1) 100%
    );
  opacity: 0.3;
}

.liberion-unites .container {
  position: relative;
  z-index: 2;
}

.liberion-unites__wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.liberion-unites__content {
  flex: 0 0 680px;
  display: flex;
  align-items: center;
  width: 680px;
}

.liberion-unites__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.liberion-unites__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
  width: 100%;
}

.liberion-unites__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  width: 100%;
  
}

.liberion-unites__description p {
  margin: 0 0 1em 0;
}

.liberion-unites__description p:last-child {
  margin-bottom: 0;
}

.liberion-unites__visual {
  flex: 0 0 520px;
  display: flex;
  align-items: center;
  height: 100%;
}

.liberion-unites__image {
  width: 520px;
  height: 400px;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.liberion-unites__main-image {
  margin-top: 70px;
}

.liberion-unites__image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(117, 66, 255, 0.1) 0%,
      rgba(117, 66, 255, 0.05) 100%
    ),
    url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTIwIiBoZWlnaHQ9IjQwMCIgdmlld0JveD0iMCAwIDUyMCA0MDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSI1MjAiIGhlaWdodD0iNDAwIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMTZfNTg3KSIgZmlsbC1vcGFjaXR5PSIwLjEiLz4KPHN2ZyB4PSIyMzAiIHk9IjE3MCIgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIiB2aWV3Qm94PSIwIDAgNjAgNjAiIGZpbGw9Im5vbmUiPgo8Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSIyNSIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMikiIHN0cm9rZS13aWR0aD0iMiIvPgo8Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSIxNSIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPgo8Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSI4IiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpIi8+CjxwYXRoIGQ9Ik0xNSAzMEwyNSAyME0zNSAyMEw0NSAzME0zNSA0MEwyNSA0ME0xNSAzMEw0NSAzMCIgc3Ryb2tlPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMSkiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4KPGZ2PjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xNl81ODciIHgxPSIwIiB5MT0iMCIgeDI9IjUyMCIgeTI9IjQwMCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjNzU0MkZGIiBzdG9wLW9wYWNpdHk9IjAuMSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiM3NTQyRkYiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=")
      center/cover;
  border-radius: 40px;
  opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .liberion-unites__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .liberion-unites__description {
    font-size: 18px;
  }

  .liberion-unites__content {
    flex: 0 0 600px;
    width: 600px;
  }

  .liberion-unites__visual {
    flex: 0 0 440px;
  }

  .liberion-unites__image {
    width: 440px;
    height: 340px;
  }
}

@media (max-width: 991.98px) {
  .liberion-unites {
    padding: 60px 0;
  }

  .liberion-unites__wrapper {
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center;
  }

  .liberion-unites__content {
    flex: none;
    width: 100%;
  }

  .liberion-unites__text {
    align-items: center;
    text-align: center;
  }

  .liberion-unites__visual {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .liberion-unites__image {
    width: 100%;
    max-width: 520px;
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .liberion-unites__wrapper {
    gap: 40px;
  }

  .liberion-unites__description {
    font-size: 16px;
  }

  .liberion-unites__image {
    height: 280px;
    border-radius: 24px;
  }

  .liberion-unites__image-placeholder {
    border-radius: 24px;
  }
  .liberion-unites__main-image {
    margin-top: 0px;
  }
}

@media (max-width: 575.98px) {
  .liberion-unites {
    padding: 40px 0;
  }

  .liberion-unites__wrapper {
    gap: 32px;
  }

  .liberion-unites__text {
    gap: 16px;
  }

  .liberion-unites__title {
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 320px) / 255)), 28px);
  }

  .liberion-unites__description {
    font-size: 14px;
  }

  .liberion-unites__image {
    height: 240px;
    border-radius: 20px;
  }

  .liberion-unites__image-placeholder {
    border-radius: 20px;
  }
}
.news-events {
  position: relative;
  background: linear-gradient(
      214.27deg,
      rgba(117, 66, 255, 0) 34.328%,
      rgba(117, 66, 255, 0.1) 100%
    ),
    linear-gradient(90deg, #12111d 0%, #12111d 100%);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.news-events .container {
  position: relative;
  z-index: 2;
}

.news-events__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.news-events__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.news-events__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
  flex: 1;
}

.news-events__all-news-btn {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.news-events__grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.news-events__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-events__card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.news-events__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.news-events__card-header {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.news-events__card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  line-height: 1.3;
  
}

.news-events__card-date {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
}

.news-events__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  margin: 0;
  width: 100%;
}

.news-events__card-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.news-events__card:hover .news-events__card-arrow {
  transform: translate(2px, -2px);
}

.news-events__card-arrow svg {
  width: 100%;
  height: 100%;
}

.news-events__card-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
  
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .news-events__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .news-events__card-title {
    font-size: clamp(18px, calc(18px + 4 * ((100vw - 480px) / 720)), 22px);
  }
}

@media (max-width: 991.98px) {
  .news-events {
    padding: 60px 0;
  }

  .news-events__wrapper {
    gap: 32px;
  }

  .news-events__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .news-events__grid {
    flex-direction: column;
    gap: 12px;
  }

  .news-events__card-content {
    padding: 14px;
  }

  .news-events__card-title {
    font-size: 20px;
  }

  .news-events__card-description {
    font-size: 15px;
  }

  .news-events__all-news-btn {
    padding: 12px 16px;
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .news-events__wrapper {
    gap: 28px;
  }

  .news-events__grid {
    gap: 10px;
  }

  .news-events__card {
    border-radius: 20px;
  }

  .news-events__card-content {
    padding: 12px;
  }

  .news-events__card-header {
    gap: 6px;
  }

  .news-events__card-info {
    gap: 6px;
  }

  .news-events__card-title {
    font-size: 18px;
  }

  .news-events__card-description {
    font-size: 14px;
  }

  .news-events__card-arrow {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 575.98px) {
  .news-events {
    padding: 40px 0;
  }

  .news-events__wrapper {
    gap: 24px;
  }

  .news-events__title {
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 320px) / 255)), 28px);
  }

  .news-events__grid {
    gap: 8px;
  }

  .news-events__card {
    border-radius: 16px;
  }

  .news-events__card-content {
    padding: 10px;
  }

  .news-events__card-header {
    gap: 4px;
  }

  .news-events__card-info {
    gap: 4px;
  }

  .news-events__card-title {
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 255)), 16px);
  }

  .news-events__card-description {
    font-size: clamp(12px, calc(12px + 1 * ((100vw - 320px) / 255)), 13px);
  }

  .news-events__card-arrow {
    width: 24px;
    height: 24px;
  }
}

/* Tablet landscape specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .news-events__grid {
    flex-direction: row;
    gap: 12px;
  }

  .news-events__header {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
.peoplebehind {
  background: #0b0d11;
  color: #fff;
  padding: 80px 0;
}

.peoplebehind__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.peoplebehind__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.peoplebehind__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.peoplebehind__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.peoplebehind__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 600px;
}

.peoplebehind__buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.peoplebehind__btn-secondary {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.peoplebehind__btn-outline {
  background: transparent;
  border: 1px solid #5b2bff !important;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #8b56fe !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.peoplebehind__cards {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.peoplebehind__card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: all 0.3s ease;
  cursor: default;
  height: -webkit-fill-available;
}

.peoplebehind__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.peoplebehind__card--core {
  background: rgba(139, 86, 254, 0.2);
  justify-content: space-between;
  cursor: pointer;
}

.peoplebehind__card--core:hover {
  background: rgba(139, 86, 254, 0.3);
}

.peoplebehind__card-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.peoplebehind__card--core .peoplebehind__card-image-wrapper {
  height: 100%;
}

.peoplebehind__card-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.peoplebehind__card-image--core {
  /* background: rgba(255, 255, 255, 0.05); */
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.peoplebehind__core-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 258.61px;
  height: 221.191px;
  background: radial-gradient(
    circle,
    rgba(139, 86, 254, 0.3) 0%,
    rgba(139, 86, 254, 0.1) 50%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(20px);
}

.peoplebehind__core-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 96px;
}

.peoplebehind__core-logo svg {
  width: 100%;
  height: 100%;
}

.peoplebehind__card-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.peoplebehind__card-avatar svg {
  width: 60%;
  height: 60%;
  opacity: 0.6;
}

.peoplebehind__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.peoplebehind__card-photo--timur {
  object-position: center -18px;
  transform: scale(1.2);
}

.peoplebehind__card-photo--nikita {
  object-position: center -3px;
}

.peoplebehind__card-photo--anton {
  object-position: center -5px;
  transform: scale(1.04);
}

.peoplebehind__card-photo--konstantin {
  object-position: center -14px;
  transform: scale(1.15);
}

.peoplebehind__card-photo--dmitriy {
  object-position: center -3px;
}

.peoplebehind__card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  flex-grow: 1;
}

.peoplebehind__card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.peoplebehind__card-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.peoplebehind__card-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
}

.peoplebehind__card-city {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.peoplebehind__card-role {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #8b56fe;
  margin: 0;
}

.peoplebehind__card-description {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .peoplebehind__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .peoplebehind__cards {
    gap: 12px;
  }
}

@media (max-width: 991.98px) {
  .peoplebehind {
    padding: 60px 0;
  }

  .peoplebehind__header {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .peoplebehind__content {
    align-items: center;
    text-align: center;
  }

  .peoplebehind__title {
    max-width: 100%;
  }

  .peoplebehind__subtitle {
    max-width: 100%;
  }

  .peoplebehind__buttons {
    justify-content: center;
  }

  .peoplebehind__cards {
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 15px;
    margin: 0 -15px;
  }
}

@media (max-width: 767.98px) {
  .peoplebehind__wrapper {
    gap: 32px;
  }

  .peoplebehind__header {
    gap: 20px;
  }

  .peoplebehind__buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .peoplebehind__btn-secondary,
  .peoplebehind__btn-outline {
    width: 100%;
    min-width: 240px;
  }

  .peoplebehind__cards {
    flex-direction: column;
    gap: 16px;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }

  .peoplebehind__card--core {
    width: 100%;
  }
  .peoplebehind__card-image--core {
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .peoplebehind__wrapper {
    gap: 24px;
  }

  .peoplebehind__header {
    gap: 16px;
  }

  .peoplebehind__cards {
    gap: 12px;
  }
}
.protocol-of-trust {
  position: relative;
  background: #0b0d11;
  color: #fff;
  padding: 80px 0 80px;
  overflow: hidden;
}

.protocol-of-trust__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.protocol-of-trust__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      232.2deg,
      rgba(117, 66, 255, 0) 38.734%,
      rgba(117, 66, 255, 0.05) 82.656%
    ),
    linear-gradient(
      108.53deg,
      rgba(117, 66, 255, 0) 44.417%,
      rgba(117, 66, 255, 0.1) 100%
    );
  opacity: 0.3;
}

.protocol-of-trust .container {
  position: relative;
  z-index: 2;
}

.protocol-of-trust__wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}

.protocol-of-trust__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.protocol-of-trust__header-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.protocol-of-trust__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
}

.protocol-of-trust__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.protocol-of-trust__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  
}

.protocol-of-trust__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .protocol-of-trust__cta {
    width: 100%;
  }
  .protocol-of-trust__cta .protocol-of-trust__btn {
    max-width: unset;
  }
}


.protocol-of-trust__btn {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.protocol-of-trust__flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.protocol-of-trust__flow-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.protocol-of-trust__flow-row--bottom {
  justify-content: center;
}

.protocol-of-trust__flow-item {
  cursor: default;
}

.protocol-of-trust__flow-card {
  flex: 1;
  min-width: 0;
  border-radius: 24px;
  border: 1px solid #5b2bff;
  background: transparent;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  min-width: 140px;
}

.protocol-of-trust__flow-icon {
  width: 32px;
  height: 32px;
  color: #7542ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protocol-of-trust__flow-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.protocol-of-trust__flow-arrow {
  width: 88px;
  height: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protocol-of-trust__architecture {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.protocol-of-trust__architecture-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
}

.protocol-of-trust__architecture-flow {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.protocol-of-trust__architecture-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.protocol-of-trust__architecture-badge {
  background: rgba(139, 86, 254, 0.1);
  border-radius: 99px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  transition: all 0.3s ease;
}

.protocol-of-trust__architecture-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 28px;
  color: #8b56fe;
}

.protocol-of-trust__architecture-arrow {
  flex: 1;
  height: 11px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1425px) {
  .protocol-of-trust__wrapper {
    gap: 40px;
  }

  .protocol-of-trust__header {
    gap: 32px;
  }

  .protocol-of-trust__header-content {
    gap: 24px;
  }

  .protocol-of-trust__flow {
    gap: 20px;
  }

  .protocol-of-trust__flow-row {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .protocol-of-trust__flow-row--bottom {
    max-width: 100%;
  }

  .protocol-of-trust__flow-item {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .protocol-of-trust__flow-card {
    width: 100%;
    min-width: 100%;
    justify-content: center;
  }

  .protocol-of-trust__flow-arrow {
    display: none;
  }

  .protocol-of-trust__architecture {
    gap: 20px;
  }

  .protocol-of-trust__architecture-title {
    font-size: 20px;
    text-align: center;
    align-self: center;
  }

  .protocol-of-trust__architecture-flow {
    flex-direction: column;
    gap: 12px;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }

  .protocol-of-trust__architecture-item {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .protocol-of-trust__architecture-badge {
    width: 100%;
    max-width: 240px;
  }

  .protocol-of-trust__architecture-arrow {
    transform: rotate(90deg);
    width: 11px;
    height: 40px;
    min-width: auto;
  }

  .protocol-of-trust__architecture-arrow svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 575.98px) {
  .protocol-of-trust__wrapper {
    gap: 32px;
  }

  .protocol-of-trust__header {
    gap: 24px;
  }

  .protocol-of-trust__header-content {
    gap: 20px;
    flex-direction: column;
  }

  .protocol-of-trust__btn {
    width: 100%;
    max-width: 240px;
  }

  .protocol-of-trust__flow-card {
    padding: 12px;
    gap: 8px;
  }

  .protocol-of-trust__flow-icon {
    width: 28px;
    height: 28px;
  }

  .protocol-of-trust__flow-title {
    font-size: 18px;
  }

  .protocol-of-trust__architecture-text {
    font-size: 20px;
  }

  .protocol-of-trust__architecture-badge {
    padding: 12px;
  }
}
.verified-by-liberion {
  position: relative;
  background: #0b0d11;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.verified-by-liberion .container {
  position: relative;
  z-index: 2;
}

.verified-by-liberion__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.verified-by-liberion__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.verified-by-liberion__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  flex: 1;
  width: 100%;
}

.verified-by-liberion__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  
  width: 100%;
}

.verified-by-liberion__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
}

.verified-by-liberion__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.verified-by-liberion__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 99px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.verified-by-liberion__btn--primary {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.verified-by-liberion__btn--secondary {
  background: transparent;
  color: #8b56fe;
  border: 1px solid #5b2bff;
}

.verified-by-liberion__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.verified-by-liberion__mockup {
  position: relative;
  height: 320px;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(91, 43, 255, 0.1) 0%,
    rgba(0, 225, 199, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.verified-by-liberion__mockup-image {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(91, 43, 255, 0.08) 0%,
    transparent 70%
  );
}

.verified-by-liberion__mockup-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://liberion.com/wp-content/themes/liberion_new/assets/images/shield.webp');
  border-radius: 40px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
}

.verified-by-liberion__badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(0, 225, 199, 0.3);
  z-index: 3;
}

.verified-by-liberion__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.verified-by-liberion__badge-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 16px;
  color: #00e1c7;
  white-space: nowrap;
}

.verified-by-liberion__footer-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .verified-by-liberion__title {
    font-size: clamp(28px, calc(28px + 8 * ((100vw - 480px) / 720)), 36px);
  }

  .verified-by-liberion__badge-text {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .verified-by-liberion {
    padding: 60px 0;
  }

  .verified-by-liberion__header {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .verified-by-liberion__text {
    align-items: flex-start;
    text-align: left;
  }

  .verified-by-liberion__actions {
    align-self: flex-start;
  }

  .verified-by-liberion__mockup {
    height: 280px;
  }

  .verified-by-liberion__badge {
    left: 24px;
    bottom: 24px;
    padding: 10px 14px;
  }

  .verified-by-liberion__badge-text {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .verified-by-liberion__wrapper {
    gap: 32px;
  }

  .verified-by-liberion__header {
    gap: 20px;
  }

  .verified-by-liberion__actions {
    flex-wrap: wrap;
    gap: 6px;
  }

  .verified-by-liberion__btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .verified-by-liberion__mockup {
    height: 240px;
    border-radius: 24px;
  }

  .verified-by-liberion__mockup-image::before {
    border-radius: 24px;
  }

  .verified-by-liberion__badge {
    left: 20px;
    bottom: 20px;
    padding: 8px 12px;
    border-radius: 16px;
  }

  .verified-by-liberion__badge-icon {
    width: 24px;
    height: 24px;
  }

  .verified-by-liberion__badge-text {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .verified-by-liberion {
    padding: 40px 0;
  }

  .verified-by-liberion__wrapper {
    gap: 24px;
  }

  .verified-by-liberion__text {
    gap: 12px;
  }

  .verified-by-liberion__title {
    font-size: clamp(24px, calc(24px + 4 * ((100vw - 320px) / 255)), 28px);
  }

  .verified-by-liberion__description,
  .verified-by-liberion__footer-text {
    font-size: 14px;
  }

  .verified-by-liberion__actions {
    gap: 4px;
  }

  .verified-by-liberion__btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .verified-by-liberion__mockup {
    height: 200px;
    border-radius: 20px;
  }

  .verified-by-liberion__mockup-image::before {
    border-radius: 20px;
  }

  .verified-by-liberion__badge {
    left: 16px;
    bottom: 16px;
    padding: 6px 10px;
    gap: 6px;
  }

  .verified-by-liberion__badge-icon {
    width: 20px;
    height: 20px;
  }

  .verified-by-liberion__badge-text {
    font-size: 12px;
  }
}
.youridentity {
  background: #000;
  color: #fff;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.youridentity__wrapper {
  display: flex;
  gap:10px;
}

.youridentity__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  width: calc(60% - 5px);
}

.youridentity__right {
  width: calc(40% - 5px);
}

.youridentity__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section.youridentity {
  position: relative;
  overflow: hidden;
}

.youridentity__image::after {
  content: "";
  position: absolute;
  width: 724px;
  height: 518px;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(139, 86, 254, 0.20) 16.42%,
    rgba(139, 86, 254, 0.20) 44.95%,
    rgba(139, 86, 254, 0.20) 70.84%
  );
  filter: blur(200px);
  border-radius: 50%;
  z-index: 0;
}

.youridentity__image::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -105px;
  right: 40px;
  width: 401px;
  height: 233px;
  background-image: url('../images//sombras_min.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

.youridentity__image img {
  width: 354px;
  height: auto;
  position: relative;
  z-index: 3;
}

.youridentity__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.youridentity__text {
  color: #8B56FE;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
}

.youridentity__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  width: 100%;
  max-width: 700px;
}

.youridentity__title br {
  display: none;
}

.youridentity__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
  max-width: 700px;
}

.youridentity__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 366px;
}

.youridentity__buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.youridentity__btn-primary {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.youridentity__btn-outline {
  background: transparent;
  border: 1px solid #5b2bff !important;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #8b56fe !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: fit-content;
}

.youridentity__powered {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .youridentity {
    padding: 80px 0;
  }

  .youridentity__left {
    width: calc(70% - 5px);
  }

  .youridentity__right {
    width: calc(30% - 5px);
    margin-left: -30px;
  }

  .youridentity__image::before {
    right: -50px;
  }

  .youridentity__image img {
    width: 320px;
  }

  .youridentity__title {
    font-size: clamp(32px, calc(32px + 16 * ((100vw - 480px) / 512)), 48px);
  }

  .youridentity__subtitle {
    font-size: clamp(16px, calc(16px + 4 * ((100vw - 480px) / 512)), 20px);
  }

  .youridentity__actions {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .youridentity__wrapper {
    gap: 32px;
    flex-direction: column;
  }

  .youridentity__left {
    width: 100%;
  }

  .youridentity__right {
    width: 100%;
    margin-left: 0;
  }

  .youridentity__image::before {
    right: 50%;
    transform: translateX(50%);
  }

  .youridentity__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .youridentity__btn-primary,
  .youridentity__btn-outline {
    width: 100%;
    min-width: 200px;
  }

}

@media (max-width: 575.98px) {
  .youridentity__content {
    gap: 12px;
  }

  .youridentity__wrapper {
    gap: 24px;
  }

  .youridentity__image img {
    width: 240px;
  }
  .youridentity__image::before {
    width: 280px;
    height: 150px;
    bottom: -55px;
    background-image: url('../images/sombras_mobile_min.png');
  }
  .youridentity__text {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .youridentity__title br {
    display: block;
  }
  .youridentity__image img {
    width: 200px;
  }
  .youridentity__image::after {
    width: 390px;
    height: 240px;
  }
}

.yourwallet {
  background: #0b0d11;
  color: #fff;
  padding: 80px 0;
}

.yourwallet__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.yourwallet__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.yourwallet__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.yourwallet__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  max-width: 500px;
}

.yourwallet__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 450px;
}

.yourwallet__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.yourwallet__btn-primary {
  background: linear-gradient(135deg, #5b2bff 0%, #a970ff 100%);
  border: none;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: fit-content;
}

.yourwallet__btn-outline {
  background: transparent;
  border: 1px solid #5b2bff !important;
  border-radius: 99px !important;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #8b56fe !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: fit-content;
}

.yourwallet__qr {
  display: flex;
  gap: 16px;
  align-items: center;
}

.yourwallet__qr-code {
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 176px;
  height: 176px;
}

.yourwallet__qr-code img {
  border-radius: 8px;
}

.yourwallet__qr-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 200px;
}

.yourwallet__phones {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.yourwallet__phone {
  position: relative;
}

.yourwallet__phone img {
  height: auto;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.yourwallet__phone--right {
  transform: translateY(40px);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .yourwallet__wrapper {
    gap: 60px;
  }

  .yourwallet__phone img {
    width: 240px;
  }

  .yourwallet__phones {
    gap: 16px;
  }
}

@media (max-width: 991.98px) {
  .yourwallet {
    padding: 80px 0;
  }

  .yourwallet__wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .yourwallet__content {
    align-items: center;
  }

  .yourwallet__text {
    align-items: center;
    text-align: center;
  }

  .yourwallet__title {
    font-size: clamp(32px, calc(32px + 16 * ((100vw - 480px) / 512)), 48px);
    max-width: 100%;
  }

  .yourwallet__subtitle {
    max-width: 100%;
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 480px) / 512)), 18px);
  }

  .yourwallet__qr {
    justify-content: center;
  }

  .yourwallet__phones {
    justify-content: center;
  }

  .yourwallet__phone img {
    width: 220px;
  }
}

@media (max-width: 767.98px) {
  .yourwallet__wrapper {
    gap: 48px;
  }

  .yourwallet__content {
    gap: 32px;
  }

  .yourwallet__text {
    gap: 20px;
  }

  .yourwallet__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .yourwallet__btn-primary,
  .yourwallet__btn-outline {
    width: 100%;
    min-width: 240px;
  }

  .yourwallet__qr {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .yourwallet__qr-text {
    max-width: 100%;
  }

  .yourwallet__phones {
    flex-direction: column;
    gap: 20px;
  }

  .yourwallet__phone--right {
    transform: none;
  }

  .yourwallet__phone img {
    width: 200px;
  }
}

@media (max-width: 575.98px) {
  .yourwallet__content {
    gap: 24px;
  }

  .yourwallet__text {
    gap: 16px;
  }

  .yourwallet__wrapper {
    gap: 40px;
  }

  .yourwallet__phone img {
    width: 180px;
  }

  .yourwallet__qr-code img {
    width: 150px;
    height: 150px;
  }
}


/* ======= */
.comparison-table-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comparison-table-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-table-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.comparison-table-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.comparison-table-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 1200px;
  border-collapse: separate;
  border-spacing: 2px;
  font-family: "Inter", sans-serif;
  table-layout: fixed;
}

.comparison-table thead tr {
  background: transparent;
}

.comparison-table__feature-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  white-space: nowrap;
  width: 16.66%;
  height: 101px;
  vertical-align: middle;
}

.comparison-table__header {
  background: rgba(255, 255, 255, 0.1);
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  width: 16.66%;
  height: 101px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

.comparison-table__header--highlighted {
  background: linear-gradient(154.49deg, #5b2bff 0%, #a970ff 100%);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 0;
}

.comparison-table__header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.comparison-table__header-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-table__header--highlighted .comparison-table__header-logo {
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
}

.comparison-table tbody tr {
  background: transparent;
}

.comparison-table__feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
  vertical-align: top;
  width: 16.66%;
}

.comparison-table__cell {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  vertical-align: top;
  position: relative;
  width: 16.66%;
}

.comparison-table__cell--highlighted {
  background: rgba(139, 86, 254, 0.3);
}

.comparison-table__cell-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.comparison-table__cell-content span {
  flex: 1;
  white-space: pre-line;
}

.comparison-table__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .comparison-table-wrapper::after {
    content: "→ Scroll to see more";
    display: block;
    margin: 0 0 10px;
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Inter", sans-serif;
  }
}

@media (max-width: 768px) {
  .comparison-table-title {
    font-size: 28px;
  }

  .comparison-table-subtitle {
    font-size: 14px;
  }

  .comparison-table__feature-header,
  .comparison-table__feature {
    padding: 10px;
    font-size: 14px;
    height: auto;
  }

  .comparison-table__header {
    padding: 0;
    font-size: 14px;
    height: auto;
  }

  .comparison-table__header--highlighted {
    font-size: 16px;
    padding: 0;
  }

  .comparison-table__cell {
    padding: 10px;
    font-size: 14px;
  }

  .comparison-table__icon {
    width: 20px;
    height: 20px;
  }

  .comparison-table {
    min-width: 900px;
  }

  .comparison-table__header-logo {
    max-height: 40px;
  }

  .comparison-table__header--highlighted .comparison-table__header-logo {
    max-width: 120px;
    max-height: 40px;
  }
}

@media (max-width: 576px) {
  .comparison-table-wrapper {
    gap: 24px;
  }

  .comparison-table-container {
    border-radius: 0;
  }

  .comparison-table-title {
    font-size: 24px;
  }

  .comparison-table__feature-header,
  .comparison-table__feature {
    padding: 8px;
    font-size: 12px;
    height: auto;
  }

  .comparison-table__header {
    padding: 0px;
    font-size: 12px;
    height: 72px;
  }

  .comparison-table__header--highlighted {
    font-size: 14px;
    padding: 0;
  }

  .comparison-table__cell {
    padding: 8px;
    font-size: 12px;
  }

  .comparison-table__icon {
    width: 18px;
    height: 18px;
  }

  .comparison-table {
    min-width: 800px;
  }

  .comparison-table__header-logo {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: inherit;
  }

  .comparison-table__header--highlighted .comparison-table__header-logo {
    max-width: 90%;
    max-height: 60%;
  }
}


/* ======= */
.comparison-table-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.comparison-table-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-table-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.comparison-table-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.comparison-table-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 1200px;
  border-collapse: separate;
  border-spacing: 2px;
  font-family: "Inter", sans-serif;
  table-layout: fixed;
}

.comparison-table thead tr {
  background: transparent;
}

.comparison-table__feature-header {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  white-space: nowrap;
  width: 16.66%;
  height: 101px;
  vertical-align: middle;
}

.comparison-table__header {
  background: rgba(255, 255, 255, 0.1);
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  width: 16.66%;
  height: 101px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

.comparison-table__header--highlighted {
  background: linear-gradient(154.49deg, #5b2bff 0%, #a970ff 100%);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 0;
}

.comparison-table__header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.comparison-table__header-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-table__header--highlighted .comparison-table__header-logo {
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
}

.comparison-table tbody tr {
  background: transparent;
}

.comparison-table__feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
  vertical-align: top;
  width: 16.66%;
}

.comparison-table__cell {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  vertical-align: top;
  position: relative;
  width: 16.66%;
}

.comparison-table__cell--highlighted {
  background: rgba(139, 86, 254, 0.3);
}

.comparison-table__cell-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.comparison-table__cell-content span {
  flex: 1;
  white-space: pre-line;
}

.comparison-table__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .comparison-table-wrapper::after {
    content: "→ Scroll to see more";
    display: block;
    margin: 0 0 10px;
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Inter", sans-serif;
  }
}

@media (max-width: 768px) {
  .comparison-table-title {
    font-size: 28px;
  }

  .comparison-table-subtitle {
    font-size: 14px;
  }

  .comparison-table__feature-header,
  .comparison-table__feature {
    padding: 10px;
    font-size: 14px;
    height: auto;
  }

  .comparison-table__header {
    padding: 0;
    font-size: 14px;
    height: auto;
  }

  .comparison-table__header--highlighted {
    font-size: 16px;
    padding: 0;
  }

  .comparison-table__cell {
    padding: 10px;
    font-size: 14px;
  }

  .comparison-table__icon {
    width: 20px;
    height: 20px;
  }

  .comparison-table {
    min-width: 900px;
  }

  .comparison-table__header-logo {
    max-height: 40px;
  }

  .comparison-table__header--highlighted .comparison-table__header-logo {
    max-width: 120px;
    max-height: 40px;
  }
}

@media (max-width: 576px) {
  .comparison-table-wrapper {
    gap: 24px;
  }

  .comparison-table-container {
    border-radius: 0;
  }

  .comparison-table-title {
    font-size: 24px;
  }

  .comparison-table__feature-header,
  .comparison-table__feature {
    padding: 8px;
    font-size: 12px;
    height: auto;
  }

  .comparison-table__header {
    padding: 0px;
    font-size: 12px;
    height: 72px;
  }

  .comparison-table__header--highlighted {
    font-size: 14px;
    padding: 0;
  }

  .comparison-table__cell {
    padding: 8px;
    font-size: 12px;
  }

  .comparison-table__icon {
    width: 18px;
    height: 18px;
  }

  .comparison-table {
    min-width: 800px;
  }

  .comparison-table__header-logo {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: inherit;
  }

  .comparison-table__header--highlighted .comparison-table__header-logo {
    max-width: 90%;
    max-height: 60%;
  }
}


/* TEAM START*/

.styles_layoutMain__Vogyb {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    padding: 64px 0 0;
}

.teamMemberCard_teamMemberCard__deuXn {
    background: rgba(255,255,255,.05);
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
    transition: all .3s ease;
    cursor: default;
    height: -webkit-fill-available
}

.teamMemberCard_teamMemberCard__deuXn:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.08)
}

.teamMemberCard_imageWrapper__dPLu5 {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0
}

.teamMemberCard_image__PJ_cP {
    width: 100%;
    height: 100%;
    position: relative
}

.teamMemberCard_avatar__dn4Ij {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.05);
    border-radius: 16px
}

.teamMemberCard_avatar__dn4Ij svg {
    width: 60%;
    height: 60%;
    opacity: .6
}

.teamMemberCard_photo__NANnV {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px
}

.teamMemberCard_photoTimur__Ef7Ej {
    object-position: center -17px;
    transform: scale(1.2)
}

.teamMemberCard_photoNikita__RKyGb {
    object-position: center -1px
}

.teamMemberCard_photoAnton__3oAs_ {
    object-position: center -4px;
    transform: scale(1.02)
}

.teamMemberCard_photoKonstantin__S8p_6 {
    object-position: center -15px;
    transform: scale(1.15)
}

.teamMemberCard_photoDmitriy__prkuP {
    object-position: center -21px;
    transform: scale(1.25)
}

.teamMemberCard_photoMaria__EtblU {
    object-position: center -8px;
    transform: scale(1.1)
}

.teamMemberCard_info__Ns_LF {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    flex-grow: 1
}

.teamMemberCard_name__9Jb5A {
    font-family: Space Grotesk,sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    white-space: pre-wrap
}

.teamMemberCard_details__lrpAW {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    width: 100%
}

.teamMemberCard_city__cgetd {
    color: rgba(255,255,255,.5)
}

.teamMemberCard_city__cgetd,.teamMemberCard_role__F6bl8 {
    font-family: Inter,sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    margin: 0
}

.teamMemberCard_role__F6bl8 {
    color: #8b56fe
}

.Team_teamPage__CMS91 {
    background: #0b0d11;
    color: #fff;
    min-height: 100vh;
    padding: 80px 0
}

.Team_teamPage__wrapper__OFftx {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%
}

.Team_teamPage__header__3jdID {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center
}

.Team_teamPage__title__ukRHQ {
    font-family: Space Grotesk,sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin: 0
}

.Team_teamPage__subtitle__rjszf {
    font-family: Inter,sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255,255,255,.7);
    margin: 0;
    max-width: 600px
}

.Team_teamPage__grid__fcXrJ {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    grid-gap: 24px;
    gap: 24px;
    width: 100%
}

@media (max-width: 991.98px) {
    .Team_teamPage__CMS91 {
        padding:60px 0
    }

    .Team_teamPage__wrapper__OFftx {
        gap: 40px
    }

    .Team_teamPage__title__ukRHQ {
        font-size: clamp(32px,calc(32px + 16 * ((100vw - 480px) / 512)),48px)
    }

    .Team_teamPage__subtitle__rjszf {
        font-size: 16px
    }

    .Team_teamPage__grid__fcXrJ {
        grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
        gap: 20px
    }
}

@media (max-width: 767.98px) {
    .Team_teamPage__CMS91 {
        padding:40px 0
    }

    .Team_teamPage__wrapper__OFftx {
        gap: 32px
    }

    .Team_teamPage__header__3jdID {
        gap: 12px
    }

    .Team_teamPage__title__ukRHQ {
        font-size: clamp(28px,calc(28px + 8 * ((100vw - 320px) / 160)),36px)
    }

    .Team_teamPage__subtitle__rjszf {
        font-size: 15px
    }

    .Team_teamPage__grid__fcXrJ {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

@media (max-width: 575.98px) {
    .Team_teamPage__wrapper__OFftx {
        gap:24px
    }

    .Team_teamPage__grid__fcXrJ {
        gap: 12px
    }
}


/* TEAM END */


/* MODAL  START*/
.modal .modal__container {
  width: 680px;
  max-width: 680px;
  height: auto;
  border-radius: 32px;
  background: linear-gradient(92deg, rgba(117, 66, 255, 0.00) 48.42%, rgba(117, 66, 255, 0.10) 100%), #1E1D29;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.60);
  background-color: #1E1D29;
  padding: 28px;
  margin: 0 15px;
}

.modal {
}
.micromodal-slide {
}
.modal__overlay {
  z-index: 999;
}
.modal__container {
}
.modal__content {
  display: flex;
  flex-direction: column;
  gap:32px;
  margin: 0!important;
}
.modal__content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal__content-logo {
  width: 88px;
  height: 88px;
}
.modal__content-verified {
  display: flex;
  align-items: center;
  gap:8px;
}
.modal__content-verified-text {
  color: #00E1C7;
  font-family: 'Inter';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 114.286% */
}
.modal__content-verified-logo {
  width: 24px;
  height: 24px;
}
.modal__content-text {
}
.modal__content-title {
  color: #FFF;
  font-family: "Space Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  margin-bottom: 12px;
}
.modal__content-description {
  color: rgba(255, 255, 255, 0.50);
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}
.modal__content-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:20px;
}
.modal__content-buttons {
  display: flex;
  justify-content: flex-start;
  gap:8px;
}
.modal__content-btn {
  padding: 8px 12px 8px 28px;
  height: 44px;
}
.yourwallet__btn-outline {
}
.modal__content-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap:20px;
}
.modal__content-social {
  width: 24px;
  height: 24px;
}
.modal__content-social svg path {
  opacity: 0.5;
  transition: opacity 0.1s ease-in-out;
}
.modal__content-social:hover svg path{
  opacity: 1;
}
@media (max-width: 767.98px) {
  .modal__content-btn {
    width: unset;
    min-width: unset;
  }
}
@media (max-width: 575.98px) {
  .modal .modal__container {
    padding: 20px;
  }
  .modal__content {
    gap:24px;
  }
  .modal__content-description {
    font-size: 14px;
  }
  .modal__content-title {
    font-size: 22px;
  }
  .modal__content-actions {
    flex-direction: column;
  }
}
/* MODAL  END*/