@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Regular_Demo.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Light_Demo.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Bold_Demo.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Italic_Demo.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Bold_Italic_Demo.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Light_Italic_Demo.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Thin_Italic Demo.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Typo Round";
  src: url("./typo_round/Typo_Round_Thin_Demo.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: #3d3d3d;
  background: #ffffff;
  overflow-x: hidden;
}

.landing {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 190px;

  @media (max-width: 1280px) {
    padding: 0 40px;
  }

  @media (max-width: 768px) {
    padding: 0 20px;
  }
}

/* Header */
.header {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 25px 0;

  @media (max-width: 768px) {
    padding: 15px 0;
  }
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 1280px) {
    flex-wrap: wrap;
  }

  @media (max-width: 580px) {
    height: auto;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  @media (max-width: 768px) {
    img {
      width: 100px;
      height: auto;
    }
  }
}

.navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 20px;

  @media (max-width: 1280px) {
    width: 100%;
    margin-top: 15px;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }

  @media (max-width: 580px) {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 10px;
    width: 100%;
    margin-top: 15px;

    a {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: background 0.3s;

      &:hover {
        background: #e0e0e0;
        opacity: 1;
      }
    }
  }

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
  }
}

.navigation a {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #3d3d3d;
  text-decoration: none;
  transition: opacity 0.3s;

  @media (max-width: 580px) {
    font-size: 14px;
  }

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

.navigation a:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  padding-top: 70px;
  padding-bottom: 103px;

  @media (max-width: 768px) {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 880px;

  @media (max-width: 1280px) {
    width: 100%;
  }
}

/* .hero-title {
  width: 766px;
  height: 122px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 96px;
  line-height: 122px;
  background: linear-gradient(90deg, #2ea9e1 0%, #d41d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
} */

.hero-title-image {
  width: 736px;
  height: 88px;

  @media (max-width: 1280px) {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  @media (max-width: 768px) {
    max-width: 100%;
  }
}

.hero-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  gap: 10px;
  width: 880px;
  height: 49px;
  background: linear-gradient(90deg, #d41d5c 0%, #2f398b 100%);
  border-radius: 10px;

  @media (max-width: 1280px) {
    width: 100%;
  }

  @media (max-width: 768px) {
    height: auto;
    padding: 8px 12px;
  }
}

.hero-badge-text {
  width: 860px;
  height: 39px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;
  color: #ffffff;
  margin: 0;

  @media (max-width: 1280px) {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
  }

  @media (max-width: 768px) {
    font-size: 18px;
    line-height: 24px;
    height: auto;
  }
}

.hero-description {
  width: 880px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #3d3d3d;
  margin: 0;

  @media (max-width: 1280px) {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 24px;
  }
}

.hero-description-highlight {
  font-weight: 700;
}

.vision {
  background: #fafafa;
}

.vision-mission-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 70px 0;
  gap: 10px;
  align-items: flex-start;

  @media (min-width: 1440px) {
    align-items: center;
  }

  /* @media (max-width: 1280px) {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  @media (max-width: 580px) {
    flex-direction: column;
  }

  @media (max-width: 768px) {
    padding: 40px 0;
  } */
}

.vision-content,
.mission-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 565px;
  height: 191px;

  /* @media (max-width: 1280px) {
    width: 100%;
    height: auto;
  } */
}

.vision-icon,
.mission-icon {
  width: 191px;
  height: 191px;

  @media (max-width: 1280px) {
    width: 150px;
    height: 150px;

    img {
      width: 100%;
      height: auto;
    }
  }

  @media (max-width: 768px) {
    width: 120px;
    height: 120px;
  }
}

/* Mission Section */
.mission {
  position: relative;
  width: 100%;
  height: 331px;
  background: #ffffff;
}

/* Section Styles */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section-title-frame {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  border-left: 10px solid #8f3089;

  @media (max-width: 768px) {
    padding: 8px 20px;
  }

  @media (min-width: 1440px) {
    border-left: 10px solid #8f3089;
  }
}

.mission-frame {
  border-left: 10px solid #d41d5c;
}

.values-frame {
  border-left: 10px solid #2ea9e1;
}

.work-ethic-frame {
  border-left: 10px solid #8f3089;
}

.palm-frame {
  border-left: 10px solid #2f398b;
}

.cryptoqorn-frame {
  border-left: 10px solid #2f398b;
}

.section-title {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 61px;
  background: linear-gradient(90deg, #8f3089 0%, #d41d5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;

  @media (max-width: 1280px) {
    font-size: 36px;
    line-height: 46px;
  }

  @media (max-width: 768px) {
    font-size: 28px;
    line-height: 36px;
  }
}

.values-title {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.section-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section-body p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #3d3d3d;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Values Section */
.values {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #8f3089 0%, #2f398b 100%);
}

.values .container {
  padding-top: 70px;
  padding-bottom: 100px;

  @media (max-width: 768px) {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.values-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;

  @media (max-width: 768px) {
    margin-bottom: 30px;
  }
}

.values-intro {
  width: 100%;
}

.values-intro p {
  color: #ffffff;
}

.values-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  @media (max-width: 1280px) {
    flex-direction: column;
    gap: 15px;
  }
}

.value-card {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  gap: 10px;
  width: 520px;
  border-radius: 10px;

  @media (max-width: 1280px) {
    width: 100%;
    height: auto !important;
  }

  @media (max-width: 768px) {
    padding: 15px;
  }
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 5px;
  background: linear-gradient(90deg, #8f3089 0%, #d41d5c 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.value-card h3,
.value-card-title {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 41px;
  color: #ffffff;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 24px;
    line-height: 32px;
  }
}

.value-card p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 24px;
  }
}

.cards-row:first-child .value-card {
  height: 271px;
}

.cards-row:last-child .value-card {
  height: 211px;
}

/* Work Ethic Section */
.work-ethic {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 70px 0;

  @media (max-width: 768px) {
    padding: 40px 0;
  }
}

.work-ethic-content-body {
  width: 565px;

  @media (max-width: 1280px) {
    width: 100%;
  }
}

.work-ethic-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 1280px) {
    flex-direction: column;
    gap: 30px;
  }

  @media (max-width: 768px) {
    img {
      width: 150px;
      height: auto;
    }
  }
}
.work-ethic-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;
}

.work-ethic-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #3d3d3d;
  margin: 0;
}

.work-ethic-cta {
  width: 300px;
  padding: 5px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #2ea9e1 0%, #d41d5c 100%);
  border-radius: 10px;

  @media (max-width: 1280px) {
    width: 100%;
    max-width: 423px;
    margin-top: 20px;
  }

  @media (max-width: 768px) {
    padding: 10px 15px;
  }
}

.work-ethic-cta h3 {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  margin: 0;

  @media (max-width: 1280px) {
    font-size: 48px;
    line-height: 60px;
  }

  @media (max-width: 768px) {
    font-size: 36px;
    line-height: 46px;
  }
}

.work-ethic-cta p {
  font-family: "Typo Round", sans-serif;
  font-weight: 300;
  font-size: 23px;
  color: #ffffff;
  margin: 0;

  @media (max-width: 1280px) {
    font-size: 32px;
    line-height: 36px;
  }

  @media (max-width: 768px) {
    font-size: 24px;
    line-height: 28px;
  }
}

/* Architecture Section */
.architecture {
  background: linear-gradient(90deg, #8f3089 0%, #d41d5c 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0;

  @media (max-width: 1280px) {
    img {
      width: 100%;
      height: auto;
    }
  }

  @media (max-width: 768px) {
    padding: 40px 0;
  }
}

.architecture-images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.palm-content-body,
.cryptoqorn-content-body {
  width: 430px;

  @media (max-width: 1280px) {
    width: 100%;
  }
}

/* Palm Section */
.palm-section {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.palm-section .container {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media (max-width: 768px) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.palm-section .section-header {
  margin-bottom: 20px;
}

.palm-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;

  @media (max-width: 1280px) {
    flex-direction: column;
    gap: 30px;
  }
}

.palm-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 565px;

  @media (max-width: 1280px) {
    width: 100%;
  }

  img {
    width: 130px;
    height: 130px;

    @media (max-width: 768px) {
      width: 100px;
      height: 100px;
    }
  }
}

.palm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 540px;

  @media (max-width: 1280px) {
    width: 100%;
  }
}

.palm-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 15px;
  gap: 10px;
  border-left: 5px solid #d41d5c;
}

.palm-item h4 {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #3d3d3d;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 26px;
  }
}

.palm-item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #3d3d3d;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 22px;
  }
}

/* CryptoQorn Platform Section */
.cryptoqorn-platform {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.cryptoqorn-platform .container {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media (max-width: 768px) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.cryptoqorn-platform .section-header {
  margin-bottom: 20px;
}

.cryptoqorn-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  @media (max-width: 1280px) {
    flex-direction: column;
    gap: 30px;
  }
}

.cryptoqorn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 565px;

  @media (max-width: 1280px) {
    width: 100%;
  }

  img {
    width: 130px;
    height: 130px;

    @media (max-width: 768px) {
      width: 100px;
      height: 100px;
    }
  }
}

.cryptoqorn-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 540px;

  @media (max-width: 1280px) {
    width: 100%;
  }
}

.cryptoqorn-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 15px;
  gap: 10px;
  border-left: 5px solid #d41d5c;
}

.cryptoqorn-item h4,
.cryptoqorn-item h4 span {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: #3d3d3d;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 26px;
  }
}

.cryptoqorn-item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #3d3d3d;
  margin: 0;

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 22px;
  }
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  background: #fbfbfb;
  padding-top: 70px;
  padding-bottom: 70px;

  @media (max-width: 1280px) {
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }

  @media (max-width: 768px) {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer-swiss {
  width: 200px;
  height: 204.15px;
  margin-bottom: 20px;

  @media (max-width: 768px) {
    width: 150px;
    height: auto;

    img {
      width: 100%;
      height: auto;
    }
  }
}

.footer-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 50px;

  @media (max-width: 1280px) {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
}


.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  align-items: flex-start;
  gap: 20px;

  @media (min-width: 1280px) {
    align-items: flex-start;
  }

  @media (max-width: 1280px) {
    align-items: center;
  }

  @media (max-width: 768px) {
    gap: 10px;
    align-items: center;
  }

  h4 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #3d3d3d;
    margin: 0;

    @media (max-width: 768px) {
      font-size: 18px;
      line-height: 24px;
    }
  }

  .footer-link {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #3d3d3d;
    margin: 0;
    text-decoration: none;

    &:hover {
      opacity: 0.7;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      font-size: 18px;
      line-height: 24px;
    }
  }

}

.footer-logo {
  margin-top: 30px;

  @media (max-width: 1280px) {
    position: static;
    margin-top: 30px;
  }

  img {
    width: 133.57px;
    height: 100px;

    @media (max-width: 768px) {
      width: 100px;
      height: auto;
    }
  }
}

.work-ethic-icon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.rotate-q {
  display: inline-block;
  transform: rotate(-45deg);
}
