@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;
}

.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;
    }
  }

  a {
    text-decoration: none;
  }
}

.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(3, 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;
}

/* Key People Section */
.key-people {
  padding-top: 70px;
  padding-bottom: 100px;

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

.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;

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

.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;
  }
}

.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;
  }
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;

  @media (max-width: 1280px) {
    grid-template-columns: 1fr;
    gap: 40px 30px;
  }

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

.person-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 30px;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

.person-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

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

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.person-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 0 1 180px;
  min-width: 160px;

  @media (min-width: 1280px) {
    flex: 0 1 220px;
    min-width: 180px;
  }

  @media (max-width: 768px) {
    width: 100%;
    min-width: auto;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
  }
}

.person-right-column {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-items: flex-start;
  min-width: 0;

  @media (max-width: 768px) {
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
  }
}

.person-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;

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

.person-name-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.person-name {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #3d3d3d;
  margin: 0;

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

.name-dot {
  font-family: "Inter", sans-serif;
  display: inline-block;
}

.person-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #666666;
  margin: 0;

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

.linkedin-link {
  color: #d41d5c;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;

  &:hover {
    opacity: 0.7;
  }

  svg {
    width: 24px;
    height: 24px;
  }
}

.person-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #3d3d3d;
  margin: 0;
  text-align: left;

  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
}

/* RND LAB Execs and Ingrid Section */
.rnd-ingrid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e0e0e0;

  @media (max-width: 1280px) {
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
  }

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: none;
  }
}

.rnd-lab-execs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;

  @media (max-width: 768px) {
    align-items: center;
    text-align: center;
    order: 2;
  }
}

.rnd-title {
  font-family: "Typo Round", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #3d3d3d;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #3d3d3d;
  width: 100%;

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

.rnd-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;

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

.rnd-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.rnd-linkedin-link {
  color: #3d3d3d;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;

  &:hover {
    opacity: 0.7;
  }

  svg {
    width: 24px;
    height: 24px;
  }
}

.rnd-name {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #3d3d3d;

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

.ingrid-card {
  gap: 20px;
  @media (max-width: 768px) {
    align-items: center;
    order: 1;
  }
}

.ingrid-card .person-name-wrapper {
  flex-wrap: nowrap;
  align-items: center;
}

.ingrid-card .person-name {
  white-space: nowrap;
  flex-shrink: 0;
}

.william-card .person-name-wrapper {
  flex-wrap: nowrap;
  align-items: center;
}

.william-card .person-name {
  white-space: nowrap;
  flex-shrink: 0;
}

/* 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-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  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;
    }
  }

  p {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    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;
    transition: opacity 0.3s;

    &: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;
    }
  }
}

