    :root {
      --android-bg: #000;
      --app-label: #ffffff;
      --modal-bg: #ffffff;
      --accent: #0f8f68;
      --action: #101828;
      --action-shadow: rgba(16, 24, 40, 0.28);
      --system-gray: #f2f2f7;
      --ink: #17202a;
      --line: #d0d5dd;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      margin: 0;
      min-height: 100%;
      background: #070809;
    }

    body {
      margin: 0;
      min-height: 100%;
      position: relative;
      background:
        radial-gradient(circle at 20% 20%, rgba(17, 117, 109, 0.08), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(88, 101, 242, 0.05), transparent 24%),
        linear-gradient(180deg, #070809 0%, #0b0d10 55%, #070809 100%);
      color: var(--app-label);
      overflow: hidden;
      height: 100vh;
      height: 100dvh;
      overscroll-behavior: none;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: -20%;
      pointer-events: none;
      z-index: 0;
    }

    body::before {
      background:
        repeating-linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.03) 0 1px,
          transparent 1px 88px
        );
      opacity: 0.08;
      animation: backgroundDrift 72s linear infinite;
    }

    body::after {
      inset: 0;
      background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.03), transparent 42%),
        radial-gradient(circle at 50% 80%, rgba(17, 117, 109, 0.05), transparent 48%);
      opacity: 0.8;
      animation: backgroundPulse 18s ease-in-out infinite alternate;
    }

    #boot-screen {
      position: fixed;
      inset: 0;
      background: #000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0;
      padding: 24px;
      z-index: 9999;
      transition: opacity 0.8s ease-out;
      overflow: hidden;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }

    #boot-screen::before {
      content: "";
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(circle at 50% 45%, rgba(61, 220, 132, 0.16), transparent 38%),
        radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.08), transparent 20%);
      opacity: 0.85;
      transform: scale(1.05);
      pointer-events: none;
    }

    #boot-screen.boot-exit {
      animation: bootScreenSwipe 0.34s cubic-bezier(0.32, 0.72, 0, 1) forwards;
    }

    #boot-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
        radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.09), transparent 38%);
      opacity: 0.22;
      pointer-events: none;
    }

    .boot-copy {
      position: relative;
      width: min(100%, 980px);
      text-align: center;
      display: grid;
      justify-items: center;
      gap: 12px;
      will-change: transform, opacity, filter;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }

    .boot-company {
      width: min(100%, 560px);
      margin-top: 22px;
      display: grid;
      gap: 12px;
      justify-items: center;
    }

    .boot-company p {
      margin: 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: clamp(13px, 2.4vw, 16px);
      line-height: 1.45;
    }

    .boot-company nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .boot-enter {
      min-width: 180px;
      height: 48px;
      padding: 0 22px;
      border: 0;
      border-radius: 16px;
      background: #3ddc84;
      color: #07110c;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: -0.01em;
      box-shadow: 0 18px 44px rgba(61, 220, 132, 0.24);
    }

    #boot-screen.boot-typing .boot-enter,
    #boot-screen.boot-typing .powered-by,
    #boot-screen.boot-typing .boot-company nav {
      opacity: 0;
      transform: translateY(8px);
    }

    #boot-screen.boot-typed .boot-enter,
    #boot-screen.boot-typed .powered-by,
    #boot-screen.boot-typed .boot-company nav {
      animation: bootControlsIn 0.26s ease forwards;
    }

    .boot-company a {
      color: rgba(255, 255, 255, 0.92);
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    }

    .powered-by {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.58);
      font-size: 12px;
      font-weight: 700;
    }

    .powered-by strong {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 7px;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      font-size: 14px;
      font-weight: 850;
      letter-spacing: -0.02em;
    }

    .aws-mark {
      position: relative;
      text-transform: lowercase;
      padding-bottom: 2px;
    }

    .aws-mark::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 6px;
      height: 4px;
      border-bottom: 2px solid #ff9900;
      border-radius: 0 0 999px 999px;
      transform: rotate(-8deg);
    }

    .boot-label {
      color: #fff;
      margin: 0;
      letter-spacing: 0;
      font-size: 13px;
      font-weight: 700;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }

    .boot-label-strong {
      max-width: 100%;
      letter-spacing: -0.05em;
      font-size: clamp(82px, 20vw, 220px);
      font-weight: 950;
      line-height: 0.82;
      text-transform: uppercase;
      text-wrap: balance;
      text-shadow: 0 2px 0 rgba(255, 255, 255, 0.06), 0 24px 54px rgba(0, 0, 0, 0.48);
    }

    .boot-label-strong .boot-main,
    .boot-label-strong .boot-time {
      display: block;
      will-change: transform, filter;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }

    .boot-label-strong .boot-main {
      transform: translateY(0);
    }

    .boot-label-strong .boot-time {
      white-space: nowrap;
      letter-spacing: -0.04em;
    }

    .boot-subhead {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      letter-spacing: 0.3em;
      font-size: clamp(20px, 4vw, 34px);
      font-weight: 950;
      line-height: 1.1;
      text-transform: uppercase;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }

    .boot-subhead-secondary {
      color: rgba(255, 255, 255, 0.76);
      letter-spacing: 0.26em;
      font-size: clamp(15px, 3.2vw, 26px);
    }

    .typing-live::after {
      content: "";
      display: inline-block;
      width: 0.08em;
      height: 0.85em;
      margin-left: 0.06em;
      background: currentColor;
      transform: translateY(0.08em);
      animation: typingCaretBlink 0.8s steps(1) infinite;
    }

    .boot-company p.typing-live::after {
      width: 2px;
      height: 1em;
      margin-left: 3px;
    }

    @keyframes typingCaretBlink {
      50% { opacity: 0; }
    }

    @keyframes bootControlsIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 520px) {
      #boot-screen {
        padding: 18px;
      }

      .boot-label-strong {
        font-size: clamp(72px, 18vw, 138px);
        line-height: 0.88;
        letter-spacing: -0.03em;
      }

      .boot-subhead {
        font-size: clamp(20px, 5vw, 30px);
        letter-spacing: 0.2em;
      }

      .boot-subhead-secondary {
        font-size: clamp(14px, 3.8vw, 20px);
        letter-spacing: 0.18em;
      }
    }

    @keyframes bootScreenSwipe {
      0% {
        transform: translateX(0);
        opacity: 1;
      }
      100% {
        transform: translateX(-102%);
        opacity: 1;
      }
    }

    .home-screen {
      position: relative;
      z-index: 1;
      height: 100vh;
      height: 100dvh;
      overflow-y: auto;
      padding: 14px 20px 188px;
      max-width: 680px;
      margin: 0 auto;
      perspective: 1000px;
      scrollbar-width: none;
    }

    .home-screen::-webkit-scrollbar {
      display: none;
    }

    .company-kicker {
      margin: 0 0 8px;
      color: #3ddc84;
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .company-document h1 {
      margin: 0 0 10px;
      color: #fff;
      font-size: clamp(22px, 4vw, 30px);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .company-document p {
      margin: 0;
      color: rgba(255, 255, 255, 0.74);
      font-size: 14px;
      line-height: 1.55;
    }

    .company-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .company-links a,
    .company-back,
    .company-document a {
      color: #fff;
    }

    .company-links a {
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
    }

    .company-page {
      min-height: 100vh;
      height: auto;
      overflow-y: auto;
    }

    .company-document {
      position: relative;
      z-index: 1;
      width: min(680px, calc(100% - 32px));
      margin: 0 auto;
      padding: 42px 0 64px;
    }

    .company-document section {
      margin-top: 28px;
    }

    .company-document h2 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 18px;
    }

    .company-back {
      display: inline-block;
      margin-bottom: 28px;
      color: rgba(255, 255, 255, 0.76);
      text-decoration: none;
    }

    .top-notification {
      position: fixed;
      bottom: max(96px, calc(96px + env(safe-area-inset-bottom)));
      left: 50%;
      width: min(400px, calc(100% - 32px));
      height: 42px;
      padding: 0 10px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      background: rgba(20, 22, 25, 0.7);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
      transform: translateX(-50%);
      backdrop-filter: blur(20px);
      z-index: 880;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    body.live-web-editing .top-notification {
      display: none;
    }

    @keyframes backgroundDrift {
      0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }
      100% {
        transform: translate3d(-4%, 3%, 0) rotate(1deg);
      }
    }

    @keyframes backgroundPulse {
      0% {
        opacity: 0.55;
        transform: scale(1);
      }
      100% {
        opacity: 0.9;
        transform: scale(1.03);
      }
    }

    .notification-window {
      width: 100%;
      height: 34px;
      overflow: hidden;
    }

    .notification-track {
      display: flex;
      width: 400%;
      animation: notificationSwipeHorizontal 12s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
    }

    .notification-slide {
      flex: 0 0 25%;
      width: 25%;
      height: 34px;
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr) 14px;
      gap: 10px;
      align-items: center;
      color: #fff;
      text-decoration: none;
      flex-shrink: 0;
    }

    @keyframes notificationSwipeHorizontal {
      0%, 30% { transform: translateX(0); }
      25%, 45% { transform: translateX(-25%); }
      50%, 70% { transform: translateX(-50%); }
      75%, 95% { transform: translateX(-75%); }
      100% { transform: translateX(0); }
    }

    .notification-icon {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      padding: 6px;
    }

    .notification-icon.youtube {
      background: #ff0033;
    }

    .notification-icon.telegram {
      background: #2aabee;
    }

    .notification-icon.discord {
      background: #5865f2;
    }

    .notification-icon.install {
      background: #11756d;
    }

    .notification-icon svg {
      display: block;
      width: 100%;
      height: 100%;
      fill: currentColor;
    }

    .notification-copy {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
      flex: 1;
    }

    .notification-app {
      font-size: 9px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--accent);
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .notification-title {
      font-size: 12px;
      font-weight: 600;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .notification-text {
      display: none;
    }

    .notification-chevron {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1;
      text-align: right;
    }

    .section-tabs {
      position: sticky;
      top: 10px;
      z-index: 20;
      display: flex;
      gap: 4px;
      margin: 0 0 10px;
      padding: 4px;
      overflow-x: auto;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      background: rgba(9, 12, 16, 0.84);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      scrollbar-width: none;
    }

    .section-tabs::-webkit-scrollbar {
      display: none;
    }

    .section-tab {
      flex: 1 0 auto;
      min-width: 88px;
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
      border: 0;
      border-radius: 10px;
      background: transparent;
      color: rgba(255, 255, 255, 0.72);
      font: inherit;
      font-size: 12px;
      line-height: 1;
      font-weight: 900;
      cursor: pointer;
      white-space: nowrap;
    }

    .section-tab.active,
    .section-tab:active {
      background: #fff;
      color: #111827;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    }

    .app-section {
      margin-bottom: 18px;
      scroll-margin-top: 62px;
    }

    .app-section.compact {
      margin-bottom: 0;
    }

    .app-section:last-child {
      margin-bottom: 0;
    }

    .app-section-title {
      margin: 0 0 16px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 15px;
      line-height: 1.2;
      font-weight: 800;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
    }

    .app-section-grid {
      display: grid;
      gap: 14px;
      padding: 2px 2px 10px;
    }

    .catalog-loader {
      width: 28px;
      height: 28px;
      margin: 28px auto 0;
      border: 3px solid rgba(255, 255, 255, 0.18);
      border-top-color: rgba(255, 255, 255, 0.92);
      border-radius: 50%;
      animation: buildSpin 0.8s linear infinite;
    }

    .my-apps-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 0;
      color: inherit;
      animation: zoomIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
    }

    .my-apps-placeholder .launcher-icon {
      border: 2px dashed rgba(255, 255, 255, 0.56);
      background: rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.86);
      box-shadow: none;
    }

    .app-list-card {
      --card-bg-a: #ffffff;
      --card-bg-b: #edf8f5;
      --card-border: rgba(20, 184, 166, 0.34);
      --card-glow: rgba(20, 184, 166, 0.16);
      --card-meta-bg: rgba(15, 143, 104, 0.12);
      --card-meta-color: #075e49;
      position: relative;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      grid-template-areas:
        "icon body"
        "actions actions";
      gap: 12px 14px;
      align-items: center;
      cursor: pointer;
      min-width: 0;
      min-height: 132px;
      animation: zoomIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
      padding: 15px;
      border: 1px solid var(--card-border);
      border-radius: 26px;
      background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.82), transparent 34%),
        linear-gradient(135deg, var(--card-bg-a), var(--card-bg-b));
      color: inherit;
      box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18), 0 0 0 1px var(--card-glow);
      backdrop-filter: blur(16px);
      -webkit-tap-highlight-color: transparent;
      overflow: hidden;
      contain: layout paint;
      transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
    }

    .home-screen.render-settled .app-list-card {
      animation: none;
    }

    @media (max-width: 720px) {
      body::before,
      body::after {
        animation: none;
      }

      .app-list-card {
        backdrop-filter: none;
      }
    }

    .app-list-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 46%);
    }

    .app-list-card:nth-child(5n + 2) {
      --card-bg-a: #fff8ed;
      --card-bg-b: #ffe7c2;
      --card-border: rgba(245, 158, 11, 0.34);
      --card-glow: rgba(245, 158, 11, 0.15);
      --card-meta-bg: rgba(146, 64, 14, 0.1);
      --card-meta-color: #8a3b0a;
    }

    .app-list-card:nth-child(5n + 3) {
      --card-bg-a: #f0f7ff;
      --card-bg-b: #d9ecff;
      --card-border: rgba(14, 165, 233, 0.32);
      --card-glow: rgba(14, 165, 233, 0.14);
      --card-meta-bg: rgba(3, 105, 161, 0.1);
      --card-meta-color: #075985;
    }

    .app-list-card:nth-child(5n + 4) {
      --card-bg-a: #fff1f2;
      --card-bg-b: #ffd6dc;
      --card-border: rgba(244, 63, 94, 0.28);
      --card-glow: rgba(244, 63, 94, 0.13);
      --card-meta-bg: rgba(190, 18, 60, 0.1);
      --card-meta-color: #9f1239;
    }

    .app-list-card:nth-child(5n) {
      --card-bg-a: #f7f3ff;
      --card-bg-b: #e9ddff;
      --card-border: rgba(124, 58, 237, 0.26);
      --card-glow: rgba(124, 58, 237, 0.12);
      --card-meta-bg: rgba(109, 40, 217, 0.1);
      --card-meta-color: #5b21b6;
    }

    .app-list-card.building {
      --card-bg-a: #fffbeb;
      --card-bg-b: #fde68a;
      --card-border: rgba(245, 158, 11, 0.46);
      --card-glow: rgba(245, 158, 11, 0.24);
      --card-meta-bg: rgba(120, 53, 15, 0.12);
      --card-meta-color: #7c2d12;
    }

    .app-list-card.card-feature {
      grid-template-columns: 76px minmax(0, 1fr);
      min-height: 164px;
      padding: 18px;
    }

    .app-list-card.card-feature .launcher-icon {
      width: 76px;
      height: 76px;
      border-radius: 22px;
    }

    .app-list-card.card-feature .app-list-title {
      font-size: 20px;
    }

    .app-list-card.card-feature .app-list-actions {
      grid-template-columns: 1.55fr 0.9fr;
    }

    .app-list-card.card-compact {
      grid-template-columns: 54px minmax(0, 1fr) auto;
      grid-template-areas: "icon body actions";
      min-height: 86px;
      padding: 12px;
      border-radius: 20px;
    }

    .app-list-card.card-compact .launcher-icon {
      width: 54px;
      height: 54px;
      border-radius: 15px;
      font-size: 18px;
    }

    .app-list-card.card-compact .app-list-idea,
    .app-list-card.card-compact .app-list-tier,
    .app-list-card.card-compact .app-list-more {
      display: none;
    }

    .app-list-card.card-compact .app-list-actions {
      grid-template-columns: 96px;
      min-width: 96px;
    }

    .app-list-card.card-split {
      grid-template-columns: minmax(0, 1fr) 72px;
      grid-template-areas:
        "body icon"
        "actions icon";
      align-items: stretch;
    }

    .app-list-card.card-split .launcher-icon {
      justify-self: end;
      align-self: stretch;
      width: 72px;
      height: auto;
      min-height: 108px;
      border-radius: 22px;
    }

    .app-list-card.card-split .app-list-actions {
      grid-template-columns: 1fr 44px;
    }

    .app-list-card.card-split .app-list-more {
      padding: 0;
      font-size: 0;
    }

    .app-list-card.card-split .app-list-more::before {
      content: "...";
      font-size: 18px;
      letter-spacing: 1px;
    }

    .app-list-card.card-story {
      grid-template-columns: 1fr;
      grid-template-areas:
        "icon"
        "body"
        "actions";
      justify-items: start;
      min-height: 178px;
    }

    .app-list-card.card-story .launcher-icon {
      width: 70px;
      height: 70px;
      border-radius: 24px;
    }

    .app-list-card.card-story .app-list-title-row {
      gap: 7px;
    }

    .app-list-card.card-story .app-list-idea {
      -webkit-line-clamp: 3;
    }

    .app-list-card.card-story .app-list-actions {
      width: 100%;
      grid-template-columns: 1fr 0.7fr;
    }

    .app-list-card > * {
      position: relative;
      z-index: 1;
    }

    .app-list-card:active {
      transform: scale(0.98);
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    }

    @keyframes zoomIn {
      from { transform: scale(0); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .launcher-icon {
      grid-area: icon;
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: #fff;
      display: grid;
      place-items: center;
      font-size: 21px;
      font-weight: 950;
      box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
      letter-spacing: 0;
    }

    .launcher-icon img {
      width: 100%;
      height: 100%;
      border-radius: inherit;
      object-fit: cover;
    }

    .concept-launcher-icon {
      position: relative;
      overflow: hidden;
    }

    .concept-icon-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.36), transparent 32%),
        radial-gradient(circle at 16% 86%, rgba(0, 0, 0, 0.12), transparent 38%);
    }

    .launcher-icon .concept-icon-glyph {
      position: relative;
      z-index: 1;
      width: 58%;
      height: 58%;
      border-radius: 0;
      object-fit: contain;
      filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
    }

    .concept-icon-initials {
      position: relative;
      z-index: 1;
      color: #fff;
      font-size: 24px;
      font-weight: 950;
      text-shadow: 0 8px 14px rgba(0, 0, 0, 0.22);
    }

    .app-list-body {
      grid-area: body;
      min-width: 0;
      display: grid;
      gap: 7px;
      align-self: stretch;
      align-content: center;
    }

    .app-list-title-row {
      min-width: 0;
      display: grid;
      gap: 5px;
    }

    .app-list-title,
    .launcher-label {
      color: #111827;
      margin: 0;
      font-size: 17px;
      line-height: 1.2;
      text-shadow: none;
      font-weight: 900;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .app-list-idea {
      margin: 0;
      color: #475467;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.32;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .app-list-meta,
    .launcher-meta {
      width: fit-content;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      margin-top: 0;
      padding: 5px 8px;
      border-radius: 999px;
      background: var(--card-meta-bg);
      color: var(--card-meta-color);
      font-size: 10px;
      line-height: 1;
      text-shadow: none;
      font-weight: 950;
    }

    .app-list-tier {
      width: fit-content;
      margin-top: 3px;
      padding: 4px 7px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.08);
      color: #17202a;
      font-size: 10px;
      line-height: 1;
      font-weight: 900;
      text-shadow: none;
    }

    .app-list-actions {
      grid-area: actions;
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      gap: 9px;
      align-self: center;
    }

    .app-list-primary,
    .app-list-more {
      min-width: 0;
      min-height: 44px;
      padding: 0 12px;
      border: 0;
      border-radius: 15px;
      cursor: pointer;
      font: inherit;
      font-size: 13px;
      font-weight: 950;
    }

    .app-list-primary.install-action {
      background: linear-gradient(135deg, var(--action), #243140);
      color: #fff;
      box-shadow: 0 12px 22px var(--action-shadow);
    }

    .app-list-primary.building-action {
      background: linear-gradient(135deg, #f97316, #facc15);
      color: #111827;
      box-shadow: 0 12px 22px rgba(249, 115, 22, 0.3);
    }

    .app-list-more {
      background: rgba(255, 255, 255, 0.7);
      color: #17202a;
      box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
    }

    #app-modal {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
      color: #17202a;
      border-radius: 30px 30px 0 0;
      padding: 24px 24px max(24px, env(safe-area-inset-bottom));
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
      z-index: 1000;
      max-height: 90vh;
      max-height: 90dvh;
      overflow-y: auto;
      border: 1px solid rgba(255, 255, 255, 0.72);
      box-shadow: 0 -18px 70px rgba(15, 23, 42, 0.34);
    }

    #app-modal.active {
      transform: translateY(0);
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      z-index: 999;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-handle {
      width: 44px;
      height: 5px;
      background: #cbd5e1;
      border-radius: 10px;
      margin: -8px auto 18px;
    }

    .modal-header {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-bottom: 20px;
      padding: 14px;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    }

    .modal-header .launcher-icon {
      width: 92px;
      height: 92px;
      font-size: 30px;
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
      border: 1px solid #e6e8ec;
      border-radius: 22px;
      flex: 0 0 auto;
    }

    .modal-title {
      min-width: 0;
      display: grid;
      gap: 7px;
      justify-items: start;
    }

    .modal-title h2 {
      margin: 0;
      font-size: 26px;
      line-height: 1.12;
      color: #17202a;
      letter-spacing: 0;
    }

    .modal-title span {
      color: var(--accent);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.04em;
    }

    .store-status {
      display: inline-flex;
      width: fit-content;
      margin-top: 9px;
      padding: 7px 10px;
      border-radius: 999px;
      background: #ecfdf3;
      color: #067647;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1;
    }

    .store-status.building {
      background: #eff6ff;
      color: #175cd3;
    }

    .store-status.failed {
      background: #fef3f2;
      color: #b42318;
    }

    .store-meta {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin: 0 0 18px;
      padding: 12px;
      border: 1px solid #e4e7ec;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    }

    .store-meta-item {
      min-width: 0;
      display: grid;
      gap: 4px;
      text-align: center;
      padding: 4px 2px;
    }

    .store-meta-item strong {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #17202a;
      font-size: 14px;
      font-weight: 950;
    }

    .store-meta-item span {
      color: #667085;
      font-size: 11px;
      font-weight: 800;
    }

    .store-section-title {
      margin: 0 0 8px;
      color: #17202a;
      font-size: 16px;
      font-weight: 950;
    }

    .modal-description {
      color: #344054;
      line-height: 1.5;
      margin: 0;
      padding: 15px;
      border: 1px solid #e4e7ec;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    }

    .feature-list {
      background: #f8fafc;
      border: 1px solid #e4e7ec;
      border-radius: 20px;
      padding: 16px;
      margin: 14px 0 20px;
      list-style: none;
    }

    .feature-list li {
      margin-bottom: 8px;
      font-size: 14px;
      line-height: 1.35;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: #344054;
    }

    .feature-list li:last-child {
      margin-bottom: 0;
    }

    .feature-list li::before {
      content: "*";
      color: var(--accent);
      font-weight: 800;
    }

    .download-btn,
    .share-btn,
    .source-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      text-align: center;
      text-decoration: none;
    }

    .download-btn {
      background: var(--accent);
      color: #fff;
      min-height: 54px;
      padding: 15px 16px;
      border: 0;
      border-radius: 18px;
      font: inherit;
      font-weight: 950;
      box-shadow: 0 14px 28px rgba(17, 117, 109, 0.22);
    }

    .modal-actions {
      display: grid;
      gap: 10px;
    }

    .queue-upsell {
      display: grid;
      gap: 5px;
      margin-top: 16px;
      padding: 14px;
      border-radius: 16px;
      background: #fff7ed;
      border: 1px solid #fed7aa;
      color: #7c2d12;
    }

    .queue-upsell strong {
      font-size: 15px;
      font-weight: 950;
    }

    .queue-upsell span {
      color: #9a3412;
      font-size: 13px;
      line-height: 1.35;
      font-weight: 750;
    }

    .priority-upsell {
      background: #17202a;
      box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
    }

    .modal-secondary-actions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
      gap: 9px;
    }

    .share-btn {
      min-height: 46px;
      margin: 0;
      padding: 12px 10px;
      border-radius: 16px;
      border: 1px solid #d0d5dd;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      cursor: pointer;
    }

    .title-share-btn {
      width: auto;
      min-height: 34px;
      padding: 8px 11px;
      border-radius: 999px;
      background: #17202a;
      border-color: #17202a;
      color: #fff;
      font-size: 12px;
      line-height: 1;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
    }

    .edit-btn {
      background: #17202a;
      border-color: #17202a;
      color: #fff;
    }

    .source-btn {
      min-height: 46px;
      padding: 12px 10px;
      border: 1px solid #d0d5dd;
      border-radius: 16px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 900;
      background: #fff;
    }

    .action-icon {
      width: 18px;
      height: 18px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
    }

    .action-icon svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .payment-overlay {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: end center;
      padding: 16px;
      background: rgba(0, 0, 0, 0.62);
      backdrop-filter: blur(5px);
      z-index: 1200;
    }

    .payment-sheet {
      width: min(100%, 520px);
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 24px;
      background: #fff;
      color: #17202a;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    .payment-sheet-header {
      display: grid;
      gap: 4px;
    }

    .payment-sheet-header strong {
      font-size: 22px;
      font-weight: 950;
    }

    .payment-sheet-header span,
    .payment-label {
      color: #667085;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.35;
    }

    .payment-address-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 8px;
      align-items: stretch;
    }

    .payment-address {
      min-width: 0;
      overflow-wrap: anywhere;
      user-select: text;
      -webkit-user-select: text;
      padding: 12px;
      border: 1px solid #d0d5dd;
      border-radius: 14px;
      background: #f9fafb;
      color: #17202a;
      font-size: 12px;
      line-height: 1.35;
    }

    .payment-input {
      width: 100%;
      min-height: 48px;
      border: 1px solid #d0d5dd;
      border-radius: 14px;
      padding: 0 12px;
      color: #17202a;
      font: inherit;
      font-size: 14px;
      outline: none;
    }

    .payment-input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(17, 117, 109, 0.14);
    }

    .payment-actions {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 10px;
      margin-top: 2px;
    }

    .payment-copy,
    .payment-cancel,
    .payment-submit {
      min-height: 44px;
      border: 0;
      border-radius: 14px;
      cursor: pointer;
      font: inherit;
      font-weight: 950;
    }

    .payment-copy,
    .payment-cancel {
      background: #eef2f6;
      color: #17202a;
    }

    .payment-submit {
      background: var(--accent);
      color: #fff;
    }



    .app-list-card.building .launcher-icon {
      position: relative;
      overflow: hidden;
      animation: buildPulse 1.6s ease-in-out infinite;
    }

    .app-list-card.building .launcher-icon::after {
      content: "";
      position: absolute;
      inset: 6px;
      border: 3px solid currentColor;
      border-top-color: transparent;
      border-radius: 50%;
      opacity: 0.28;
      animation: buildSpin 1.1s linear infinite;
    }

    .build-progress {
      display: grid;
      gap: 8px;
      margin: 18px 0 4px;
      padding: 12px;
      border-radius: 16px;
      background: #f2f2f7;
      color: #344054;
      font-size: 13px;
      font-weight: 800;
    }

    .build-progress-bar {
      height: 10px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(17, 117, 109, 0.14);
    }

    .build-progress-bar span {
      display: block;
      width: var(--progress, 50%);
      height: 100%;
      border-radius: inherit;
      background: var(--accent);
      animation: progressGlow 1.4s ease-in-out infinite;
    }

    .build-progress-bar.indeterminate span {
      width: 42%;
      animation: progressSweep 1.25s ease-in-out infinite;
    }

    @keyframes buildSpin {
      to { transform: rotate(360deg); }
    }

    @keyframes buildPulse {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    @keyframes progressGlow {
      0%, 100% { opacity: 0.72; }
      50% { opacity: 1; }
    }

    @keyframes progressSweep {
      0% { transform: translateX(-120%); }
      100% { transform: translateX(280%); }
    }

    .prompt-overlay {
      position: fixed;
      left: 50%;
      bottom: max(calc(16px + var(--keyboard-offset, 0px)), env(safe-area-inset-bottom));
      width: min(520px, calc(100% - 24px));
      transform: translateX(-50%);
      z-index: 900;
      display: grid;
      gap: 8px;
      pointer-events: none;
      transition: bottom 0.16s ease, opacity 0.16s ease, transform 0.18s ease, visibility 0s linear 0s;
    }

    .prompt-overlay.live-hidden {
      opacity: 0;
      transform: translate(-50%, 120%);
      visibility: hidden;
      pointer-events: none;
      transition-delay: 0s, 0s, 0s, 0.18s;
    }

    @media (min-width: 768px) {
      .prompt-overlay {
        bottom: 24px;
      }

      .live-web-edit {
        inset: 0;
      }
    }

    .prompt-status {
      justify-self: center;
      max-width: 100%;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.54);
      color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(14px);
      font-size: 12px;
      line-height: 1.3;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      pointer-events: none;
      text-align: center;
    }

    .prompt-status.active {
      opacity: 1;
      transform: translateY(0);
    }

    .live-web-edit {
      position: fixed;
      inset: 0;
      z-index: 820;
      display: none;
      grid-template-rows: minmax(0, 1fr);
      overflow: hidden;
      border: 0;
      border-radius: 0;
      background: #0b0d10;
      box-shadow: inset 0 0 0 3px #3ddc84, inset 0 0 36px rgba(61, 220, 132, 0.52);
    }

    .live-web-edit.active {
      display: grid;
    }

    .live-web-edit::before,
    .live-web-edit::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: 2;
    }

    .live-web-edit::before {
      inset: 0;
      border: 5px solid #3ddc84;
      box-shadow: inset 0 0 42px rgba(61, 220, 132, 0.42), 0 0 42px rgba(61, 220, 132, 0.24);
    }

    .live-web-edit::after {
      inset: 0;
      background:
        linear-gradient(90deg, rgba(61, 220, 132, 0.24), transparent 12%, transparent 88%, rgba(61, 220, 132, 0.24)),
        linear-gradient(180deg, rgba(61, 220, 132, 0.2), transparent 10%, transparent 90%, rgba(61, 220, 132, 0.2));
      mix-blend-mode: multiply;
    }

    .live-web-edit.rebuilding {
      box-shadow: inset 0 0 0 3px #facc15, inset 0 0 42px rgba(250, 204, 21, 0.46);
    }

    .live-web-edit.rebuilding::before {
      border-color: #facc15;
      box-shadow: inset 0 0 42px rgba(250, 204, 21, 0.36), 0 0 42px rgba(250, 204, 21, 0.2);
    }

    .live-web-edit.updated {
      box-shadow: inset 0 0 0 3px #22c55e, inset 0 0 42px rgba(34, 197, 94, 0.46);
    }

    .live-web-edit.failed {
      box-shadow: inset 0 0 0 3px #f43f5e, inset 0 0 42px rgba(244, 63, 94, 0.42);
    }

    .live-web-edit.failed::before {
      border-color: #f43f5e;
      box-shadow: inset 0 0 42px rgba(244, 63, 94, 0.34), 0 0 42px rgba(244, 63, 94, 0.2);
    }

    .live-web-frame {
      width: 100%;
      height: 100%;
      border: 0;
      background: #fff;
      position: relative;
      z-index: 1;
    }

    .live-web-exit {
      position: fixed;
      top: max(10px, env(safe-area-inset-top));
      right: 10px;
      z-index: 904;
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 999px;
      background: rgba(6, 17, 13, 0.72);
      color: #fff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
      cursor: pointer;
      font: inherit;
      font-size: 22px;
      font-weight: 800;
      line-height: 1;
      backdrop-filter: blur(10px);
    }

    .live-web-edit-tab {
      position: fixed;
      left: 50%;
      bottom: max(10px, env(safe-area-inset-bottom));
      z-index: 904;
      min-height: 34px;
      min-width: 72px;
      padding: 0 14px;
      border: 0;
      border-radius: 999px;
      background: #3ddc84;
      color: #06110d;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
      cursor: pointer;
      font: inherit;
      font-size: 12px;
      font-weight: 950;
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 16px);
      transition: opacity 0.16s ease, transform 0.18s ease;
    }

    .prompt-overlay.live-hidden ~ .live-web-edit .live-web-edit-tab {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .prompt-bar {
      position: relative;
      display: grid;
      gap: 12px;
      padding: 8px;
      border: 1px solid rgba(61, 220, 132, 0.42);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.98);
      color: #17202a;
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.42), 0 0 0 5px rgba(61, 220, 132, 0.11);
      backdrop-filter: blur(18px);
      pointer-events: auto;
    }

    .prompt-toggle {
      min-height: 64px;
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr) 38px;
      gap: 12px;
      align-items: center;
      border: 0;
      border-radius: 18px;
      background: linear-gradient(135deg, #3ddc84, #20c997);
      color: #06110d;
      cursor: pointer;
      padding: 10px 12px;
      text-align: left;
      font: inherit;
      box-shadow: 0 14px 28px rgba(61, 220, 132, 0.3);
      transition: min-height 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, padding 0.18s ease;
    }

    .prompt-toggle:active {
      transform: scale(0.99);
    }

    .prompt-toggle.building {
      background: #0f766e;
    }

    .prompt-toggle.building .android-logo {
      background: #ccfbf1;
      color: #115e59;
    }

    .android-logo {
      width: 42px;
      height: 42px;
      display: block;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.72);
      padding: 8px;
      color: #06110d;
      box-shadow: inset 0 0 0 1px rgba(6, 17, 13, 0.08);
    }

    .prompt-toggle-copy {
      min-width: 0;
      display: grid;
      gap: 2px;
    }

    .prompt-toggle-title {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 18px;
      font-weight: 900;
      line-height: 1.15;
    }

    .prompt-toggle-subtitle {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: rgba(6, 17, 13, 0.72);
      font-size: 12px;
      font-weight: 750;
      line-height: 1.2;
    }

    .prompt-toggle-arrow {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(6, 17, 13, 0.1);
      color: #06110d;
      font-size: 24px;
      font-weight: 900;
      line-height: 1;
      transition: transform 0.2s ease;
    }

    .prompt-bar.expanded .prompt-toggle {
      min-height: 42px;
      grid-template-columns: 28px minmax(0, 1fr) 30px;
      gap: 8px;
      padding: 7px 9px;
      border-radius: 14px;
      background: #eef4f1;
      color: #17202a;
      box-shadow: none;
    }

    .prompt-bar.expanded .android-logo {
      width: 28px;
      height: 28px;
      border-radius: 9px;
      padding: 5px;
      background: #d9f8e8;
    }

    .prompt-bar.expanded .prompt-toggle-title {
      font-size: 13px;
      line-height: 1.1;
    }

    .prompt-bar.expanded .prompt-toggle-subtitle {
      display: none;
    }

    .prompt-bar.expanded .prompt-toggle-arrow {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: rgba(23, 32, 42, 0.08);
      font-size: 20px;
    }

    .prompt-bar.expanded .prompt-toggle-arrow {
      transform: rotate(45deg);
    }

    .prompt-fields {
      display: grid;
      gap: 10px;
      animation: promptSlideIn 0.22s ease;
    }

    .prompt-step {
      display: grid;
      gap: 10px;
    }

    .prompt-step[hidden] {
      display: none;
    }

    .prompt-step-secondary {
      padding-top: 2px;
    }

    .prompt-step-title {
      color: #526071;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      padding: 0 2px;
    }

    .prompt-composer {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 52px;
      gap: 7px;
      align-items: stretch;
      padding: 8px;
      border: 1px solid #d9e0ea;
      border-radius: 16px;
      background: #ffffff;
    }

    .prompt-bar.editing .prompt-composer {
      grid-template-columns: minmax(0, 1fr) 52px;
    }

    .prompt-bar.editing .platform-segment,
    .prompt-bar.editing .name-field {
      display: none;
    }

    .prompt-bar.editing .composer-fields {
      grid-column: 1;
      grid-template-columns: 1fr;
    }

    .prompt-bar.editing .prompt-idea {
      min-height: 46px;
      max-height: 126px;
    }

    .platform-segment {
      display: grid;
      grid-column: 1 / -1;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 6px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .platform-option {
      min-width: 0;
      min-height: 36px;
      border: 0;
      border-radius: 12px;
      color: #243140;
      background: #f3f6fa;
      box-shadow: inset 0 0 0 1px rgba(23, 32, 42, 0.08);
      font: inherit;
      font-size: 0.72rem;
      font-weight: 900;
      cursor: pointer;
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      align-items: center;
      justify-content: center;
      gap: 6px;
      line-height: 1;
      padding: 0 10px;
      text-align: center;
      transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
    }

    .platform-option svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .platform-option span {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .platform-option.active {
      color: #06110d;
      background: #3ddc84;
      box-shadow: inset 0 0 0 1px rgba(23, 32, 42, 0.04);
    }

    .platform-option:not(:disabled):active {
      transform: translateY(1px);
    }

    .platform-option:disabled {
      cursor: not-allowed;
      color: #7b8794;
      background: #e2e8f0;
      box-shadow: inset 0 0 0 1px rgba(23, 32, 42, 0.06);
    }

    .platform-option.coming-soon {
      grid-template-columns: 18px minmax(0, 1fr);
      grid-template-rows: auto auto;
      row-gap: 3px;
    }

    .platform-option.coming-soon svg {
      grid-row: 1 / span 2;
    }

    .platform-option.coming-soon small {
      font-size: 0.55rem;
      font-weight: 900;
      line-height: 1;
      color: #687586;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .composer-fields {
      display: grid;
      grid-template-columns: minmax(108px, 0.38fr) minmax(0, 1fr);
      gap: 7px;
      min-width: 0;
    }

    .prompt-fields[hidden] {
      display: none;
    }

    @keyframes promptSlideIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes promptStepOut {
      from { opacity: 1; transform: translateY(0); }
      to { opacity: 0; transform: translateY(-6px); }
    }

    @keyframes promptStepIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .prompt-field {
      width: 100%;
      min-height: 52px;
      padding: 12px 12px;
      border: 1px solid #d5dce6;
      border-radius: 14px;
      outline: none;
      background: #fff;
      color: #17202a;
      font: inherit;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.35;
    }

    .prompt-field-wrap {
      position: relative;
      display: grid;
      min-width: 0;
    }

    .prompt-char-count {
      display: none;
    }

    .name-field .prompt-field {
      min-height: 52px;
    }

    .prompt-idea {
      height: auto;
      max-height: 96px;
      min-height: 46px;
      overflow-y: hidden;
      resize: none;
    }

    .prompt-field::placeholder {
      color: #667085;
      font-weight: 750;
    }

    .prompt-send {
      min-height: 52px;
      width: 100%;
      border: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--action), #243140);
      color: #fff;
      cursor: pointer;
      font: inherit;
      font-size: 0.72rem;
      font-weight: 900;
      line-height: 1;
      display: grid;
      place-items: center;
      align-content: center;
      gap: 5px;
      padding: 0;
      box-shadow: 0 12px 22px var(--action-shadow);
    }

    .prompt-send svg {
      width: 22px;
      height: 22px;
    }

    .prompt-send span {
      max-width: 100%;
      overflow: hidden;
      padding: 0 3px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .prompt-send:active {
      transform: scale(0.99);
    }

    .prompt-send:disabled {
      cursor: wait;
      opacity: 0.68;
      transform: none;
    }

    .prompt-bar.submitting .prompt-field {
      opacity: 0.76;
    }

    .prompt-next {
      background: #0f766e;
    }

    @media (max-width: 520px) {
      .prompt-composer {
        grid-template-columns: 1fr 48px;
      }

      .platform-segment {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .platform-option {
        min-height: 36px;
        justify-content: center;
        text-align: center;
        padding: 0 6px;
      }

      .composer-fields {
        grid-template-columns: 1fr;
      }

      .prompt-field {
        min-height: 50px;
      }

      .name-field .prompt-field {
        min-height: 44px;
      }

      .prompt-idea {
        min-height: 46px;
        max-height: 96px;
      }

      .prompt-send {
        min-height: 54px;
      }

      .prompt-send span {
        display: none;
      }
    }

    @media (max-width: 520px) {
      .home-screen {
        padding: 10px 12px 178px;
      }


      .app-section {
        margin-bottom: 16px;
      }

      .top-notification {
        width: calc(100% - 24px);
        height: 44px;
      }

      .notification-window {
        height: 30px;
      }

      .notification-slide {
        height: 30px;
        grid-template-columns: 26px minmax(0, 1fr) 14px;
      }

      .notification-icon {
        width: 24px;
        height: 24px;
        padding: 5px;
      }

      .app-section-grid {
        gap: 10px;
      }

      .app-list-card {
        grid-template-columns: 58px minmax(0, 1fr);
        grid-template-areas:
          "icon body"
          "actions actions";
        min-height: 126px;
        padding: 12px;
        border-radius: 22px;
      }

      .app-list-card.card-feature,
      .app-list-card.card-compact,
      .app-list-card.card-split,
      .app-list-card.card-story {
        grid-template-columns: 58px minmax(0, 1fr);
        grid-template-areas:
          "icon body"
          "actions actions";
        justify-items: stretch;
        min-height: 126px;
      }

      .app-list-card.card-feature .launcher-icon,
      .app-list-card.card-compact .launcher-icon,
      .app-list-card.card-split .launcher-icon,
      .app-list-card.card-story .launcher-icon {
        justify-self: auto;
        align-self: center;
        width: 58px;
        height: 58px;
        min-height: 0;
        border-radius: 14px;
        font-size: 19px;
      }

      .app-list-card.card-feature .app-list-title {
        font-size: 17px;
      }

      .app-list-card.card-compact .app-list-idea {
        display: -webkit-box;
      }

      .app-list-card.card-compact .app-list-tier {
        display: block;
      }

      .app-list-card.card-compact .app-list-more {
        display: block;
      }

      .app-list-card.card-split .app-list-more {
        padding: 0 12px;
        font-size: 13px;
      }

      .app-list-card.card-split .app-list-more::before {
        content: none;
      }

      .app-list-actions {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        min-width: 0;
      }

      .app-list-card.card-feature .app-list-actions,
      .app-list-card.card-compact .app-list-actions,
      .app-list-card.card-split .app-list-actions,
      .app-list-card.card-story .app-list-actions {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        min-width: 0;
      }

      .modal-secondary-actions {
        grid-template-columns: 1fr;
      }

      .launcher-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
        font-size: 19px;
      }

      #app-modal {
        padding: 26px 18px 24px;
      }

      .modal-header {
        gap: 14px;
      }

      .modal-header .launcher-icon {
        width: 72px;
        height: 72px;
      }

      .modal-title h2 {
        font-size: 24px;
      }

      .store-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
