/* ===== UTILITY CLASSES ===== */
/* These classes consolidate hundreds of duplicate declarations */

/* Typography utilities - replaces 50+ font-family declarations */
.font-inter { font-family: "Inter", Helvetica; }

/* Font size utilities - replaces many duplicate font-size declarations */
.text-48 { font-size: 48px; line-height: 52px; }
.text-36 { font-size: 36px; line-height: 40px; }
.text-24 { font-size: 24px; line-height: 32px; }
.text-20 { font-size: 20px; line-height: 28px; }
.text-16 { font-size: 16px; line-height: 24px; }
.text-14 { font-size: 14px; line-height: 20px; }
.text-12 { font-size: 12px; line-height: 16px; }

/* Font weight utilities */
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* Common padding utilities - replaces 7+ duplicate padding declarations */
.padding-section { padding: 64px 20px; }
.padding-large { padding: 96px 20px; }
.padding-xl { padding: 128px 24px; }

/* Color utilities */
.text-primary { color: #111827; }
.text-secondary { color: #6b7280; }
.bg-blur { 
  background-color: #ffffffb2; 
  backdrop-filter: blur(2px) brightness(100%); 
  -webkit-backdrop-filter: blur(2px) brightness(100%); 
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Common layout utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.relative { position: relative; }
.absolute { position: absolute; }

/* Animation utilities */
.transition-all { transition: all 0.3s ease; }
.transition-fast { transition: all 0.2s ease; }

/* Float animations for text bubbles */
.float-1 { animation: float 3s ease-in-out infinite; }
.float-2 { animation: float 3.5s ease-in-out infinite 1s; }
.float-3 { animation: float 2.8s ease-in-out infinite 0.5s; }

/* ===== CENTRALIZED HOVER ANIMATIONS ===== */
/* These utilities provide consistent interactive animations across both pages */

/* Button hover animations */
.btn-hover-lift {
  transition: all 0.2s ease;
}
.btn-hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px -4px #2281ff40;
}

.btn-hover-scale {
  transition: all 0.2s ease;
}
.btn-hover-scale:hover {
  transform: scale(1.02);
}

/* Card hover animations */
.card-hover-lift {
  transition: all 0.2s ease;
}
.card-hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px -2px #0000001a, 0px 8px 12px -1px #0000001a;
}

/* Text bubble hover animations */
.bubble-hover {
  transition: all 0.3s ease;
}
.bubble-hover:hover {
  transform: scale(1.1);
  box-shadow: 0px 15px 50px -15px #00000020;
}

/* List item hover animations */
.item-hover-slide {
  transition: all 0.2s ease;
}
.item-hover-slide:hover {
  transform: translateX(4px);
}

.item-hover-slide:hover .component-17 {
  transform: scale(1.1);
}

/* ===== MAIN COMPONENT STYLES ===== */

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  min-height: 100vh;
}

.home .header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 1280px;
  width: 100%;
  align-items: center;
  padding: 24px 32px;
  position: relative;
  flex: 0 0 auto;
  background-color: transparent;
}

.home .div {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  grid-column: 1;
}

.home .component {
  position: relative;
  width: 32px;
  height: 32px;
}

.home .div-wrapper {
  display: inline-flex;
  padding: 0px 0px 0px 8px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.home .logo {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 800;
  color: #111111;
  font-size: 24px;
  letter-spacing: -0.60px;
  line-height: 32px;
  white-space: nowrap;
}

.home .div-2 {
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  display: inline-flex;
  position: relative;
}

.home .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #6b7280;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.home .margin {
  display: inline-flex;
  padding: 0px 0px 0px 32px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  grid-column: 3;
  justify-self: end;
}

.home .component-2 {
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 20px;
  flex: 0 0 auto;
  background-color: #ff2264;
  border-radius: 8px;
  display: inline-flex;
  position: relative;
}

.home .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.home .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 0px 0px 80px;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
  align-self: stretch;
}

.home .section {
  display: flex;
  flex-direction: column;
  min-height: 896px;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.home .container-wrapper {
  display: flex;
  padding: 0px 24px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.home .container {
  display: flex;
  flex-direction: column;
  max-width: 896px;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.home .div-wrapper-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .main-heading {
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 800;
  color: #111111;
  font-size: 72px;
  text-align: center;
  letter-spacing: -3.60px;
  line-height: 72px;
  position: relative;
  align-self: stretch;
}

.home .subheading-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 672px;
  width: 100%;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.home .subheading {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.home .container-2 {
  display: flex;
  width: 100%;
  max-width: 516px;
  height: 72px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0px 0px;
  position: relative;
}

.home .component-3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  position: relative;
  flex: 0 0 auto;
  margin-left: -34.57px;
  background-color: #111111;
  border-radius: 9999px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.home .component-3:hover,
.home .component-3:focus {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px -4px #11111140;
}

.home .img {
  position: relative;
  width: 18px;
  height: 24px;
}

.home .component-4 {
  display: inline-flex;
  flex-direction: column;
  min-width: 181.88px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.home .text {
  color: #ffffff;
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--inter-semi-bold-font-family);
  font-weight: var(--inter-semi-bold-font-weight);
  font-size: var(--inter-semi-bold-font-size);
  text-align: center;
  letter-spacing: var(--inter-semi-bold-letter-spacing);
  line-height: var(--inter-semi-bold-line-height);
  white-space: nowrap;
  font-style: var(--inter-semi-bold-font-style);
}

.home .component-5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  position: relative;
  flex: 0 0 auto;
  margin-right: -34.57px;
  background-color: #f3f4f6;
  border-radius: 9999px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.home .component-5:hover,
.home .component-5:focus {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px -4px #37415140;
}

.home .component-6 {
  position: relative;
  width: 20px;
  height: 20px;
}

.home .component-7 {
  flex-direction: column;
  min-width: 197.14px;
  align-items: center;
  flex: 0 0 auto;
  display: inline-flex;
  position: relative;
}

.home .text-2 {
  color: #111111;
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--inter-semi-bold-font-family);
  font-weight: var(--inter-semi-bold-font-weight);
  font-size: var(--inter-semi-bold-font-size);
  text-align: center;
  letter-spacing: var(--inter-semi-bold-letter-spacing);
  line-height: var(--inter-semi-bold-line-height);
  white-space: nowrap;
  font-style: var(--inter-semi-bold-font-style);
}

.home .margin-2 {
  display: flex;
  height: 376px;
  padding: 48px 0px 0px;
  align-self: stretch;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.home .overlap-group-wrapper {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 328px;
}

.home .overlap-group {
  position: relative;
  width: 100%;
  height: 400px;
}

.home .a-group-of-diverse-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 400px;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.home .a-group-of-diverse {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  height: 450px;
  background-image: url(./img/gen-z-avatars.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.home .overlay-shadow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  position: absolute;
  top: 10%;
  left: 0%;
  background-color: #ffffffcc;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.home .overlay-shadow:hover {
  transform: scale(1.1);
  box-shadow: 0px 15px 50px -15px #00000020;
}

.home .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #111111;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.home .call-to-action-text-wrapper {
  display: inline-flex;
  top: 35%;
  right: 0%;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  position: absolute;
  background-color: #ffffffcc;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  animation: float 3.5s ease-in-out infinite 1s;
  transition: all 0.3s ease;
}

.home .call-to-action-text-wrapper:hover {
  transform: scale(1.1);
  box-shadow: 0px 15px 50px -15px #00000020;
}

.home .emoji-wrapper {
  display: flex;
  width: 38px;
  top: 3%;
  right: 10%;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  position: absolute;
  background-color: #ffffffcc;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  animation: float 2.8s ease-in-out infinite 0.5s;
  transition: all 0.3s ease;
}

.home .emoji-wrapper:hover {
  transform: scale(1.1);
  box-shadow: 0px 15px 50px -15px #00000020;
}

.home .section-2 {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  width: 100%;
  align-items: center;
  gap: 64px;
  position: relative;
  flex: 0 0 auto;
}

.home .heading {
  position: relative;
  width: 100%;
  max-width: 672px;
  height: 48px;
}

.home .container-3 {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.home .background {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 405px;
  align-items: flex-start;
  padding: 32px;
  position: relative;
  background-color: #f3f4f6;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.home .background:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 25px -5px #0000001a, 0px 20px 30px -10px #0000001a;
}

.home .div-wrapper-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .feature-heading {
  font-weight: 700;
  color: #111111;
  font-size: 20px;
  line-height: 28px;
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  letter-spacing: 0;
}

.home .feature-description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .feature-description {
  font-weight: 400;
  color: #6b7280;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  letter-spacing: 0;
}

.home .background-2 {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 405px;
  align-items: flex-start;
  padding: 32px;
  position: relative;
  background-color: #f3f4f6;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.home .background-2:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 25px -5px #0000001a, 0px 20px 30px -10px #0000001a;
}

.home .background-3 {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 405px;
  align-items: flex-start;
  padding: 32px;
  position: relative;
  background-color: #f3f4f6;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.home .background-3:hover {
  transform: translateY(-4px);
  box-shadow: 0px 10px 25px -5px #0000001a, 0px 20px 30px -10px #0000001a;
}

.home .section-heading-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}

.home .section-heading {
  position: relative;
  height: 48px;
  font-weight: 800;
  letter-spacing: -2.40px;
  line-height: 48px;
  font-family: "Inter", Helvetica;
  color: #111111;
  font-size: 48px;
  text-align: center;
}

.home .section-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(
    90deg,
    rgba(239, 246, 255, 1) 0%,
    rgba(238, 242, 255, 1) 100%
  );
}

.home .container-4 {
  position: relative;
  max-width: 896px;
  width: 100%;
  height: 196px;
}

.home .background-shadow-wrapper {
  display: flex;
  width: 100%;
  max-width: 896px;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.home .background-shadow {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
}

.home .background-4 {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-image: url(./img/background.png);
  background-size: cover;
  background-position: 50% 50%;
}

.home .div-wrapper-4 {
  display: inline-flex;
  padding: 0px 0px 0px 12px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.home .testimonial-source-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.home .testimonial-source {
  font-weight: 700;
  color: #1f2937;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  text-align: center;
}

.home .testimonial-wrapper {
  width: 100%;
  max-width: 896px;
  align-items: center;
  position: absolute;
  top: 76px;
  left: 0;
  display: flex;
  flex-direction: column;
}

.home .testimonial {
  font-weight: 800;
  color: #111111;
  font-size: 28px;
  letter-spacing: -1.80px;
  line-height: 32px;
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  text-align: center;
}

.home .container-5 {
  display: flex;
  width: 100%;
  max-width: 896px;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 172px;
  left: 0;
}

.home .container-6 {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.home .component-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.home .component-8 {
  position: relative;
  width: 27px;
  height: 24px;
}

.home .margin-3 {
  display: inline-flex;
  justify-content: center;
  padding: 0px 0px 0px 4px;
  align-self: stretch;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.home .img-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home .section-4 {
  display: flex;
  width: 100%;
  max-width: 1280px;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
  flex: 0 0 auto;
  padding: 0 32px;
}

.home .a-vibrant-stylized-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(243, 232, 255, 1) 0%,
    rgba(252, 231, 243, 1) 100%)
}

.home .a-vibrant-stylized {
  position: relative;
  max-width: 600px;
  width: 100%;
  height: 600px;
  margin: 0 auto;
  background-image: url(./img/pink-hair-avatar.png);
  background-size: cover;
  background-position: 50% 50%;
}

.home .container-7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  z-index: 0;
}

.home .section-heading-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 800;
  color: #111111;
  font-size: 48px;
  letter-spacing: -2.40px;
  line-height: 48px;
}

.home .section-description {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
}

.home .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .item {
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .margin-4 {
  display: inline-flex;
  padding: 4px 12px 0px 0px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.home .component-9 {
  position: relative;
  width: 14px;
  height: 16px;
}

.home .list-item {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #111111;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  text-align: left;
}

.home .span {
  font-weight: 600;
}

.home .text-wrapper-4 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #111111;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}

.home .component-10 {
  align-items: flex-start;
  padding: 12px 32px;
  flex: 0 0 auto;
  background-color: #ff2264;
  border-radius: 8px;
  display: inline-flex;
  position: relative;
}

.home .section-5 {
  display: flex;
  width: 100%;
  max-width: 1280px;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 112px 32px;
  position: relative;
  flex: 0 0 auto;
}

.home .container-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home .a-mock-up-of-a-wrapper {
  background: linear-gradient(145deg, rgb(187 226 254) 76%, rgb(107 170 236) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 32px;
  box-shadow: 0px 8px 30px #0000000f;
}

.home .a-mock-up-of-a {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  height: 536px;
  background-image: url(./img/mobile-app-mockup.png);
  background-size: cover;
  background-position: 50% 50%;
}

.home .an-abstract-wrapper {
  z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(204, 251, 241, 1) 0%,
    rgba(220, 252, 231, 1) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 32px;
  box-shadow: 0px 8px 30px #0000000f;
}

.home .an-abstract {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  height: 536px;
  background-image: url(./img/ai-protection-shield.png);
  background-size: cover;
  background-position: 50% 50%;
}

.home .container-9 {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.home .container-10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .section-heading-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 36px;
  font-family: "Inter", Helvetica;
  color: #111111;
  font-size: 48px;
  text-align: center;
}

.home .section-description-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 512px;
  width: 512px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.home .p {
  line-height: 24px;
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
}

.home .container-11 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

/* Individual investor card styling */
.home .container-11 .div {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
  transition: all 0.2s ease;
  min-width: 160px;
}

.home .container-11 .div:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 12px -4px #0000002a, 0px 20px 25px -5px #0000001a;
}

.home .background-5 {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-image: url(./img/background-4.png);
  background-size: cover;
  background-position: 50% 50%;
  flex-shrink: 0;
}

.home .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-left: 12px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #1f2937;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.home .background-6 {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-image: url(./img/background-5.png);
  background-size: cover;
  background-position: 50% 50%;
  flex-shrink: 0;
}

.home .background-7 {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-image: url(./img/background-3.svg);
  background-size: cover;
  background-position: 50% 50%;
  flex-shrink: 0;
}

.home .background-8 {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-image: url(./img/sl-logo.jpeg);
  background-size: cover;
  background-position: 50% 50%;
  flex-shrink: 0;
}



.home .section-6 {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  width: 100%;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(249, 250, 251, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.home .container-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 112px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .section-heading-4 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 800;
  letter-spacing: -2.40px;
  line-height: 48px;
  font-family: "Inter", Helvetica;
  color: #111111;
  font-size: 48px;
  text-align: center;
}

.home .container-13 {
  display: flex;
  flex-direction: column;
  max-width: 576px;
  width: 100%;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.home .section-description-2 {
  line-height: 28px;
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
}

.home .footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto -4.00px auto;
  flex: 0 0 auto;
  background-color: transparent;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-color: #e5e7eb;
  position: relative;
  align-self: stretch;
}

.home .container-14 {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.home .container-15 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .coverstar {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #111111;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.home .nav {
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0px 24px;
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
}

.home .component-11 {
  flex-direction: column;
  height: 24px;
  align-items: flex-start;
  flex: 0 0 auto;
  display: inline-flex;
  position: relative;
  transition: all 0.2s ease;
}

.home .component-11:hover {
  transform: translateY(-2px);
}

.home .container-16 {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.home .margin-5 {
  display: inline-flex;
  justify-content: center;
  align-self: stretch;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.home .component-12 {
  position: relative;
  width: 17.51px;
  height: 20px;
  margin-right: -0.01px;
}

.home .component-13 {
  position: relative;
  width: 17.5px;
  height: 20px;
}

.home .footer-text {
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  align-self: stretch;
}

/* Text Bubble Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  grid-column: 3;
  justify-self: end;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #111111;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Menu Styles */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  grid-column: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu .component-2 {
  display: none;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile Styles - 768px and below */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 999;
    padding-top: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }
  
  .nav-link:hover {
    background-color: #f8f9fa;
  }

  .home .a-mock-up-of-a {
    max-height: 400px;
  }

  .home .a-vibrant-stylized {
    max-height: 400px;
  }

  .home .an-abstract {
    max-height: 400px;
  }

  .home .header {
    padding: 16px 20px;
    position: relative;
    z-index: 1001;
  }
  
  .home .div {
    align-items: center;
    gap: 8px;
  }
  
  .home .margin {
    padding: 0;
  }
  
  .home .section {
    min-height: 600px;
    padding: 64px 0px 0px 0px;
  }
  
  .home .container-wrapper {
    padding: 0px 20px;
  }
  
  .home .container {
    max-width: 100%;
    gap: 20px;
  }
  
  .home .main-heading {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -2.4px;
  }
  
  .home .subheading-wrapper {
    max-width: 100%;
  }
  
  .home .subheading {
    font-size: 18px;
    line-height: 24px;
  }
  
  .home .container-2 {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 20px 0px 0px;
  }
  
  .home .component-3,
  .home .component-5 {
    margin: 0;
    padding: 12px 24px;
  }
  
  .home .overlap-group {
    height: 300px;
  }
  
  .home .a-group-of-diverse-wrapper {
    height: 300px;
  }
  
  .home .a-group-of-diverse {
    height: 250px;
    max-width: 100%;
  }
  
  .home .overlay-shadow {
    top: 10%;
    left: 0%;
    transform: scale(0.9);
  }
  
  .home .call-to-action-text-wrapper {
    top: 40%;
    right: 0%;
    transform: scale(0.9);
  }
  
  .home .emoji-wrapper {
    top: 8%;
    right: 15%;
    transform: scale(0.9);
  }
  
  .home .section-2 {
    gap: 32px;
    padding: 0px 20px;
  }
  
  .home .heading {
    max-width: 100%;
  }
  
  .home .container-3 {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .home .background,
  .home .background-2,
  .home .background-3 {
    max-width: 100%;
    margin-bottom: 0;
    padding: 24px 20px;
  }
  
  .home .feature-heading {
    font-size: 18px;
    line-height: 26px;
  }
  
  .home .feature-description {
    font-size: 14px;
    line-height: 20px;
  }
  
  .home .feature-description-wrapper {
    padding-top: 12px;
  }
  
  .home .section-heading-wrapper {
    margin-bottom: 20px;
  }

  .home .section-heading {
    font-size: 36px;
    line-height: 40px;
  }
  
  .home .section-3 {
    padding: 64px 20px;
  }
  
  .home .container-4 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .home .testimonial {
    font-size: 22px;
    line-height: 20px;
    letter-spacing: -1px;
  }
  
  .home .container-5 {
    max-width: 100%;
    padding: 0px 20px;
    top: 150px;
  }
  
  .home .container-6 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .home .section-4 {
    padding: 64px 20px;
    flex-direction: column;
    gap: 40px;
  }
  
  .home .a-vibrant-stylized-wrapper {
    max-width: 100%;
    order: 2;
    width: 100%;
  }
  
  .home .container-7 {
    max-width: 100%;
    padding: 0px 20px;
    order: 1;
  }
  
  .home .section-heading-2 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .home .section-description {
    font-size: 16px;
    line-height: 20px;
  }
  
  .home .list {
    gap: 20px;
  }
  
  .home .item {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  
  .home .margin-4 {
    padding: 0;
  }
  
  .home .section-5 {
    padding: 32px 20px;
    flex-direction: column;
    gap: 40px;
  }
  
  .home .container-8 {
    max-width: 100%;
    padding: 0px 20px;
    order: 1;
  }
  
  .home .a-mock-up-of-a-wrapper,
  .home .an-abstract-wrapper {
    max-width: 100%;
    order: 2;
    width: 100%;
  }
  
  .home .container-9 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .home .section-heading-3 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .home .section-description-wrapper {
    max-width: 100%;
  }
  
  .home .p {
    font-size: 16px;
    line-height: 20px;
  }
  
    .home .container-11 {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .home .container-11 .div {
    padding: 10px 20px;
    min-width: auto;
    justify-content: center;
    max-width: 300px;
    width: 100%;
  }

  .home .background-5,
  .home .background-6,
  .home .background-7,
  .home .background-8 {
    width: 28px;
    height: 28px;
  }

  .home .text-wrapper-5 {
    font-size: 16px;
    line-height: 24px;
    margin-left: 10px;
  }
  
  .home .section-6 {
    padding: 64px 20px;
  }
  
  .home .container-12 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .home .section-heading-4 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .home .container-13 {
    max-width: 100%;
  }
  
  .home .section-description-2 {
    font-size: 16px;
    line-height: 20px;
  }
  
  .home .footer {
    padding: 32px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .home .container-14 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .home .nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .home .margin-5 {
    padding: 0;
  }
}

/* Tablet Styles - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .home .header {
    padding: 20px 24px;
  }
  
  .home .section {
    padding: 80px 32px;
  }
  
  .home .container-wrapper {
    padding: 0px 32px;
  }
  
  .home .main-heading {
    font-size: 60px;
    line-height: 64px;
    letter-spacing: -3px;
  }
  
  .home .subheading {
    font-size: 19px;
    line-height: 26px;
  }
  
  .home .container-2 {
    max-width: 100%;
    gap: 14px;
  }
  
  .home .overlap-group {
    height: 350px;
  }
  
  .home .a-group-of-diverse-wrapper {
    height: 350px;
  }
  
  .home .overlay-shadow {
    top: 10%;
    left: 0%;
    transform: scale(0.95);
  }
  
  .home .call-to-action-text-wrapper {
    top: 30%;
    right: 8%;
    transform: scale(0.95);
  }
  
  .home .emoji-wrapper {
    top: 5%;
    right: 12%;
    transform: scale(0.95);
  }
  
  .home .section-2 {
    gap: 48px;
    padding: 0px 32px;
  }
  
  .home .container-3 {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
    padding: 0px 32px;
  }
  
  /* For larger tablets that can fit 2 columns */
  @media (min-width: 900px) and (max-width: 1024px) {
    .home .container-3 {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .home .background,
    .home .background-2,
    .home .background-3 {
      flex: 1 1 calc(50% - 10px);
      min-width: 280px;
    }
    
    .home .background-3 {
      flex: 1 1 100%;
    }
  }
  
  .home .background,
  .home .background-2,
  .home .background-3 {
    max-width: 100%;
    margin-bottom: 0;
    padding: 28px 24px;
  }
  
  .home .section-3 {
    padding: 80px 32px;
  }
  
  .home .container-4,
  .home .container-5,
  .home .container-6 {
    padding: 0px 32px;
  }
  
  .home .section-4 {
    padding: 80px 32px;
  }
  
  .home .container-7 {
    padding: 0px 32px;
  }
  
  .home .section-5 {
    padding: 80px 32px;
  }
  
  .home .container-8,
  .home .container-9 {
    padding: 0px 32px;
  }
  
  .home .section-6 {
    padding: 80px 32px;
  }
  
  .home .container-12 {
    padding: 0px 32px;
  }
  
    .home .container-11 {
    gap: 24px;
  }

  .home .container-11 .div {
    padding: 12px 24px;
    min-width: 140px;
  }

  .home .background-5,
  .home .background-6,
  .home .background-7,
  .home .background-8,
  .home .background-9 {
    width: 32px;
    height: 32px;
  }

  .home .text-wrapper-5 {
    font-size: 16px;
    line-height: 24px;
    margin-left: 12px;
  }
  
  .home .footer {
    padding: 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .home .container-14 {
    padding: 0px 32px;
  }
}

/* Desktop Styles - 1025px and above */
@media (min-width: 1025px) {
  .home .container-wrapper {
    padding: 0px 64px;
  }
  
  .home .container {
    max-width: 896px;
  }
  
  .home .subheading-wrapper {
    max-width: 672px;
  }
  
  .home .section-2 {
    max-width: 1280px;
  }
  
  .home .heading {
    max-width: 672px;
  }
  
  .home .container-3 {
    gap: 40px;
    max-width: 1280px;
  }
  
  .home .background,
  .home .background-2,
  .home .background-3 {
    max-width: 380px;
    min-height: 160px;
  }
  
  .home .container-4 {
    max-width: 896px;
    margin: 0 auto;
  }
  
  .home .container-7 {
    max-width: 1280px;
  }
  
  .home .container-9 {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .home .container-12 {
    max-width: 1280px;
    margin: 0 auto;
  }
}

/* ======================================= */
/* CAREERS PAGE STYLES */
/* ======================================= */

.careers {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  position: relative;
  background-color: #ffffff;
}

.careers .header-2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 1280px;
  width: 100%;
  align-items: center;
  padding: 24px 32px;
  position: relative;
  flex: 0 0 auto;
  background-color: transparent;
}

.careers .div-3 {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  grid-column: 1;
}

.careers .component-14 {
  position: relative;
  width: 32px;
  height: 32px;
}

.careers .div-wrapper-5 {
  padding: 0px 0px 0px 8px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.careers .logo-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 800;
  color: #111111;
  font-size: 24px;
  letter-spacing: -0.60px;
  line-height: 32px;
  white-space: nowrap;
}

.careers .div-4 {
  flex-direction: column;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .text-wrapper-6 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #6b7280;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.careers .margin-6 {
  margin: 0px 0px 0px 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  grid-column: 3;
  justify-self: end;
}

.careers .component-15 {
  flex-direction: column;
  padding: 8px 20px;
  flex: 0 0 auto;
  background-color: #ff2264;
  border-radius: 8px;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .text-wrapper-7 {
  width: fit-content;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  letter-spacing: 0;
}


.careers .main-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .section-7 {
  display: flex;
  width: 100%;
  min-height: 900px;
  align-items: center;
  justify-content: center;
  padding: 192px 24px 96px;
  position: relative;
  overflow: hidden;
}

.careers .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(249, 250, 251, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.careers .section-paints {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

.careers .container-17 {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  gap: 16px;
  padding: 0px 24px;
  position: relative;
  margin-top: -104.00px;
  margin-bottom: -104.00px;
}

.careers .div-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ff2264;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .we-re-rebuilding {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 800;
  color: #111827;
  font-size: 72px;
  text-align: center;
  letter-spacing: -3.60px;
  line-height: 72px;
}

.careers .join-a-team-of-bold-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 768px;
  width: 768px;
  align-items: center;
  padding: 8px 0px 24px;
  position: relative;
  flex: 0 0 auto;
}

.careers .join-a-team-of-bold {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4b5563;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .see-open-roles-wrapper {
  justify-content: center;
  padding: 12px 32px;
  flex: 0 0 auto;
  background-color: #2281ff;
  border-radius: 9999px;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .see-open-roles {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.careers .text-wrapper-9 {
  font-weight: 600;
}

.careers .text-wrapper-10 {
  font-weight: 700;
}

.careers .container-18 {
  position: relative;
  max-width: 1024px;
  width: 1024px;
  height: 448px;
}

.careers .overlap-group-2 {
  position: relative;
  height: 472px;
  top: 12px;
}

.careers .a-diverse-group-of-wrapper {
  display: flex;
  width: 1024px;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.careers .a-diverse-group-of {
  position: relative;
  max-width: 1024px;
  width: 624px;
  height: 472px;
  background-image: url(./img/diverse-avatars.png);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .overlay-shadow-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  position: absolute;
  top: 10%;
  left: 60%;
  background-color: #ffffffcc;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  animation: float 3s ease-in-out infinite;
}

.careers .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #111827;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
}

.careers .overlay-shadow-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  position: absolute;
  top: 25%;
  right: 5%;
  background-color: #ffffffcc;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px #0000001a, 0px 4px 6px -1px #0000001a;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  animation: float 3.5s ease-in-out infinite 1s;
}

.careers .text-wrapper-7 {
  width: fit-content;
  font-weight: 600;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  letter-spacing: 0;
}

.careers .main-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .section-7 {
  display: flex;
  width: 100%;
  min-height: 900px;
  align-items: center;
  justify-content: center;
  padding: 192px 24px 96px;
  position: relative;
  overflow: hidden;
}

.careers .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(249, 250, 251, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.careers .section-paints {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

.careers .container-17 {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  gap: 16px;
  padding: 0px 24px;
  position: relative;
  margin-top: -104.00px;
  margin-bottom: -104.00px;
}

.careers .div-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ff2264;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .we-re-rebuilding {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 800;
  color: #111827;
  font-size: 52px;
  text-align: center;
  letter-spacing: -3.60px;
  line-height: 72px;
}

.careers .join-a-team-of-bold-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 768px;
  width: 768px;
  align-items: center;
  padding: 8px 0px 24px;
  position: relative;
  flex: 0 0 auto;
}

.careers .join-a-team-of-bold {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4b5563;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .see-open-roles-wrapper {
  justify-content: center;
  padding: 12px 32px;
  flex: 0 0 auto;
  background-color: #2281ff;
  border-radius: 9999px;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .see-open-roles {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.careers .text-wrapper-9 {
  font-weight: 600;
}

.careers .text-wrapper-10 {
  font-weight: 700;
}

.careers .container-18 {
  position: relative;
  max-width: 1024px;
  width: 1024px;
  height: 448px;
}

.careers .overlap-group-2 {
  position: relative;
  height: 472px;
  top: 12px;
}

.careers .a-diverse-group-of-wrapper {
  display: flex;
  width: 1024px;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

.careers .a-diverse-group-of {
  position: relative;
  max-width: 1024px;
  width: 624px;
  height: 472px;
  background-image: url(./img/diverse-avatars.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.careers .overlay-shadow-2 {
  display: flex;
  flex-direction: column;
  width: 138px;
  align-items: flex-start;
  padding: 12px;
  position: absolute;
  top: 107px;
  left: 57px;
  background-color: #ffffffb2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 10px 40px -10px #00000014;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  animation: float 3s ease-in-out infinite;
}

.careers .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #111827;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
}

.careers .overlay-shadow-3 {
  display: flex;
  flex-direction: column;
  width: 110px;
  align-items: flex-start;
  padding: 12px;
  position: absolute;
  background-color: #ffffffb2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 10px 40px -10px #00000014;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  animation: float 3.5s ease-in-out infinite 1s;
}

.careers .section-8 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 128px 24px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f7f7f7;
}

.careers .container-19 {
  display: flex;
  flex-direction: column;
  max-width: 896px;
  align-items: flex-start;
  gap: 24px;
  padding: 0px 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.careers .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #111827;
  font-size: 48px;
  text-align: center;
  letter-spacing: -2.40px;
  line-height: 48px;
}

.careers .text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #374151;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 32px;
}

.careers .safely-and-joyfully {
  position: relative;
  width: fit-content;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 32px;
}

.careers .text-wrapper-14 {
  color: #ff2264;
}



.careers .section-9 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 128px 24px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.careers .container-20 {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  align-items: center;
  gap: 64px;
  padding: 0px 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.careers .container-21 {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  width: 100%;
  align-items: center;
  gap: 32px;
  position: relative;
  flex: 0 0 auto;
}

.careers .background-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 56px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f7f7f7;
  border-radius: 16px;
}

.careers .text-wrapper-16 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #111827;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .text-wrapper-17 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4b5563;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.careers .section-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(
    90deg,
    rgba(239, 246, 255, 1) 0%,
    rgba(238, 242, 255, 1) 100%
  );
}

.careers .container-22 {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.careers .container-23 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .section-heading-5 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #111111;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0;
  line-height: 36px;
}

.careers .container-24 {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.careers .section-description-3 {
  position: relative;
  width: fit-content;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.careers .container-25 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .background-9 {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-image: url(./img/background-4.png);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .component-16 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 0px 0px 12px;
  position: relative;
  flex: 0 0 auto;
}

.careers .text-wrapper-18 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #4b5563;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.careers .background-10 {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-image: url(./img/background-5.png);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .background-11 {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-image: url(./img/background-6.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .background-13 {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-image: url(./img/sl-logo.jpeg);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .background-14 {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-image: url(./img/cherubic-logo.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .section-11 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 60px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.careers .container-26 {
  display: flex;
  max-width: 1152px;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 0px 24px 0px 10.55px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.careers .container-27 {
  display: flex;
  flex-direction: column;
  max-width: 528px;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

.careers .div-wrapper-6 {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .text-wrapper-19 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #111827;
  font-size: 48px;
  letter-spacing: -2.40px;
  line-height: 48px;
}

.careers .we-re-hiring {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4b5563;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .div-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .item-2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .margin-7 {
  padding: 6px 0px 0px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.careers .component-17 {
  position: relative;
  width: 20.25px;
  height: 18px;
}

.careers .div-7 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #1f2937;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.careers .text-wrapper-20 {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #1f2937;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .section-12 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 60px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.careers .container-28 {
  display: flex;
  max-width: 1152px;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 0px 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.careers .container-29 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  max-width: 528px;
}

.careers .we-re-a-globally-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 512px;
  width: 512px;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.careers .we-re-a-globally {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4b5563;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .background-12 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f7f7f7;
  border-radius: 8px;
}

.careers .component-18 {
  position: relative;
  width: 14px;
  height: 16px;
}

.careers .text-wrapper-21 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #111827;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.careers .container-30 {
  position: relative;
  flex: 1;
  flex-grow: 1;
  height: 520px;
}

.careers .a-smiling-female {
  position: absolute;
  width: 252px;
  height: 252px;
  top: 0;
  left: 0;
  border-radius: 16px;
  box-shadow: 0px 10px 40px -10px #00000014;
  background-image: url(./img/software-engineer.png);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .a-creative {
  position: absolute;
  width: 252px;
  height: 252px;
  top: 0;
  left: 268px;
  border-radius: 16px;
  box-shadow: 0px 10px 40px -10px #00000014;
  background-image: url(./img/brainstorming-session.png);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .a-product-designer {
  position: absolute;
  width: 252px;
  height: 252px;
  top: 268px;
  left: 0;
  border-radius: 16px;
  box-shadow: 0px 10px 40px -10px #00000014;
  background-image: url(./img/designer-sketching.png);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .close-up-on-a-screen {
  position: absolute;
  width: 252px;
  height: 252px;
  top: 268px;
  left: 268px;
  border-radius: 16px;
  box-shadow: 0px 10px 40px -10px #00000014;
  background-image: url(./img/code-screen-coffee.png);
  background-size: cover;
  background-position: 50% 50%;
}

.careers .section-13 {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 60px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f7f7f7;
}

.careers .container-31 {
  display: flex;
  flex-direction: column;
  max-width: 768px;
  align-items: center;
  gap: 16px;
  padding: 0px 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin: 0 auto;
}

.careers .we-re-actively-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 0px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .we-re-actively {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #4b5563;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.careers .component-19 {
  justify-content: center;
  padding: 16px 40px;
  flex: 0 0 auto;
  background-color: #ff2264;
  border-radius: 9999px;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .text-wrapper-22 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.careers .footer-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 49px 48px 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex: 0 0 auto;
  background-color: transparent;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-color: #e5e7eb;
  position: relative;
  align-self: stretch;
}

.careers .container-32 {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.careers .container-33 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.careers .coverstar-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #111111;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.careers .nav-2 {
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0px 24px;
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
}

.careers .component-20 {
  flex-direction: column;
  height: 24px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .container-34 {
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.careers .component-21 {
  flex-direction: column;
  align-self: stretch;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .component-22 {
  position: relative;
  width: 20px;
  height: 20px;
}

.careers .margin-8 {
  justify-content: center;
  align-self: stretch;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.careers .component-23 {
  flex-direction: column;
  flex: 1;
  flex-grow: 1;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}

.careers .component-24 {
  position: relative;
  width: 17.51px;
  height: 20px;
  margin-right: -0.01px;
}

.careers .component-25 {
  position: relative;
  width: 17.5px;
  height: 20px;
}

.careers .footer-text-2 {
  margin-top: -1.00px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  align-self: stretch;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  grid-column: 3;
  justify-self: end;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #111111;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Menu Styles */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile Styles - 768px and below */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 999;
    padding-top: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }
  
  .nav-link:hover {
    background-color: #f8f9fa;
  }
  
  .careers .header-2 {
    padding: 16px 20px;
    position: relative;
    z-index: 1001;
  }
  
  /* Footer link styling */
  .nav a.component-11,
  .nav-2 a.component-20 {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
  }
  
  .nav a.component-11:hover,
  .nav-2 a.component-20:hover {
    opacity: 0.8;
  }
  
  .careers .margin-6 {
    padding: 0;
    margin: 0px;
  }
  
  .careers .section-7 {
    min-height: 700px;
    padding: 140px 20px 48px;
  }
  
  .careers .container-17 {
    max-width: 100%;
    padding: 0px 20px;
    gap: 24px;
  }
  
  .careers .text-wrapper-8 {
    font-size: 24px;
    line-height: 28px;
  }
  
  .careers .we-re-rebuilding {
    font-size: 36px;
        line-height: 40px;
    letter-spacing: -2px;
  }
  
  .careers .join-a-team-of-bold-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 16px 0px 32px;
  }
  
  .careers .join-a-team-of-bold {
    font-size: 16px;
    line-height: 24px;
  }
  
  .careers .see-open-roles-wrapper {
    padding: 16px 24px;
  }
  
  .careers .see-open-roles {
    font-size: 16px;
    line-height: 24px;
  }
  
  .careers .container-18 {
    max-width: 100%;
    width: 100%;
    height: 300px;
  }
  
  .careers .overlap-group-2 {
    height: 324px;
  }
  
  .careers .a-diverse-group-of-wrapper {
    width: 100%;
  }
  
  .careers .a-diverse-group-of {
    width: 100%;
    height: 290px;
    max-width: 500px;
  }
  
  .careers .overlay-shadow-2 {
    top: 60%;
    left: 0%;
    transform: scale(0.8);
  }
  
  .careers .overlay-shadow-3 {
    top: 10%;
    right: 5%;
    transform: scale(0.8);
  }
  
  .careers .text-wrapper-11 {
    font-size: 12px;
    line-height: 16px;
  }
  
  .careers .section-8,
  .careers .section-9,
  .careers .section-10 {
    padding: 64px 20px;
  }
  
  .careers .text-wrapper-12 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .careers .text-wrapper-13 {
    font-size: 20px;
    line-height: 28px;
  }

  .careers .text-wrapper-14 {
    font-size: 20px;
}
  
  .careers .container-19 {
    padding: 0px 20px;
  }
  
  .careers .container-20 {
    gap: 32px;
    padding: 0px 20px;
  }
  
  .careers .container-21 {
    gap: 24px;
  }
  
  .careers .background-8 {
    padding: 32px 24px;
  }
  
  .careers .text-wrapper-16 {
    font-size: 20px;
    line-height: 24px;
  }
  
  .careers .text-wrapper-17 {
    font-size: 16px;
    line-height: 20px;
  }
  
  /* Section 10 - Investor Logos Mobile Optimization */
  .careers .section-10 {
    padding: 48px 20px;
  }
  
  .careers .container-22 {
    max-width: 100%;
    gap: 32px;
  }
  
  .careers .container-23 {
    gap: 12px;
  }
  
  .careers .section-heading-5 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1.5px;
  }
  
  .careers .section-description-3 {
    font-size: 16px;
    line-height: 22px;
    max-width: 90%;
  }
  
  .careers .container-25 {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  
  /* Individual investor logo containers */
  .careers .container-25 .div-3 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 2px 4px -1px #0000000a;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .careers .container-25 .div-3:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px -2px #0000001a;
    border-color: #d1d5db;
  }
  
  /* Logo sizes for mobile */
  .careers .background-9,
  .careers .background-10,
  .careers .background-11,
  .careers .background-13,
  .careers .background-14 {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .careers .component-16 {
    padding: 0px 0px 0px 8px;
  }
  
  .careers .text-wrapper-18 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #374151;
  }
  
  /* Section 11 Mobile Improvements */
  .careers .section-11 {
    padding: 48px 20px;
  }
  
  .careers .container-26 {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .careers .container-27 {
    max-width: 100%;
    text-align: center;
  }
  
  .careers .text-wrapper-19 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1.5px;
    text-align: center;
  }
  
  .careers .we-re-hiring {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 100%;
  }
  
  .careers .div-6 {
    gap: 16px;
    align-items: center;
  }
  
  .careers .item-2 {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
  }
  
  .careers .margin-7 {
    padding: 4px 0px 0px;
    flex-shrink: 0;
  }
  
  .careers .component-17 {
    width: 18px;
    height: 16px;
  }
  
  .careers .div-7 {
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
    text-align: left;
  }
  
  .careers .text-wrapper-20 {
    font-size: 16px;
    line-height: 24px;
  }
  
  /* Section 12 Mobile Improvements */
  .careers .section-12 {
    padding: 48px 20px;
  }
  
  .careers .container-28 {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    padding: 0px;
  }
  
  .careers .container-29 {
    max-width: 100%;
    text-align: center;
  }
  
  .careers .we-re-a-globally-wrapper {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  
  .careers .we-re-a-globally {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
  
  .careers .background-12 {
    padding: 16px;
    text-align: left;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 1px 3px 0px #0000001a;
  }
  
  .careers .component-18 {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .careers .text-wrapper-21 {
    font-size: 15px;
    line-height: 22px;
    flex: 1;
  }
  
  .careers .margin-4 {
    padding: 0;
  }
  
  .careers .section-5 {
    padding: 32px 20px;
    flex-direction: column;
    gap: 40px;
  }
  
  .careers .container-8 {
    max-width: 100%;
    padding: 0px 20px;
    order: 1;
  }
  
  .careers .a-mock-up-of-a-wrapper,
  .careers .an-abstract-wrapper {
    max-width: 100%;
    order: 2;
    width: 100%;
  }
  
  .careers .container-9 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .careers .section-heading-3 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .careers .section-description-wrapper {
    max-width: 100%;
  }
  
  .careers .p {
    font-size: 16px;
    line-height: 20px;
  }
  
  .careers .container-11 {
    gap: 16px;
  }
  
  .careers .background-5,
  .careers .background-6,
  .careers .background-7 {
    width: 32px;
    height: 32px;
  }
  
  .careers .text-wrapper-5 {
    font-size: 14px;
    line-height: 20px;
  }
  
  .careers .section-6 {
    padding: 64px 20px;
  }
  
  .careers .container-12 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .careers .section-heading-4 {
    font-size: 36px;
    line-height: 40px;
  }
  
  .careers .container-13 {
    max-width: 100%;
  }
  
  .careers .section-description-2 {
    font-size: 16px;
    line-height: 20px;
  }
  
  .careers .footer {
    padding: 32px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .careers .container-14 {
    max-width: 100%;
    padding: 0px 20px;
  }
  
  .careers .nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .careers .margin-5 {
    padding: 0;
  }
}

/* Tablet Styles - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .careers .header-2 {
    padding: 20px 24px;
  }
  
  .careers .section-7 {
    min-height: 800px;
    padding: 128px 32px 64px;
  }
  
  .careers .container-17 {
    padding: 0px 32px;
    gap: 20px;
  }
  
  .careers .text-wrapper-8 {
    font-size: 28px;
    line-height: 32px;
  }
  
  .careers .we-re-rebuilding {
    font-size: 56px;
    line-height: 60px;
    letter-spacing: -2.8px;
  }
  
  .careers .join-a-team-of-bold-wrapper {
    max-width: 700px;
    width: 700px;
    padding: 12px 0px 28px;
  }
  
  .careers .join-a-team-of-bold {
    font-size: 18px;
    line-height: 26px;
  }
  
  .careers .see-open-roles-wrapper {
    padding: 14px 28px;
  }
  
  .careers .container-18 {
    max-width: 800px;
    width: 800px;
    height: 380px;
  }
  
  .careers .overlap-group-2 {
    height: 404px;
  }
  
  .careers .a-diverse-group-of-wrapper {
    width: 800px;
  }
  
  .careers .a-diverse-group-of {
    width: 500px;
    height: 440px;
  }
  
  .careers .overlay-shadow-2 {
    top: 50%;
    left: 0%;
    transform: scale(0.9);
  }
  
  .careers .overlay-shadow-3 {
    top: 25%;
    right: 5%;
    transform: scale(0.9);
  }
  
  .careers .text-wrapper-11 {
    font-size: 13px;
    line-height: 18px;
  }
  
  .careers .section-8,
  .careers .section-9,
  .careers .section-10 {
    padding: 96px 32px;
  }
  
  .careers .text-wrapper-12 {
    font-size: 42px;
    line-height: 46px;
  }
  
  .careers .container-19,
  .careers .container-20 {
    padding: 0px 32px;
  }
  
  .careers .container-21 {
    gap: 28px;
  }
  
  .careers .background-8 {
    padding: 40px 32px;
  }
  
  /* Section 10 - Investor Logos Tablet Optimization */
  .careers .section-10 {
    padding: 64px 32px;
  }
  
  .careers .container-22 {
    gap: 40px;
  }
  
  .careers .section-heading-5 {
    font-size: 40px;
    line-height: 44px;
  }
  
  .careers .section-description-3 {
    font-size: 18px;
    line-height: 24px;
    max-width: 80%;
  }
  
  .careers .container-25 {
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Tablet logo containers */
  .careers .container-25 .div-3 {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 2px 6px -1px #0000000d;
    transition: all 0.3s ease;
    flex: 0 1 auto;
    min-width: 160px;
  }
  
  .careers .container-25 .div-3:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 16px -3px #0000001a;
    border-color: #cbd5e1;
  }
  
  /* Logo sizes for tablet */
  .careers .background-9,
  .careers .background-10,
  .careers .background-11,
  .careers .background-13,
  .careers .background-14 {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
  
  .careers .component-16 {
    padding: 0px 0px 0px 10px;
  }
  
  .careers .text-wrapper-18 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
  }
  
  .careers .section-11 {
    padding: 96px 32px;
  }
  
  .careers .container-26 {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    padding: 0px 32px;
  }
  
  .careers .container-27 {
    max-width: 100%;
  }
  
  .careers .text-wrapper-19 {
    font-size: 42px;
    line-height: 46px;
  }
  
  .careers .we-re-hiring {
    font-size: 18px;
    line-height: 26px;
  }
  
  .careers .div-6 {
    gap: 24px;
  }
  
  .careers .item-2 {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  
  .careers .margin-7 {
    padding: 6px 0px 0px;
  }
  
  .careers .div-7 {
    font-size: 17px;
    line-height: 26px;
    white-space: normal;
  }
  
  .careers .text-wrapper-20 {
    font-size: 17px;
    line-height: 26px;
  }
  
  .careers .section-12 {
    padding: 96px 32px;
  }
  
  .careers .container-28 {
    gap: 48px;
    max-width: 100%;
    padding: 0px;
  }
  
  .careers .container-29 {
    max-width: 100%;
  }
  
  .careers .we-re-a-globally {
    font-size: 18px;
    line-height: 26px;
  }
  
  .careers .text-wrapper-19 {
    font-size: 42px;
    line-height: 46px;
  }
  
  .careers .div-6 {
    gap: 20px;
  }
  
  .careers .background-12 {
    padding: 20px 24px;
  }
  
  .careers .text-wrapper-21 {
    font-size: 16px;
    line-height: 24px;
  }
  
  .careers .section-13 {
    padding: 96px 32px;
  }
  
  .careers .section-heading-5 {
    font-size: 42px;
    line-height: 46px;
  }
  
  .careers .footer-2 {
    padding: 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .careers .container-32 {
    padding: 0px 32px;
  }
}

/* Desktop Styles - 1025px and above */
@media (min-width: 1025px) {
  .careers .section-7 {
    min-height: 900px;
    padding: 192px 24px 96px;
  }
  
  .careers .container-17 {
    max-width: 1200px;
    gap: 16px;
  }
  
  .careers .text-wrapper-8 {
    font-size: 32px;
    line-height: 28px;
  }
  
  .careers .we-re-rebuilding {
    font-size: 72px;
    line-height: 72px;
    letter-spacing: -3.6px;
    transition: all 0.3s ease;
  }
  
  .careers .we-re-rebuilding:hover {
    transform: scale(1.02);
  }
  
  .careers .join-a-team-of-bold-wrapper {
    max-width: 768px;
    width: 768px;
    padding: 8px 0px 24px;
  }
  
  .careers .join-a-team-of-bold {
    font-size: 20px;
    line-height: 28px;
  }
  
  .careers .see-open-roles-wrapper {
    padding: 12px 32px;
    transition: all 0.2s ease;
  }
  
  .careers .see-open-roles-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 16px -4px #2281ff40;
  }
  
  .careers .container-18 {
    max-width: 1024px;
    width: 1024px;
    height: 448px;
  }
  
  .careers .overlap-group-2 {
    height: 472px;
  }
  
  .careers .a-diverse-group-of-wrapper {
    width: 1024px;
  }
  
  .careers .a-diverse-group-of {
    width: 624px;
    height: 500px;
  }
  
  .careers .overlay-shadow-2 {
    top: 50%;
    left: 0%;
    transition: all 0.3s ease;
  }
  
  .careers .overlay-shadow-3 {
    top: 25%;
    right: 5%;
    transition: all 0.3s ease;
  }
  
  .careers .overlay-shadow-2:hover,
  .careers .overlay-shadow-3:hover {
    transform: scale(1.1);
    box-shadow: 0px 15px 50px -15px #00000020;
  }
  
  .careers .text-wrapper-11 {
    font-size: 14px;
    line-height: 20px;
  }
  
  .careers .container-20 {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .careers .container-21 {
    max-width: 1000px;
  }
  
  .careers .section-8 {
    padding: 128px 64px;
  }
  
  .careers .section-9 {
    padding: 128px 64px;
  }
  
  .careers .section-10 {
    padding: 80px 64px;
  }
  
  .careers .container-22 {
    gap: 60px;
  }
  
  .careers .section-heading-5 {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -2px;
  }
  
  .careers .section-description-3 {
    font-size: 20px;
    line-height: 28px;
    max-width: 60%;
  }
  
  .careers .container-25 {
    gap: 80px;
    justify-content: center;
    align-items: center;
  }
  
  /* Desktop logo containers with enhanced effects */
  .careers .container-25 .div-3 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 4px 8px -2px #0000000a, 0px 8px 16px -4px #0000000a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .careers .container-25 .div-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
  }
  
  .careers .container-25 .div-3:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0px 8px 20px -4px #0000001a, 0px 16px 32px -8px #0000001a;
    border-color: #cbd5e1;
  }
  
  .careers .container-25 .div-3:hover::before {
    left: 100%;
  }
  
  /* Desktop logo sizes */
    .careers .background-9,
  .careers .background-10,
  .careers .background-11,
  .careers .background-13,
  .careers .background-14 {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .careers .container-25 .div-3:hover .background-9,
  .careers .container-25 .div-3:hover .background-10,
  .careers .container-25 .div-3:hover .background-11,
  .careers .container-25 .div-3:hover .background-13,
  .careers .container-25 .div-3:hover .background-14 {
    transform: scale(1.1);
  }
  
  .careers .component-16 {
    padding: 0px 0px 0px 12px;
  }
  
  .careers .text-wrapper-18 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
  }
  
  .careers .container-25 .div-3:hover .text-wrapper-18 {
    color: #1f2937;
  }
  
  .careers .section-11 {
    padding: 128px 64px;
  }
  
  .careers .container-26 {
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
    padding: 0px 24px 0px 10.55px;
  }
  
  .careers .container-27 {
    max-width: 600px;
  }
  
  .careers .text-wrapper-19 {
    font-size: 48px;
    line-height: 56px;
  }
  
  .careers .we-re-hiring {
    font-size: 20px;
    line-height: 30px;
  }
  
  .careers .div-6 {
    gap: 24px;
  }
  
  .careers .item-2 {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    transition: all 0.2s ease;
  }
  
  .careers .item-2:hover {
    transform: translateX(4px);
  }
  
  .careers .margin-7 {
    padding: 6px 0px 0px;
  }
  
  .careers .div-7 {
    font-size: 18px;
    line-height: 28px;
    white-space: nowrap;
  }
  
  .careers .text-wrapper-20 {
    font-size: 18px;
    line-height: 28px;
  }
  
  .careers .component-17 {
    transition: all 0.2s ease;
  }
  
  .careers .item-2:hover .component-17 {
    transform: scale(1.1);
  }
  
  .careers .section-12 {
    padding: 128px 64px;
  }
  
  .careers .container-28 {
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
  }
  
  .careers .container-29 {
    max-width: 600px;
  }
  
  .careers .text-wrapper-19 {
    font-size: 48px;
    line-height: 56px;
  }
  
  .careers .we-re-a-globally {
    font-size: 20px;
    line-height: 28px;
  }
  
  .careers .div-6 {
    gap: 24px;
    max-width: 600px;
  }
  
  .careers .background-12 {
    padding: 24px 28px;
    transition: all 0.2s ease;
  }
  
  .careers .background-12:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px -2px #0000001a, 0px 8px 12px -1px #0000001a;
  }
  
  .careers .text-wrapper-21 {
    font-size: 18px;
    line-height: 26px;
  }
  
  .careers .section-13 {
    padding: 128px 64px;
  }
}

/* Extra Small Mobile Screens */
@media (max-width: 480px) {
  /* Enhanced Social Link Spacing for Extra Small Screens */
  .home .container-16 {
    gap: 28px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .home .margin-5 {
    padding: 0;
  }
  
  .home .component-wrapper,
  .home .img-wrapper {
    padding: 16px;
    min-width: 48px;
    min-height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .careers .container-34 {
    gap: 28px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .careers .margin-8 {
    padding: 0;
  }
  
  .careers .component-21,
  .careers .component-23 {
    padding: 16px;
    min-width: 48px;
    min-height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  /* Section 10 - Ultra Mobile Optimization */
  .careers .section-10 {
    padding: 32px 16px;
  }
  
  .careers .container-22 {
    gap: 24px;
  }
  
  .careers .section-heading-5 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.2px;
  }
  
  .careers .section-description-3 {
    font-size: 15px;
    line-height: 20px;
    max-width: 95%;
  }
  
  .careers .container-25 {
    gap: 16px;
  }
  
  .careers .container-25 .div-3 {
    padding: 10px 12px;
    max-width: 240px;
    gap: 10px;
  }
  
  .careers .background-9,
  .careers .background-10,
  .careers .background-11,
  .careers .background-13,
  .careers .background-14 {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
  
  .careers .component-16 {
    padding: 0px 0px 0px 6px;
  }
  
  .careers .text-wrapper-18 {
    font-size: 15px;
    line-height: 18px;
  }
  
  /* Section 11 - Ultra Mobile Optimization */
  .careers .section-11 {
    padding: 32px 16px;
  }
  
  .careers .text-wrapper-19 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -1.2px;
  }
  
  .careers .we-re-hiring {
    font-size: 15px;
    line-height: 22px;
  }
  
  .careers .item-2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
  }
  
  .careers .margin-7 {
    padding: 0;
  }
  
  .careers .div-7 {
    font-size: 15px;
    line-height: 22px;
    text-align: center;
  }
  
  /* Section 12 - Ultra Mobile Optimization */
  .careers .section-12 {
    padding: 32px 16px;
  }
  
  .careers .we-re-a-globally {
    font-size: 15px;
    line-height: 22px;
  }
  
  .careers .background-12 {
    padding: 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .careers .text-wrapper-21 {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
}

/* Enhanced Mobile Footer Responsiveness */
@media (max-width: 600px) {
  /* Home Page Footer Enhancements */
  .home .footer {
    padding: 32px 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .home .container-15 {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  
  .home .nav {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }
  
  .home .component-11 {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .home .component-11 .text-wrapper {
    font-size: 16px;
    padding: 8px 12px;
  }
  
  .home .container-16 {
    justify-content: center;
    margin-top: 16px;
  }
  
  .home .margin-5 {
    padding: 0;
  }
  
  /* Enhanced Social Link Spacing */
  .home .container-16 {
    gap: 20px;
    align-items: center;
  }
  
  .home .component-wrapper,
  .home .img-wrapper {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home .component-wrapper:hover,
  .home .img-wrapper:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .home .footer-text {
    font-size: 13px;
    margin-top: 8px;
  }
  
  /* Careers Page Footer Enhancements */
  .careers .footer-2 {
    padding: 32px 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .careers .container-33 {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  
  .careers .nav-2 {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
  }
  
  .careers .component-20 {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .careers .component-20 .text-wrapper-6 {
    font-size: 16px;
    padding: 8px 12px;
  }
  
  .careers .container-34 {
    justify-content: center;
    margin-top: 16px;
    gap: 20px;
    align-items: center;
  }
  
  .careers .margin-8 {
    padding: 0;
  }
  
  /* Enhanced Social Link Spacing for Careers */
  .careers .component-21,
  .careers .component-23 {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .careers .component-21:hover,
  .careers .component-23:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .careers .footer-text-2 {
    font-size: 13px;
    margin-top: 8px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  /* Tablet Footer Optimizations */
  .home .footer {
    padding: 40px 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .home .nav {
    gap: 20px;
    justify-content: center;
  }
  
  .careers .footer-2 {
    padding: 40px 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .careers .nav-2 {
    gap: 20px;
    justify-content: center;
  }
}

/* ===== FAQ ACCORDION SECTION ===== */

.faq-section {
  background-color: #ffffff;
  padding: 96px 20px;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-title {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.faq-description {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #111827;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #2563eb;
}

.faq-question:focus {
  outline: none;
  color: #2563eb;
}

.faq-question[aria-expanded="true"] {
  color: #2563eb;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: #6b7280;
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-question:hover .faq-icon {
  color: #2563eb;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: #2563eb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 24px 24px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 64px 20px;
  }
  
  .faq-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .faq-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
  }
  
  .faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  
  .faq-accordion {
    gap: 12px;
  }
}


