/* Eden homepage interactive experiments section */
.eden-lab {
  position: relative;
  padding: clamp(88px, 10vw, 136px) 0;
  overflow: hidden;
  color: #edf2ee;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    #18231f;
  background-size: 40px 40px;
}

.eden-lab *,
.eden-lab *::before,
.eden-lab *::after {
  box-sizing: border-box;
}

.eden-lab__heading {
  /* max-width: 720px; */
  margin-bottom: clamp(42px, 6vw, 72px);
}

.eden-lab__eyebrow {
  margin: 0 0 16px;
  color: #79dfb7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eden-lab__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.045em;
}

.eden-lab__heading > p:nth-of-type(2) {
/* .eden-lab__heading > p:last-child { */
  max-width: 610px;
  margin: 22px 0;
  color: #aebbb5;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.75;
}

.eden-lab__card {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
  align-items: stretch;
  gap: clamp(34px, 5vw, 68px);
  padding: clamp(18px, 2.4vw, 30px);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.eden-lab__card + .eden-lab__card {
  margin-top: clamp(28px, 4vw, 46px);
}

.eden-lab__browser {
  min-width: 0;
  overflow: hidden;
  background: #0e1512;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .32);
}

.eden-lab__browser-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 9px 12px 9px 16px;
  background: #29332f;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.eden-lab__browser-dots {
  display: flex;
  gap: 7px;
}

.eden-lab__browser-dots span {
  width: 9px;
  height: 9px;
  background: #69736e;
  border-radius: 50%;
}
.mg-40{
  margin: 40px 0;
}


.eden-lab__browser-dots span:first-child {
  background: #f37562;
}

.eden-lab__browser-dots span:nth-child(2) {
  background: #e9bf56;
}

.eden-lab__browser-dots span:last-child {
  background: #5bc98f;
}

.eden-lab__browser-address {
  min-width: 0;
  padding: 8px 14px;
  overflow: hidden;
  color: #aeb9b4;
  background: rgba(7, 11, 9, .42);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 9px;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eden-lab__browser-actions {
  display: flex;
  gap: 4px;
}

.eden-lab__browser-actions button,
.eden-lab__browser-actions a {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: #dce5e0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.eden-lab__browser-actions button:hover,
.eden-lab__browser-actions button:focus-visible,
.eden-lab__browser-actions a:hover,
.eden-lab__browser-actions a:focus-visible {
  color: #14231c;
  background: #79dfb7;
  outline: none;
  transform: translateY(-1px);
}

.eden-lab__browser-actions [data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 4;
  width: max-content;
  padding: 7px 9px;
  color: #122019;
  background: #eaf5ef;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

.eden-lab__browser-actions [data-tooltip]:hover::after,
.eden-lab__browser-actions [data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.eden-lab__browser-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0d1512;
}

.eden-lab__browser-viewport iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.eden-lab__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(16px, 2.5vw, 28px) clamp(8px, 1vw, 16px);
}

.eden-lab__status {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  width: 100%;
  margin-bottom: 28px;
  color: #8fa198;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eden-lab__status span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #79dfb7;
}

.eden-lab__status i {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(121, 223, 183, .1);
}

.eden-lab__content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.eden-lab__lead {
  margin: 24px 0 0;
  color: #c7d0cb;
  font-size: 16px;
  line-height: 1.75;
}

.eden-lab__hint {
  margin: 15px 0 0;
  color: #7f9188;
  font-size: 13px;
}

.eden-lab__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.eden-lab__tags span {
  padding: 7px 11px;
  color: #b8c7c0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: 11px;
}

.eden-lab__open {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 218px;
  margin-top: 38px;
  padding: 15px 18px;
  color: #122019;
  background: #79dfb7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.eden-lab__open:hover,
.eden-lab__open:focus-visible {
  color: #122019;
  background: #9ceacb;
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .eden-lab__card {
    grid-template-columns: 1fr;
  }

  .eden-lab__content {
    padding: 20px 8px 10px;
  }
}

@media (max-width: 560px) {
  .eden-lab {
    padding: 78px 0 86px;
  }

  .eden-lab__card {
    padding: 10px;
    border-radius: 22px;
  }

  .eden-lab__browser {
    border-radius: 15px;
  }

  .eden-lab__browser-bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 46px;
    padding: 7px 8px 7px 11px;
  }

  .eden-lab__browser-dots {
    gap: 4px;
  }

  .eden-lab__browser-dots span {
    width: 7px;
    height: 7px;
  }

  .eden-lab__browser-address {
    padding: 7px 8px;
    font-size: 9px;
  }

  .eden-lab__browser-actions button {
    display: none;
  }

  .eden-lab__browser-actions a {
    width: 30px;
    height: 30px;
  }

  .eden-lab__browser-viewport {
    aspect-ratio: 4 / 3;
  }

  .eden-lab__content {
    padding: 22px 10px 14px;
  }

  .eden-lab__open {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eden-lab__browser-actions button,
  .eden-lab__browser-actions a,
  .eden-lab__browser-actions [data-tooltip]::after,
  .eden-lab__open {
    transition: none;
  }
}
