/* Homepage V2 — clearer application launcher */
.hero {
  padding-top: 52px;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(50px, 6.6vw, 84px);
}

.hero-copy {
  max-width: 760px;
}

.desktop {
  min-height: 590px;
}

.workspace {
  height: 535px;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.app-icon,
.desktop-hint {
  display: none;
}

.window,
.win-marketing,
.win-business,
.window.focused,
.window:hover {
  position: relative;
  inset: auto;
  right: auto;
  top: auto;
  width: auto;
  min-height: 0;
  height: 100%;
  transform: none;
  z-index: 1;
  cursor: default;
}

.window {
  display: flex;
  flex-direction: column;
  border-color: rgba(167, 255, 228, .15);
  background: linear-gradient(145deg, rgba(18, 29, 28, .94), rgba(6, 11, 12, .95));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.window:hover,
.window:focus-within {
  transform: translateY(-7px);
  border-color: rgba(82, 245, 212, .4);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .75), 0 0 45px rgba(57, 243, 219, .08);
}

.win-business:hover,
.win-business:focus-within {
  border-color: rgba(255, 135, 94, .45);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .75), 0 0 45px rgba(255, 135, 94, .08);
}

.window-head {
  flex: 0 0 52px;
  padding-inline: 22px;
}

.window-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 36px;
}

.window h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin: 16px 0 18px;
}

.window p {
  max-width: 560px;
  font-size: 15px;
}

.chips {
  margin: 26px 0 30px;
}

.open-app {
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding: 0 18px;
  justify-content: space-between;
  border: 1px solid rgba(82, 245, 212, .24);
  border-radius: 14px;
  background: rgba(82, 245, 212, .08);
  color: #dffff8;
  transition: .25s;
}

.open-app:hover {
  background: var(--green);
  color: #06100c;
  border-color: var(--green);
}

.win-business .open-app {
  border-color: rgba(255, 135, 94, .25);
  background: rgba(255, 135, 94, .08);
}

.win-business .open-app:hover {
  background: var(--orange);
  color: #120806;
  border-color: var(--orange);
}

@media (max-width: 780px) {
  .desktop {
    min-height: auto;
  }

  .workspace {
    height: auto;
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .window,
  .win-marketing,
  .win-business {
    min-height: 470px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 43px;
  }

  .workspace {
    padding: 12px;
    gap: 14px;
  }

  .window,
  .win-marketing,
  .win-business {
    width: 100%;
    min-height: 430px;
  }

  .window-body {
    padding: 27px 22px;
  }

  .window h2 {
    font-size: 32px;
  }
}
