@import url("./satoshi.css");

.grecaptcha-badge {
  opacity: 0;
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}

html {
  /* background-color: #6c5394; */
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  overscroll-behavior: none;
  color: #100e0c;
}

.error-message-wrapper {
  color: #d11100;
}

#error-message-text {
  font-size: 16px;
  line-height: 118%;
  font-weight: 400;
}

.hero-section {
  margin-top: -80px;
  position: relative;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(108, 83, 148, 0.8);
  background-image: url("../images/home-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.header {
  margin: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  position: sticky;
  top: 16px;
  margin: 16px 40px;
  z-index: 999;
  transition: all 0.3s ease;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header--black {
  color: black;
}

.header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  background-color: rgba(108, 83, 148, 0.5);
  padding: 12px 24px;
  height: 70px;
  border-radius: 20px;
  border: 1px solid white;
}

.header.scrolled .logo {
  filter: invert();
}

.header.scrolled .burger.burger-black span {
  background-color: white;
}
.header.scrolled .nav-menu__list--black li a {
  color: white;
}

.logo {
  height: 22px;
}

.logo--inverted {
  filter: invert();
}

.logo--small {
  height: 19px;
  width: 101.9px;
}

.burger {
  width: 30px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  background: transparent;
  border: none;
}

.burger.burger-black span {
  background-color: black;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: white;
  border-radius: 3px;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: black;
  transform-origin: center;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.content.blur {
  /* filter: blur(4px); */
  filter: brightness(0.7) blur(4px);
  transition: filter 0.3s;
}

.menu {
  display: none;
  background-color: #fbfbfb;
  border-radius: 20px;
  padding: 18px;
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1000;
}

.menu ul {
  margin: 20px 0 30px;
  list-style: none;
}

.menu ul li {
  margin-bottom: 18px;
}

.menu ul li a {
  text-decoration: none;
  color: #1c1a1e;
}

.menu ul li a:hover {
  text-decoration: underline;
  color: gray;
}

/* Visible menu */
.menu.active {
  display: block;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-menu__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu__list li {
  list-style: none;
  color: white;
}

.nav-menu__list li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-menu__list.nav-menu__list--black li a {
  color: black;
}

.nav-menu__list li a:hover {
  text-decoration: underline;
  color: gainsboro;
}

.cta-button {
  background-color: #1c1a1e;
  border: 1px solid #1c1a1e;
  border-radius: 70px;
  padding: 14px 29px;
  color: white;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #514c55;
  border: 1px solid #514c55;
}

.main-content {
  margin: 130px 95px;
  color: white;
  z-index: 1;
}

.slogan {
  font-family: "Lora", serif;
  font-size: 80px;
  line-height: 81px;
  max-width: 800px;
  letter-spacing: -1.6px;
}

.slogan__desc {
  margin-top: 16px;
  font-size: 20px;
  max-width: 500px;
  font-weight: 400;
  line-height: 28px;
}

.slogan--italic {
  font-family: "Lora", serif;
  font-style: italic;
}

.main-buttons {
  margin-top: 34px;
  display: flex;
  gap: 17px;
  align-items: center;
}

.cta-button--main {
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 500;
}

.cta-button--inverted {
  background: #ffffff33;
  border: 1px solid white;
}

.cta-button--inverted:hover {
  background: #ffffff1a;
  border: 1px solid white;
}

.trusted {
  margin: auto 95px 40px;
  height: 70px;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(to bottom, #fbfbfb66, #ffffff33);
  padding: 37px;
  gap: 64px;
  border-radius: 20px;
  justify-content: space-between;
}

.trusted > span {
  font-size: 20px;
}

.trusted-list {
  list-style: none;
  padding-left: 1.5em;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 1;
  gap: 72px;
}

.trusted-list li {
  position: relative;
  font-size: 18px;
}

.trusted-list li::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 1px;
  width: 17.5px;
  height: 16.72px;
  background-image: url("../images/trusted-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.app-example {
  padding: 80px 0 80px;
  background-color: white;
}

.example-slogan {
  max-width: 920px;
  font-size: 60px;
  letter-spacing: -1.2px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
}

.example-screen {
  margin: 60px 95px 20px;
  background-color: #f4f4f4;
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

.example-video-container {
  display: inline-block;
  overflow: hidden;
  box-shadow: 0px 4px 8px -2px #00000014;
  border-radius: 1rem;
}

.example-video-container video {
  display: block;
  width: 100%;
  height: auto;

  border: none;
  height: 480px;
}

.example-desc {
  padding: 40px 30px;
}

.example-desc__title {
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
  font-variation-settings: "wght" 600;
  max-width: 220px;
  letter-spacing: -0.8px;
}

.example-desc__text {
  color: #56515a;
  margin-top: 28px;
  line-height: 28px;
  font-size: 20px;
  max-width: 480px;
}

.built-by {
  padding: 0px 95px;
  background-color: white;
  display: flex;
  justify-content: space-between;
}

.built-by__slogan {
  font-size: 60px;
  letter-spacing: -1.2px;
  font-weight: 400;
  max-width: 280px;
  margin-right: 200px;
  flex-shrink: 0;
}

.built-by__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin-right: 8px;
}

.built-by__list li {
  border: 1px solid #efefef;
  height: 170px;
  width: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.built-by__list li img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 18px 42px;
}

.backed-by {
  padding-top: 80px;
}

.backed-by__list li a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.backed-by li {
  width: 215px;
}

.backed-by__slogan {
  max-width: 250px;
}

.angels__list {
  margin-top: 15px;
  list-style: none;
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-right: 8px;
}

.angels__list li {
  border: 1px solid #efefef;
  height: 210px;
  width: 290px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.angels__list li p {
  color: #56515a;
  text-align: center;
  line-height: 28px;
  font-size: 20px;
}

.angels__list li img:first-child {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.angels__list li img:last-child {
  height: 20px;
}

.compliance {
  padding: 80px 95px 0;
  background-color: white;
}

.compliance__content {
  background-color: #100e0c;
  padding: 90px 70px;
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.compliance__title {
  font-size: 40px;
  letter-spacing: -0.8px;
  line-height: 44px;
}

.compliance__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.compliance__list li {
  text-align: center;
  width: 208px;
}

.compliance__list li p {
  margin: 23px 0 0;
  font-size: 14px;
}

.compliance__list li span {
  font-size: 10px;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: white;
  overflow: hidden;
  padding: 40px 20px 40px;
}

.blob1,
.blob2,
.blob3 {
  position: absolute;
  width: 100vw;
  z-index: 0;
  pointer-events: none;
}

.blob1 {
  bottom: 0px;
  width: 120%;
  /* transform: scaleY(1.5); */

  /* display: none; */
}

.blob2 {
  bottom: -180px;
  right: 0px;
}

.blob3 {
  bottom: -50px;
  left: 0px;
}

.footer__content {
  margin-top: 100px;
  padding: 90px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.footer__logo {
  width: 76.6px;
  height: 76.6px;
}

.cta-button--footer {
  padding: 16px 34px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  font-variation-settings: "wght" 500;
}

.cta-button--footer-2 {
  height: 40px;
  width: 152px;
  padding: 0;
  background-color: white;
  border: 1px solid white;

  color: #100e0c;
  line-height: 19.6px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button--footer-2:hover {
  color: pink;
}

.footer__menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 200px 120px 100px;
  z-index: 10;
  position: relative;
}

.footer__list__wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: white;
}

.mail-link {
  color: white;
  text-decoration: none;
}

.mail-link:hover {
  text-decoration: underline;
}

.footer__blaise__logo {
  width: 116.18px;
  height: 20.28px;
}

.copyright {
  display: flex;
  justify-content: center;
  padding: 100px 0 0;
  z-index: 10;
  line-height: 22.4px;
  color: white;
  font-weight: 400;
}

.footer__li__logo {
  filter: none;
  transition: all 0.3s ease;
}

.footer__li__logo:hover {
  transform: scale(1.2);
}

.footer__list {
  display: flex;
  gap: 80px;
  list-style: none;
  color: white;
}

.footer__list > li > div {
  opacity: 0.7;
  margin-bottom: 18px;
}

.footer__list > li ul {
  list-style: none;
}

.footer__list > li ul li {
  list-style: none;
  margin-bottom: 12px;
}

.footer__list > li ul li a {
  text-decoration: none;
  color: white;
}

.footer__list > li ul li a:hover {
  text-decoration: underline;
}

.privacy-title {
  font-size: 60px;
  line-height: 68.4px;
  font-family: "Lora", serif;
  letter-spacing: -1.2px;
  margin: 0 auto;
  text-align: center;
}

.privacy-text {
  padding: 20px 220px;
}

.privacy-text > p {
  margin-top: 44px;
  font-size: 20px;
  line-height: 28px;
}

.privacy-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 82px 0 22px;
  gap: 20px;
}

.back-button {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 18px;
  color: #100e0c;
}

.back-icon {
  width: 16px;
  height: 16px;
}

.contacts-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contacts-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  font-variation-settings: "wght" 600;
}

.contacts-image {
  height: 100dvh;
  padding: 24px;
}

.contacts-image > img {
  border-radius: 16px;
  height: 100%;
  max-width: 520px;
  object-fit: cover;
  object-position: center center;
}

.contacts-form {
  padding: 20px 140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.contacts-form__footer {
  grid-column: span 2;
}

.contacts-form__footer div {
  margin-top: 24px;
  color: #56515a;
  font-size: 16px;
  line-height: 22.4px;
}

.contacts-form__footer div a {
  color: #56515a;
  text-decoration: underline;
}

.contacts-form__footer div a:hover {
  color: #e56760;
}

.contacts-form__footer__cta {
  padding: 15px 42px;
  font-size: 20px;
  line-height: 28px;
}

.contacts-form form {
  width: 100%;
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contacts-form .full-width {
  grid-column: span 2;
}

.contacts-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.contacts-form input,
.contacts-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  box-sizing: border-box;
}

.contacts-form select {
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.48467 1.60183C0.485215 1.41858 0.524996 1.23758 0.601337 1.071C0.680834 0.890645 0.810562 0.736987 0.975031 0.628376C1.1395 0.519764 1.33176 0.46079 1.52884 0.458496L6.4405 0.458496C6.63758 0.46079 6.82984 0.519765 6.99431 0.628376C7.15878 0.736987 7.28851 0.890645 7.368 1.071C7.46602 1.27851 7.50378 1.50939 7.47696 1.73732C7.45015 1.96525 7.35984 2.18106 7.21634 2.36016L4.7605 5.33516C4.66763 5.45183 4.54964 5.54604 4.41531 5.6108C4.28099 5.67555 4.13379 5.70918 3.98467 5.70918C3.83555 5.70918 3.68835 5.67555 3.55403 5.6108C3.4197 5.54604 3.30171 5.45183 3.20884 5.33516L0.753003 2.36016C0.579096 2.14572 0.48434 1.87793 0.48467 1.60183Z' fill='%23111827'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.5rem;
  color: #100e0c;
}

.contacts-form input::placeholder {
  color: #bbb;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.privacy-text ol {
  margin: 1em 0;
  padding-left: 2em;
}

.privacy-text ol li {
  margin: 0.5em 0;
  line-height: 1.6;
}

/* Level 1: 1, 2, 3... */
.privacy-text ol {
  list-style-type: decimal;
}

/* Level 2: a, b, c... */
.privacy-text ol ol {
  list-style-type: lower-alpha;
  margin: 0.5em 0;
}

/* Level 3: i, ii, iii... */
.privacy-text ol ol ol {
  list-style-type: lower-roman;
}

/* Level 4: A, B, C... */
.privacy-text ol ol ol ol {
  list-style-type: upper-alpha;
}

/* Custom numbering for legal documents */
.legal-numbering {
  counter-reset: section;
}

.legal-numbering > li {
  counter-increment: section;
  list-style: none;
  position: relative;
}

.legal-numbering > li::before {
  content: counter(section) ". ";
  font-weight: bold;
  margin-right: 0.5em;
}

/* Sub-sections with letters */
.legal-subsection {
  counter-reset: subsection;
}

.legal-subsection > li {
  counter-increment: subsection;
  list-style: none;
}

.legal-subsection > li::before {
  content: "(" counter(subsection, lower-alpha) ") ";
  margin-right: 0.5em;
}

@media (max-height: 940px), (max-width: 1400px) {
  .built-by__slogan {
    max-width: 240px;
    margin-right: 0;
  }

  .contacts-form {
    padding: 20px 80px;
  }
}

@media (max-height: 820px), (max-width: 1200px) {
  .trusted {
    margin: auto 24px 40px;
  }

  .trusted-list li::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .example-screen {
    margin: 60px 30px 20px;
  }

  .header.scrolled {
    margin: 16px 30px;
  }

  .built-by,
  .compliance {
    padding: 16px 30px;
  }

  .footer__menu {
    padding: 100px 14px 10px;
  }

  .contacts-form {
    padding: 20px 40px;
    gap: 16px;
  }

  .contacts-form form {
    gap: 16px;
  }

  .contacts-form__footer div {
    margin-top: 16px;
  }

  .compliance__list {
    flex-shrink: 0;
  }

  .compliance__content {
    padding: 30px 18px;
  }
}

@media (max-height: 720px), (max-width: 992px) {
  .nav-menu__list {
    gap: 24px;
  }

  .contacts-section {
    flex-direction: column-reverse;
  }

  .contacts-image {
    height: unset;
  }

  .contacts-image > img {
    border-radius: 16px;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;

    max-height: 300px;
    width: 600px;
    object-fit: cover;
    object-position: bottom;
    max-width: 100%;
  }

  .contacts-image.hiring-image > img {
    object-position: center;
  }

  .compliance__list {
    flex-shrink: 1;
  }
}

@media (max-height: 540px), (max-width: 768px) {
  .contacts-image {
    padding: 20px 16px 4px;
  }

  .contacts-form {
    padding: 24px 16px;
  }

  .contacts-image > img {
    max-height: 240px;
  }

  .contacts-title {
    font-size: 24px;
    line-height: 28.4px;
  }

  .hero-section {
    margin-top: -84px;
  }

  .header {
    margin: 30px 16px;
    height: unset;
  }

  .header.scrolled {
    top: 19px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    background-color: rgba(108, 83, 148, 0.8);
    padding: 12px 12px 12px 16px;
    height: 50px;
    border-radius: 20px;
    margin: 16px;
  }

  .nav-menu {
    display: none;
  }

  .burger {
    display: flex;
  }

  .main-content {
    margin: 112px 16px 40px;
  }

  /* Remove horizontal animations on mobile to prevent scroll */
  .fade-in-left {
    transform: translateY(20px);
  }

  .fade-in-right {
    transform: translateY(20px);
  }

  .fade-in-up {
    transform: translateY(30px);
  }

  .fade-in {
    transform: translateY(20px);
  }

  .privacy-text {
    padding: 16px;
  }

  .privacy-text > p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 20px;
  }

  .privacy-header {
    padding: 24px 0 0;
    gap: 16px;
  }

  .back-button {
    gap: 5px;
    font-size: 14px;
  }

  .slogan {
    font-family: "Lora", serif;
    font-size: 42px;
    line-height: 42px;
    max-width: unset;
    letter-spacing: -0.8px;
    max-width: 360px;
  }

  .slogan__desc {
    margin-top: 16px;
    font-size: 20px;
    max-width: 500px;
    font-weight: 400;
    line-height: 28px;
  }

  .trusted {
    margin: 0;
    display: block;
    height: unset;
    margin: auto 16px 30px;
    padding: 18px 26px 14px;
  }

  .trusted > span {
    margin-top: 4px;
    margin-left: -8px;
    font-size: 18px;
  }

  .trusted-list {
    margin: 10px 0;
    display: block;
  }

  .trusted-list li {
    margin-top: 9px;
    font-size: 16px;
  }

  .cta-button--main {
    padding: 12px 23px;
    font-size: 14px;
  }

  .app-example {
    padding: 60px 0;
  }

  .example-slogan,
  .privacy-title {
    font-size: 38px;
    margin: 0 auto;
  }

  .example-screen {
    margin: 60px 16px 0;
    padding: 18px;
    gap: 30px;
    flex-direction: column;
  }

  .example-desc {
    padding: 0;
  }

  .example-desc__title {
    font-size: 24px;
    line-height: 26.4px;
    letter-spacing: -0.6px;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }

  .example-desc__text {
    margin-top: 15px;
    line-height: 25px;
    font-size: 18px;
    max-width: 100%;
    text-align: center;
  }

  .example-video-container video {
    height: 100%;
  }

  .built-by {
    flex-direction: column;
    padding: 0px 16px;
  }

  .built-by__slogan {
    font-size: 38px;
    letter-spacing: -1.8px;
    margin: 0 auto 40px;
    text-align: center;
    max-width: 240px;
  }

  .built-by__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 8px;
    margin: 0 0 8px;
    padding: 0 16px;
  }

  .built-by__list li {
    border: 1px solid #efefef;
    height: 100px;
    width: 176px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 0;
  }

  .built-by__list li img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 18px 42px;
  }

  .angels__list {
    margin-top: 0;
    margin-right: 0;
    gap: 8px;
    padding: 0 16px;
  }

  .angels__list li {
    border: 1px solid #efefef;
    height: 210px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 24px;
  }

  .angels__list li p {
    color: #56515a;
    text-align: center;
    line-height: 28px;
    font-size: 20px;
  }

  .angels__list li img:first-child {
    width: 64px;
    height: 64px;
    border-radius: 50%;
  }

  .angels__list li img:last-child {
    height: 20px;
  }

  .built-by.backed-by {
    /* take 8px from the top list */
    padding: 52px 0 60px;
  }

  /* anchor fix */
  .backed-by {
    padding-bottom: 0;
  }

  .compliance {
    padding: 0 16px;
  }

  .compliance__content {
    padding: 30px 18px;
    height: unset;
    flex-direction: column;
  }

  .compliance__title {
    font-size: 24px;
    letter-spacing: -0.6px;
    line-height: 26px;
    max-width: 80%;
    text-align: center;
    margin-bottom: 30px;
  }

  .compliance__list {
    justify-content: center;
  }

  .compliance__list li {
    text-align: center;
    width: 208px;
  }

  .compliance__list li p {
    margin: 23px 0 0;
    font-size: 14px;
  }

  .compliance__list li span {
    font-size: 10px;
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: white;
    overflow: hidden;
    padding: 40px 20px 40px;
  }

  .blob1,
  .blob2,
  .blob3 {
    position: absolute;
    width: 100vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .blob1 {
    bottom: 0;
    width: 500%;
    /* display: none; */
  }

  .blob2 {
    bottom: 0;
    right: 0;
    /* display: none; */
    transform: scaleY(1.5);
    width: 200%;
  }

  .blob3 {
    bottom: 0;
    left: 0;

    transform: scaleY(1.5);
    width: 200%;
    /* display: none; */
  }

  .footer__content {
    gap: 30px;
    padding: 90px 0;
  }

  .cta-button--footer {
    padding: 12px 23px;
    font-size: 14px;
    line-height: 25.6px;
  }

  /* .cta-button--footer-2 {
    height: 40px;
    width: 152px;
    padding: 0;
    background-color: white;
    border: 1px solid white;

    color: #100e0c;
    line-height: 19.6px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cta-button--footer-2:hover {
    color: pink;
  } */

  .footer__menu {
    display: flex;
    flex-direction: column-reverse;

    justify-content: space-between;
    padding: 0;
    position: relative;
  }

  .footer__list__wrapper {
    position: unset;
    transform: none;
  }

  .footer__company {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
  }

  .footer__blaise__logo {
    width: 116.18px;
    height: 20.28px;
  }

  .footer__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    list-style: none;
    color: white;
  }

  .footer__list > li > div {
    opacity: 0.7;
    margin-bottom: 18px;
  }

  .footer__list > li ul {
    list-style: none;
  }

  .footer__list > li ul li {
    list-style: none;
    margin-bottom: 12px;
  }

  .footer__list > li ul li a {
    text-decoration: none;
    color: white;
  }

  .footer__list > li ul li a:hover {
    text-decoration: underline;
  }

  .footer__li__wrapper {
    margin: 40px 0;
  }

  .copyright {
    padding: 40px 0 40px;
    justify-content: flex-start;
    width: 100%;
    font-size: 14px;
  }
}

.upload-container {
  display: flex;
  gap: 2rem;
  font-family: sans-serif;
  width: 100%;
}

.upload-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  width: 100%;
}

.upload-label {
  font-size: 14px;
}

.upload-button {
  position: relative;
  display: inline-block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  background-color: #f9fafb;
  color: #111;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.upload-button::before {
  content: "+";
  margin-right: 0.5rem;
  font-weight: bold;
}

.upload-input {
  display: none;
}
