.home-launcher {
  --home-launcher-menu-tile-size: clamp(112px, 8.2vw, 126px);
  font-family: "Raleway", Arial, Helvetica, sans-serif;
}

.home-launcher button,
.home-launcher input,
.home-launcher select,
.home-launcher textarea {
  font-family: inherit;
}

.home-launcher-stage {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.home-launcher-surface {
  position: relative;
  box-sizing: border-box;
  min-height: 590px;
  padding: clamp(24px, 3.2vw, 46px);
  border: 1px solid rgba(73, 171, 227, .25);
  border-radius: 27px;
  background:
    radial-gradient(circle at 86% 10%, rgba(52, 139, 205, .22), transparent 26rem),
    linear-gradient(145deg, #08243d, #061a2c);
  box-shadow: 0 22px 52px rgba(2, 13, 24, .18);
}

.home-launcher-version {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: rgba(198, 216, 229, .46);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

.home-launcher-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(128px, 1fr));
  gap: clamp(28px, 3.3vw, 48px) clamp(20px, 3vw, 42px);
  max-width: 1160px;
  margin-inline: auto;
}

.home-launcher-system {
  width: 100%;
  max-width: 700px;
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(198, 216, 229, .2);
}

.home-launcher-system > header {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 14px;
}

.home-launcher-system > header span {
  color: #ff8c33;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-launcher-system-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.home-launcher-system-item {
  width: clamp(82px, 7vw, 98px);
  min-width: 0;
}

.home-launcher-system-button {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-launcher-system-art {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(92, 177, 228, .42);
  border-radius: 19%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .18), transparent 30%),
    linear-gradient(145deg, #245b8e, #0d3f70 60%, #08243d);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-launcher-system-item:nth-child(2) .home-launcher-system-art {
  border-color: rgba(255, 116, 0, .52);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(145deg, #85552f, #59361f 60%, #342116);
}

.home-launcher-system-art.has-image {
  border: 0;
  background: none;
}

.home-launcher-system-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-launcher-system-art b {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  text-shadow: 0 5px 14px rgba(0, 0, 0, .3);
}

.home-launcher-system-item > strong {
  display: block;
  margin-top: 8px;
  color: rgba(237, 246, 252, .82);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
}

.home-launcher-system-button:hover .home-launcher-system-art,
.home-launcher-system-button:focus-visible .home-launcher-system-art {
  transform: translateY(-4px);
  border-color: rgba(255, 116, 0, .78);
  box-shadow: 0 18px 28px rgba(0, 0, 0, .3), inset 0 1px rgba(255, 255, 255, .18);
}

.home-launcher-system-button:focus-visible {
  border-radius: 18%;
  outline: 3px solid rgba(81, 191, 242, .76);
  outline-offset: 4px;
}

.home-launcher-development {
  width: 100%;
  max-width: 700px;
  margin: 28px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.home-launcher-development > header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.home-launcher-development > header span {
  padding: 3px 6px;
  border: 1px solid rgba(255, 116, 0, .42);
  border-radius: 999px;
  color: #ff9c50;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-launcher-development > header strong {
  color: rgba(247, 251, 255, .86);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-launcher-development-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
}

.home-launcher-development-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 7px 9px;
  border: 1px solid rgba(242, 201, 76, .25);
  border-radius: 11px;
  background: rgba(242, 201, 76, .055);
  color: #fff;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.home-launcher-development-item > span {
  display: grid;
  width: 38px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(242, 201, 76, .34);
  border-radius: 8px;
  color: #f2c94c;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .04em;
}

.home-launcher-development-item > strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-launcher-development-item:hover,
.home-launcher-development-item:focus-visible {
  border-color: rgba(242, 201, 76, .58);
  background: rgba(242, 201, 76, .1);
  outline: none;
  transform: translateY(-2px);
}

@media (min-width: 681px) {
  .home-launcher-stage {
    grid-template-columns: minmax(260px, 1fr) minmax(400px, 1fr);
    height: calc(100dvh - 132px);
  }

  .home-launcher-surface {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    align-items: flex-start;
  }

  .home-launcher-development {
    margin-top: auto;
  }

  .home-launcher-grid {
    width: 100%;
  }
}

@media (min-width: 1051px) {
  .home-launcher-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-launcher-surface {
    padding: 22px;
  }

  .home-launcher-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 32px 18px;
    max-width: 700px;
    justify-content: center;
  }
}

@media (min-width: 1051px) and (max-height: 800px) {
  .home-launcher-grid {
    gap-block: 24px;
  }

  .home-launcher-system {
    margin-top: 18px;
    padding-top: 12px;
  }

  .home-launcher-system > header {
    margin-bottom: 10px;
  }

  .home-launcher-system-item {
    width: 76px;
  }

  .home-launcher-surface:has(.home-launcher-system) .home-launcher-development {
    margin-top: 14px;
    padding-top: 10px;
  }
}

.home-infoboard {
  box-sizing: border-box;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(73, 171, 227, .28);
  border-radius: 27px;
  background:
    radial-gradient(circle at 92% 2%, rgba(52, 139, 205, .22), transparent 20rem),
    linear-gradient(150deg, #0a2945, #061a2c 62%);
  box-shadow: 0 22px 52px rgba(2, 13, 24, .2);
  color: #f7fbff;
}

.home-infoboard-head,
.home-infoboard-section-head,
.home-infoboard-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-infoboard-head {
  min-height: 48px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.home-infoboard-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-infoboard-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.home-infoboard-head time {
  color: rgba(218, 235, 247, .66);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-infoboard-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(49, 240, 138, .27);
  border-radius: 999px;
  background: rgba(49, 240, 138, .08);
  color: #53ee9b;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-infoboard-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #31f08a;
  box-shadow: 0 0 0 4px rgba(49, 240, 138, .1);
}

.home-infoboard section {
  margin-top: 14px;
}

.home-infoboard-section-head {
  margin-bottom: 8px;
}

.home-infoboard-section-head h3 {
  margin: 0;
  color: #ff8c33;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-infoboard-section-head a {
  color: rgba(218, 235, 247, .7);
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
}

.home-infoboard-section-head a:hover,
.home-infoboard-section-head a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-infoboard-pricing-current {
  box-sizing: border-box;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 140, 51, .36);
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(255, 116, 0, .09), rgba(255, 255, 255, .035));
  color: #f7fbff;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.home-infoboard-pricing-current:hover,
.home-infoboard-pricing-current:focus-visible {
  border-color: rgba(255, 140, 51, .72);
  background: linear-gradient(100deg, rgba(255, 116, 0, .14), rgba(255, 255, 255, .06));
  transform: translateY(-1px);
}

.home-infoboard-pricing-phase {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.home-infoboard-pricing-phase i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #31f08a;
  box-shadow: 0 0 0 4px rgba(49, 240, 138, .1);
}

.home-infoboard-pricing-phase b {
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-infoboard-pricing-current > strong {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.home-infoboard-pricing-current > strong > b {
  color: #ff9a45;
  font-size: 15px;
  font-weight: 650;
}

.home-infoboard-pricing-current > strong > small {
  color: rgba(218, 235, 247, .64);
  font-size: 10px;
  font-weight: 400;
}

.home-infoboard-pricing-current > em {
  color: rgba(247, 251, 255, .9);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
}

.home-infoboard-market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.home-infoboard-market-card {
  min-width: 0;
  padding: 8px 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
}

.home-infoboard-market-card::before {
  display: block;
  width: 6px;
  height: 6px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: #ef5350;
  box-shadow: 0 0 0 3px rgba(239, 83, 80, .1);
  content: "";
}

.home-infoboard-market-card.is-open::before {
  background: #31f08a;
  box-shadow: 0 0 0 3px rgba(49, 240, 138, .1);
}

.home-infoboard-market-card.is-holiday::before {
  background: #ffad55;
}

.home-infoboard-market-card strong,
.home-infoboard-market-card span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-infoboard-market-card strong {
  font-size: 12px;
  font-weight: 500;
}

.home-infoboard-market-card span {
  margin-top: 3px;
  color: rgba(218, 235, 247, .62);
  font-size: 12px;
}

.home-infoboard-clocks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 7px;
}

.home-infoboard-clocks > div {
  min-width: 0;
  padding: 6px 7px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 9px;
  background: rgba(0, 0, 0, .12);
}

.home-infoboard-clocks span,
.home-infoboard-clocks b {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-infoboard-clocks span {
  color: rgba(218, 235, 247, .58);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-infoboard-clocks b {
  margin-top: 3px;
  color: #fff;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}

.home-infoboard-event-list {
  display: grid;
  gap: 6px;
}

.home-infoboard-event {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-left: 2px solid #ff7400;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: inherit;
  text-decoration: none;
}

.home-infoboard-event:hover,
.home-infoboard-event:focus-visible {
  border-color: rgba(255, 116, 0, .48);
  background: rgba(255, 255, 255, .075);
}

.home-infoboard-event > span {
  align-self: start;
  padding: 3px 5px;
  border-radius: 999px;
  background: rgba(255, 116, 0, .13);
  color: #ff9c50;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-infoboard-event strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-infoboard-event small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 3px;
  color: rgba(218, 235, 247, .6);
  font-size: 10px;
}

.home-infoboard-empty {
  margin: 0;
  padding: 10px;
  border: 1px dashed rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: rgba(218, 235, 247, .66);
  font-size: 11px;
}

.home-infoboard-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.home-infoboard-story {
  display: flex;
  min-width: 0;
  min-height: 120px;
  flex-direction: column;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  background: rgba(255, 255, 255, .05);
  color: inherit;
  text-decoration: none;
}

.home-infoboard-story:hover,
.home-infoboard-story:focus-visible {
  border-color: rgba(73, 171, 227, .5);
  background: rgba(255, 255, 255, .08);
}

.home-infoboard-story > span {
  color: #65c6ff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-infoboard-story.is-club > span {
  color: #53ee9b;
}

.home-infoboard-story strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-infoboard-story p {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  color: rgba(234, 244, 251, .72);
  font-size: 11px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-infoboard-story small {
  display: block;
  overflow: hidden;
  margin-top: auto;
  padding-top: 7px;
  color: rgba(218, 235, 247, .46);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-infoboard-story.is-empty {
  opacity: .7;
}

.home-infoboard-cta {
  gap: 10px;
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 116, 0, .28);
  border-radius: 13px;
  background: linear-gradient(100deg, rgba(255, 116, 0, .14), rgba(39, 114, 174, .08));
  color: #fff;
  text-decoration: none;
}

.home-infoboard-cta > span {
  color: #ff9c50;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-infoboard-cta strong {
  overflow: hidden;
  margin-right: auto;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-infoboard-cta i {
  font-size: 20px;
  font-style: normal;
}

.home-infoboard a:focus-visible {
  outline: 2px solid rgba(81, 191, 242, .8);
  outline-offset: 2px;
}

.home-infoboard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: auto;
  padding-top: 18px;
}

.home-infoboard-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.home-infoboard-social-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 7px 16px rgba(0, 0, 0, .13);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform .16s ease, filter .16s ease, border-color .16s ease;
}

.home-infoboard-social-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.home-infoboard-social-link.is-instagram {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 52%, #6228d7 100%);
}

.home-infoboard-social-link.is-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.home-infoboard-social-link.is-instagram svg .is-dot {
  fill: currentColor;
  stroke: none;
}

.home-infoboard-social-link.is-tiktok {
  background: linear-gradient(135deg, #111 0%, #17171b 100%);
  box-shadow: inset 2px 0 #25f4ee, inset -2px 0 #fe2c55, inset 0 1px 0 rgba(255, 255, 255, .14), 0 7px 16px rgba(0, 0, 0, .18);
}

.home-infoboard-social-link.is-tiktok svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.home-infoboard-social-link.is-youtube {
  background: linear-gradient(135deg, #ff203c, #c90019);
}

.home-infoboard-social-link.is-youtube svg {
  fill: currentColor;
}

.home-infoboard-social-link.is-youtube svg .is-play {
  fill: #db001b;
}

.home-infoboard-social-link:hover,
.home-infoboard-social-link:focus-visible {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
  filter: brightness(1.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.home-infoboard-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  color: rgba(218, 235, 247, .58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.home-infoboard-legal a {
  color: inherit;
  text-decoration: none;
}

.home-infoboard-legal a:hover,
.home-infoboard-legal a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-launcher-item,
.home-launcher-dialog-item {
  min-width: 0;
}

.home-launcher-button,
.home-launcher-dialog-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.home-launcher-art,
.home-launcher-dialog-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 25%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .22), transparent 27%),
    linear-gradient(145deg, #24669e, #123b65 52%, #071e34);
  box-shadow:
    0 15px 27px rgba(0, 0, 0, .3),
    0 4px 8px rgba(0, 0, 0, .18),
    inset 0 1px rgba(255, 255, 255, .22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-launcher-art {
  border: 0;
  border-radius: 17%;
  background: none;
}

.home-launcher-art > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-launcher-dialog-art > span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 45px);
  font-weight: 900;
  letter-spacing: -.06em;
  text-shadow: 0 5px 16px rgba(0, 0, 0, .28);
}

.home-launcher-item > strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.home-launcher-button:hover .home-launcher-art,
.home-launcher-button:focus-visible .home-launcher-art {
  transform: translateY(-5px) scale(1.018);
  border-color: rgba(255, 116, 0, .82);
  box-shadow: 0 21px 33px rgba(0, 0, 0, .35), 0 6px 11px rgba(0, 0, 0, .2);
}

.home-launcher-button:focus-visible,
.home-launcher-dialog-button:focus-visible,
.home-launcher-dialog-close:focus-visible {
  outline: 3px solid rgba(81, 191, 242, .76);
  outline-offset: 4px;
}

.home-launcher-dialog {
  --home-launcher-dialog-gap: 20px;
  --home-launcher-dialog-min-width: 480px;
  --home-launcher-dialog-padding: clamp(24px, 3.4vw, 38px);
  --home-launcher-dialog-grid-width: calc(
    var(--home-launcher-menu-tile-size) + var(--home-launcher-menu-tile-size) +
    var(--home-launcher-menu-tile-size) + var(--home-launcher-menu-tile-size) +
    var(--home-launcher-dialog-gap) + var(--home-launcher-dialog-gap) + var(--home-launcher-dialog-gap)
  );
  width: min(
    max(var(--home-launcher-dialog-min-width), calc(var(--home-launcher-dialog-grid-width) + var(--home-launcher-dialog-padding) + var(--home-launcher-dialog-padding))),
    calc(100% - 32px)
  );
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 30px 75px rgba(0, 10, 20, .35), 0 7px 20px rgba(0, 10, 20, .18);
}

.home-launcher-dialog::backdrop {
  background: transparent;
  backdrop-filter: none;
}

.home-launcher-backdrop {
  position: fixed;
  z-index: 2147483000;
  top: var(--home-launcher-backdrop-top, 0px);
  right: 0;
  bottom: 0;
  left: var(--home-launcher-backdrop-left, 0px);
  background: rgba(3, 15, 27, .32);
  backdrop-filter: blur(17px) saturate(.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

.home-launcher-backdrop.is-open {
  opacity: 1;
}

.home-launcher-dialog-shell {
  --home-launcher-dialog-ink: #fff;
  --home-launcher-dialog-ink-muted: rgba(255, 255, 255, .82);
  max-height: calc(100dvh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: var(--home-launcher-dialog-padding);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(244, 249, 252, .31), rgba(210, 224, 233, .2));
  backdrop-filter: blur(34px) saturate(1.24);
  scrollbar-width: none;
}

.home-launcher-dialog-shell::-webkit-scrollbar {
  display: none;
}

.home-launcher-dialog-shell > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.home-launcher-dialog-shell h2 {
  margin: 0 0 7px;
  color: var(--home-launcher-dialog-ink);
  font-size: clamp(29px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -.05em;
  text-shadow: 0 1px 3px rgba(3, 15, 27, .34);
}

.home-launcher-dialog-shell header p {
  max-width: 42rem;
  margin: 0;
  color: var(--home-launcher-dialog-ink-muted);
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(3, 15, 27, .22);
}

.home-launcher-dialog-close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(8, 36, 61, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 5px 14px rgba(14, 37, 55, .08);
  color: var(--home-launcher-dialog-ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(3, 15, 27, .3);
}

.home-launcher-dialog-grid {
  display: flex;
  width: min(100%, var(--home-launcher-dialog-grid-width));
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px var(--home-launcher-dialog-gap);
  margin-inline: auto;
}

.home-launcher-dialog:has(.home-launcher-dialog-grid > :only-child) {
  --home-launcher-dialog-grid-width: var(--home-launcher-menu-tile-size);
}

.home-launcher-dialog:has(.home-launcher-dialog-grid > :nth-child(2):last-child) {
  --home-launcher-dialog-grid-width: calc(
    var(--home-launcher-menu-tile-size) + var(--home-launcher-menu-tile-size) + var(--home-launcher-dialog-gap)
  );
}

.home-launcher-dialog:has(.home-launcher-dialog-grid > :nth-child(3):last-child) {
  --home-launcher-dialog-grid-width: calc(
    var(--home-launcher-menu-tile-size) + var(--home-launcher-menu-tile-size) +
    var(--home-launcher-menu-tile-size) + var(--home-launcher-dialog-gap) + var(--home-launcher-dialog-gap)
  );
}

.home-launcher-dialog-item {
  position: relative;
  flex: 0 0 var(--home-launcher-menu-tile-size);
}

.home-launcher-dialog-art {
  z-index: 1;
  box-shadow: 0 20px 30px rgba(3, 22, 37, .34), 0 7px 13px rgba(3, 22, 37, .2), inset 0 1px rgba(255, 255, 255, .2);
}

.home-launcher-dialog-art.has-image {
  border: 0;
  border-radius: 17%;
  background: none;
}

.home-launcher-dialog-art.has-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-launcher-dialog-label-row {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  text-align: center;
}

.home-launcher-dialog-label-row > strong {
  padding: 0;
  border: 0;
  background: none;
  color: var(--home-launcher-dialog-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(3, 15, 27, .26);
}

.home-launcher-responsive-break {
  display: none;
}

@media (max-width: 1250px) {
  .home-launcher-dialog-label-row {
    width: 100%;
    min-width: 0;
  }

  .home-launcher-dialog-label-row > strong {
    min-width: 0;
  }

  .home-launcher-responsive-break {
    display: initial;
  }
}

.home-launcher-dialog-info {
  position: absolute;
  z-index: 6;
  top: 6px;
  left: 6px;
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid rgba(6, 21, 37, .9);
  border-radius: 999px;
  background: linear-gradient(135deg, #62cff5, #287fae);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .42);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.home-launcher-dialog-info:hover,
.home-launcher-dialog-info:focus-visible {
  background: linear-gradient(135deg, #91e4ff, #3799cc);
  color: #fff;
  outline: 2px solid rgba(81, 191, 242, .8);
  outline-offset: 2px;
}

.home-launcher-unread-badge {
  position: absolute;
  z-index: 5;
  top: -8px;
  right: -8px;
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid rgba(6, 21, 37, .9);
  border-radius: 999px;
  background: #31f08a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .26);
  color: #062a1a;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.home-launcher-dialog-button:hover .home-launcher-dialog-art {
  transform: translateY(-4px);
  border-color: rgba(255, 116, 0, .65);
  box-shadow: 0 25px 36px rgba(3, 22, 37, .39), 0 9px 15px rgba(3, 22, 37, .22);
}

.home-launcher-dialog-button.is-locked {
  cursor: not-allowed;
}

.home-launcher-dialog-button.is-locked .home-launcher-dialog-art > img {
  opacity: .58;
  filter: saturate(.68) brightness(.78);
}

.home-launcher-dialog-art mark {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7400, #ffad32);
  box-shadow: 0 0 9px rgba(255, 132, 0, .92), 0 0 18px rgba(255, 116, 0, .6), 0 5px 11px rgba(3, 18, 31, .34), inset 0 1px 0 rgba(255, 255, 255, .34);
  color: #fff;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .home-launcher {
    --home-launcher-menu-tile-size: clamp(90px, 11.5vw, 112px);
  }

  .home-launcher-grid {
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 24px 14px;
    max-width: 760px;
  }
  .home-infoboard-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 681px) and (max-width: 1050px) {
  .home-launcher-stage {
    grid-template-columns: minmax(210px, .72fr) minmax(390px, 1.28fr);
    height: auto;
    min-height: 0;
    align-items: stretch;
  }

  .home-launcher-surface {
    height: auto;
    min-height: 0;
  }

  .home-launcher-grid {
    grid-template-columns: repeat(2, minmax(76px, 1fr));
  }
}

/* Flache Viewports – insbesondere Smartphones im Querformat – bleiben
   inhaltsgetrieben. So wird die HOME-Fläche nicht auf die sichtbare Höhe
   beschnitten, sondern kann als normale Seite vertikal weiterlaufen. */
@media (min-width: 681px) and (max-width: 1050px) and (max-height: 680px) {
  .home-launcher-development {
    margin-top: 28px;
  }
}

@media (max-width: 680px) {
  .home-launcher {
    --home-launcher-menu-tile-size: min(102px, calc(30vw - 15px));
  }

  .home-launcher-dialog {
    --home-launcher-dialog-gap: 15px;
    --home-launcher-dialog-min-width: 320px;
    --home-launcher-dialog-grid-width: calc(
      var(--home-launcher-menu-tile-size) + var(--home-launcher-menu-tile-size) + var(--home-launcher-dialog-gap)
    );
  }

  .home-launcher-stage {
    display: block;
  }

  .home-launcher-surface {
    min-height: 0;
    padding: 20px 14px 28px;
    border-radius: 22px;
  }

  .home-launcher-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 10px;
    width: 90%;
    max-width: 351px;
  }

  .home-launcher-development {
    max-width: 390px;
  }

  .home-launcher-system {
    width: 90%;
    max-width: 351px;
    margin-top: 24px;
  }

  .home-launcher-system-item {
    width: min(82px, calc(27vw - 12px));
  }

  .home-launcher-item > strong {
    margin-top: 8px;
    font-size: 10px;
  }
  .home-launcher-dialog-grid {
    max-width: calc(
      var(--home-launcher-menu-tile-size) + var(--home-launcher-menu-tile-size) + var(--home-launcher-dialog-gap)
    );
    gap-block: 24px;
    width: auto;
  }

  .home-infoboard {
    margin-top: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .home-infoboard-market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-infoboard-pricing-current {
    flex-wrap: wrap;
    gap: 7px 10px;
  }

  .home-infoboard-pricing-current > strong {
    order: 3;
    width: 100%;
    margin-left: 15px;
  }

  .home-infoboard-pricing-current > em {
    margin-left: auto;
  }

  .home-infoboard-footer {
    justify-content: center;
  }

  .home-infoboard-social,
  .home-infoboard-legal {
    justify-content: center;
  }

  .home-infoboard-legal {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-launcher-art,
  .home-launcher-dialog-art {
    transition-duration: .001ms !important;
  }
}
