.sc-webapp-launcher {
  border: 1px solid #d7e2ea;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .04), rgba(15, 118, 110, .04)),
    #f6f9fc;
  color: #122033;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(18, 32, 51, .08);
}

.sc-webapp-launcher-modal-open {
  overflow: hidden;
}

.sc-webapp-launcher__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px;
  border-bottom: 1px solid #d7e2ea;
  background:
    radial-gradient(circle at 100% 0%, rgba(180, 83, 9, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.sc-webapp-launcher__eyebrow {
  margin: 0 0 4px;
  color: #176b87;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sc-webapp-launcher__title {
  margin: 0;
  color: #122033;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: 0;
}

.sc-webapp-launcher__status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #d7e2ea;
  border-radius: 999px;
  background: #ffffff;
  color: #5d7285;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.sc-webapp-launcher__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding: 24px 30px 18px;
}

.sc-webapp-launcher__hint {
  margin: 0;
  padding: 0 30px 28px;
  color: #5d7285;
  font-size: 14px;
  line-height: 1.45;
}

.sc-webapp-launcher__tile {
  display: grid;
  gap: 10px;
}

.sc-webapp-launcher__app {
  display: grid;
  min-height: 218px;
  width: 100%;
  align-content: start;
  justify-items: start;
  gap: 12px;
  border: 1px solid #d7e2ea;
  border-radius: 14px;
  background: #ffffff;
  color: #122033;
  padding: 22px;
  text-align: left;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.sc-webapp-launcher__app::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sc-app-accent), #b45309);
}

.sc-webapp-launcher__tile:hover .sc-webapp-launcher__app,
.sc-webapp-launcher__tile:focus-within .sc-webapp-launcher__app {
  border-color: var(--sc-app-accent);
  box-shadow: 0 18px 38px rgba(18, 32, 51, .14);
  outline: none;
  transform: translateY(-2px);
}

.sc-webapp-launcher__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--sc-app-accent), white 86%);
  color: var(--sc-app-accent);
  font-size: 15px;
  font-weight: 900;
  overflow: hidden;
}

.sc-webapp-launcher__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-webapp-launcher__label {
  margin-top: 4px;
  color: #122033;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.1;
}

.sc-webapp-launcher__subtitle {
  color: #5d7285;
  font-size: 14px;
  line-height: 1.35;
}

.sc-webapp-launcher__tagline {
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}

.sc-webapp-launcher__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.sc-webapp-launcher__open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--sc-app-accent);
  border-radius: 999px;
  background: var(--sc-app-accent);
  color: #ffffff;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.sc-webapp-launcher__open:hover:not(:disabled),
.sc-webapp-launcher__open:focus-visible:not(:disabled) {
  background: color-mix(in srgb, var(--sc-app-accent), #0f172a 12%);
  border-color: color-mix(in srgb, var(--sc-app-accent), #0f172a 12%);
  outline: none;
  transform: translateY(-1px);
}

.sc-webapp-launcher__open:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.sc-webapp-launcher__details,
.sc-webapp-launcher__shortcut {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd8e4;
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .16s ease, color .16s ease, transform .16s ease;
}

.sc-webapp-launcher__details:hover,
.sc-webapp-launcher__details:focus-visible,
.sc-webapp-launcher__shortcut:hover:not(:disabled),
.sc-webapp-launcher__shortcut:focus-visible:not(:disabled) {
  border-color: var(--sc-app-accent);
  color: var(--sc-app-accent);
  outline: none;
  transform: translateY(-1px);
}

.sc-webapp-launcher__shortcut:disabled {
  cursor: not-allowed;
  opacity: .58;
}

.sc-webapp-launcher__install {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid #d7e2ea;
  border-radius: 12px;
  background: #ffffff;
  color: #334155;
  padding: 7px 10px;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, transform .16s ease;
}

.sc-webapp-launcher__install:hover,
.sc-webapp-launcher__install:focus-visible {
  border-color: color-mix(in srgb, var(--sc-app-accent), white 18%);
  background: #f8fbff;
  outline: none;
  transform: translateY(-1px);
}

.sc-webapp-launcher__install-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 9px;
  background: #eef4f8;
}

.sc-webapp-launcher__install-play {
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--sc-app-accent);
}

.sc-webapp-launcher__install-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1.1;
}

.sc-webapp-launcher__install-kicker {
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sc-webapp-launcher__install-label {
  color: #122033;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.sc-webapp-launcher__install-note {
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
}

.sc-webapp-launcher__install--disabled {
  background: #eef2f6;
  color: #94a3b8;
  justify-content: center;
  text-align: center;
}

.sc-webapp-launcher__install--disabled:hover,
.sc-webapp-launcher__install--disabled:focus-visible {
  border-color: #dbe4ee;
  background: #eef2f6;
  transform: none;
}

.sc-webapp-launcher__modal[hidden] {
  display: none;
}

.sc-webapp-launcher__modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.sc-webapp-launcher__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .54);
  backdrop-filter: blur(8px);
}

.sc-webapp-launcher__modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(860px, calc(100dvh - 48px));
  overflow: auto;
  border: 1px solid #d7e2ea;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .32);
}

.sc-webapp-launcher__modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(203, 216, 228, .86);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #122033;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.sc-webapp-launcher__modal-close:hover,
.sc-webapp-launcher__modal-close:focus-visible {
  border-color: var(--sc-app-accent, #2563eb);
  color: var(--sc-app-accent, #2563eb);
  outline: none;
}

.sc-webapp-launcher__detail-hero {
  position: relative;
  min-height: 260px;
  padding: 34px;
  background: #f1f6fb;
  overflow: hidden;
}

.sc-webapp-launcher__detail-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-webapp-launcher__detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 32, .82) 0%, rgba(6, 16, 32, .5) 46%, rgba(6, 16, 32, .16) 100%);
}

.sc-webapp-launcher__detail-heading {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 560px;
  gap: 14px;
  color: #ffffff;
}

.sc-webapp-launcher__detail-app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.sc-webapp-launcher__detail-kicker {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sc-webapp-launcher__detail-title {
  margin: 0;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: 0;
}

.sc-webapp-launcher__detail-summary {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.45;
}

.sc-webapp-launcher__detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.sc-webapp-launcher__detail-primary,
.sc-webapp-launcher__detail-secondary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.sc-webapp-launcher__detail-primary {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #122033;
}

.sc-webapp-launcher__detail-secondary {
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
}

.sc-webapp-launcher__detail-content {
  display: grid;
  gap: 26px;
  padding: 28px 34px 34px;
}

.sc-webapp-launcher__detail-description {
  margin: 0;
  max-width: 760px;
  color: #334155;
  font-size: 16px;
  line-height: 1.65;
}

.sc-webapp-launcher__detail-channel {
  display: grid;
  max-width: 760px;
  gap: 10px;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #eff6ff;
  color: #1e3a8a;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
}

.sc-webapp-launcher__detail-channel strong {
  color: #1d4ed8;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sc-webapp-launcher__beta-form {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  border-top: 1px solid rgba(37, 99, 235, .16);
  padding-top: 12px;
}

.sc-webapp-launcher__beta-title {
  color: #122033;
  font-size: 15px;
}

.sc-webapp-launcher__beta-note {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

.sc-webapp-launcher__beta-controls {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 220px) auto;
  gap: 8px;
}

.sc-webapp-launcher__beta-controls input {
  min-height: 42px;
  min-width: 0;
  border: 1px solid #cbd8e4;
  border-radius: 10px;
  background: #ffffff;
  color: #122033;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
}

.sc-webapp-launcher__beta-controls input:focus {
  border-color: var(--sc-app-accent, #2563eb);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sc-app-accent, #2563eb), transparent 84%);
  outline: none;
}

.sc-webapp-launcher__beta-submit {
  min-height: 42px;
  border: 1px solid var(--sc-app-accent, #2563eb);
  border-radius: 10px;
  background: var(--sc-app-accent, #2563eb);
  color: #ffffff;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.sc-webapp-launcher__beta-submit:disabled {
  cursor: progress;
  opacity: .72;
}

.sc-webapp-launcher__beta-feedback {
  min-height: 18px;
  margin: 0;
  color: #475569;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.sc-webapp-launcher__beta-feedback--success {
  color: #047857;
}

.sc-webapp-launcher__beta-feedback--error {
  color: #b91c1c;
}

.sc-webapp-launcher__beta-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sc-webapp-launcher__detail-tags,
.sc-webapp-launcher__detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sc-webapp-launcher__detail-tags li {
  border: 1px solid #d7e2ea;
  border-radius: 999px;
  background: #f6f9fc;
  color: #334155;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
}

.sc-webapp-launcher__detail-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.sc-webapp-launcher__detail-highlights li {
  border: 1px solid #d7e2ea;
  border-radius: 12px;
  background: #f8fbff;
  color: #122033;
  padding: 13px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.sc-webapp-launcher__screenshots {
  display: grid;
  gap: 12px;
}

.sc-webapp-launcher__section-title {
  margin: 0;
  color: #122033;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.sc-webapp-launcher__screenshot-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
}

.sc-webapp-launcher__screenshot-card {
  display: flex;
  width: min(260px, 76vw);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #d7e2ea;
  border-radius: 16px;
  background: #f6f9fc;
  padding: 8px;
  scroll-snap-align: start;
  box-shadow: 0 14px 30px rgba(18, 32, 51, .1);
}

.sc-webapp-launcher__screenshot-card--wide {
  width: min(680px, 86vw);
}

.sc-webapp-launcher__screenshot {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
  object-position: center top;
}

.sc-webapp-launcher__screenshot-card--wide .sc-webapp-launcher__screenshot {
  max-height: 460px;
}

.sc-webapp-launcher-admin {
  border: 1px solid #d7e2ea;
  border-radius: 16px;
  background: #f6f9fc;
  color: #122033;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(18, 32, 51, .08);
}

.sc-webapp-launcher-admin--blocked {
  padding: 18px;
  color: #b91c1c;
  font-weight: 800;
}

.sc-webapp-launcher-admin__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d7e2ea;
  background: #ffffff;
  padding: 24px 28px;
}

.sc-webapp-launcher-admin__eyebrow {
  margin: 0 0 6px;
  color: #176b87;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sc-webapp-launcher-admin h2 {
  margin: 0;
  color: #122033;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
}

.sc-webapp-launcher-admin p {
  margin: 8px 0 0;
  color: #5d7285;
  font-size: 15px;
  line-height: 1.45;
}

.sc-webapp-launcher-admin__export {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #2563eb;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.sc-webapp-launcher-admin__summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 28px 0;
  border: 1px solid #d7e2ea;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 14px;
}

.sc-webapp-launcher-admin__summary span {
  color: #2563eb;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.sc-webapp-launcher-admin__summary strong {
  color: #334155;
  font-size: 14px;
}

.sc-webapp-launcher-admin__table-wrap {
  margin: 20px 28px 28px;
  overflow-x: auto;
  border: 1px solid #d7e2ea;
  border-radius: 12px;
  background: #ffffff;
}

.sc-webapp-launcher-admin__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.sc-webapp-launcher-admin__table th,
.sc-webapp-launcher-admin__table td {
  border-bottom: 1px solid #e4edf4;
  padding: 12px 14px;
  color: #334155;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.sc-webapp-launcher-admin__table th {
  background: #f8fbff;
  color: #5d7285;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sc-webapp-launcher-admin__table tr:last-child td {
  border-bottom: 0;
}

.sc-webapp-launcher-admin__table code {
  border-radius: 8px;
  background: #eef4f8;
  color: #122033;
  padding: 4px 6px;
}

.sc-webapp-launcher-admin__status {
  display: inline-flex;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 640px) {
  .sc-webapp-launcher__topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 18px;
  }

  .sc-webapp-launcher__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .sc-webapp-launcher__screenshot-card--wide {
    width: min(520px, 92vw);
  }

  .sc-webapp-launcher__app {
    min-height: 190px;
  }

  .sc-webapp-launcher__hint {
    padding: 0 18px 22px;
  }

  .sc-webapp-launcher__modal {
    padding: 12px;
  }

  .sc-webapp-launcher__modal-panel {
    max-height: calc(100dvh - 24px);
    border-radius: 14px;
  }

  .sc-webapp-launcher__detail-hero {
    min-height: 240px;
    padding: 26px 20px;
  }

  .sc-webapp-launcher__detail-hero::after {
    background: linear-gradient(180deg, rgba(6, 16, 32, .76) 0%, rgba(6, 16, 32, .5) 100%);
  }

  .sc-webapp-launcher__detail-title {
    font-size: 28px;
  }

  .sc-webapp-launcher__detail-content {
    padding: 22px 20px 26px;
  }

  .sc-webapp-launcher__beta-controls {
    grid-template-columns: 1fr;
  }

  .sc-webapp-launcher__beta-submit {
    width: 100%;
  }

  .sc-webapp-launcher-admin__header {
    flex-direction: column;
    padding: 20px;
  }

  .sc-webapp-launcher-admin__summary,
  .sc-webapp-launcher-admin__table-wrap {
    margin-right: 18px;
    margin-left: 18px;
  }
}
