/* chooser-clean.css — overlay loaded ONLY by index_test.php.
 * Layered on top of chooser.css; never referenced by index.php.
 * Purpose: the cleaner hero scale + the new cloud-hosting strip.
 * (Clean design drops the hero trust-pills/LLM note and per-card
 *  bullet lists in the markup, so no de-styling is needed here.) */

/* ── Cleaner, larger hero ──────────────────────────────────────── */
.uno-h1 {
    font-size: 60px;
    margin-top: 22px;
}
.uno-sub {
    font-size: 17px;
    max-width: 520px;
}

/* ── Cloud-hosting strip ───────────────────────────────────────── */
.uno-cloud-wrap {
    position: relative; z-index: 1;
    max-width: 1140px; width: 100%;
    margin: 28px auto 0;
    padding: 0 40px;
}
.uno-cloud {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    background: linear-gradient(120deg, #11163A 0%, #1E2A6E 55%, #2A3D9E 100%);
    border: 1px solid rgba(99, 128, 255, .4);
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(42, 61, 158, .18);
    transition: transform .25s var(--uno-ease), box-shadow .25s var(--uno-ease);
}
.uno-cloud:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(42, 61, 158, .32), 0 2px 8px rgba(15, 23, 42, .08);
}
.uno-cloud-icon {
    flex-shrink: 0;
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(124, 150, 255, .18);
    border: 1px solid rgba(124, 150, 255, .4);
    display: grid; place-items: center;
}
.uno-cloud-body {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column;
}
.uno-cloud-tag {
    display: inline-flex; align-items: center; gap: 6px;
    align-self: flex-start;
    font-size: 11px; font-weight: 600; color: #A9BCFF;
    text-transform: uppercase; letter-spacing: .06em;
}
.uno-cloud-tag-dot {
    width: 5px; height: 5px; border-radius: 999px; background: #6380FF;
}
.uno-cloud-title {
    font-size: 18px; font-weight: 600; letter-spacing: -.015em;
    color: #fff; margin: 6px 0 0; text-wrap: balance;
}
.uno-cloud-desc {
    font-size: 13px; line-height: 1.5;
    color: rgba(255, 255, 255, .7); margin: 4px 0 0; text-wrap: pretty;
}
.uno-cloud-actions {
    display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.uno-cloud-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    background: #6380FF; border-radius: 8px;
    font-size: 14px; font-weight: 600; color: #fff;
    white-space: nowrap;
    transition: background .2s var(--uno-ease);
}
.uno-cloud:hover .uno-cloud-cta { background: #7C95FF; }
.uno-cloud-cta-arrow { transition: transform .2s ease; }
.uno-cloud:hover .uno-cloud-cta-arrow { transform: translateX(3px); }

/* ── Single-page fit on laptops & desktops (incl. 1366×768) ──────────
   chooser.css only locks the one-page layout at min-height:760px, but a
   1366×768 *screen* yields a browser viewport of only ~650–720px — below
   that threshold — so the page would otherwise scroll. Extend the lock
   down to typical laptop viewport heights so it stays on one screen. */
@media (min-width: 880px) and (min-height: 640px) {
    html, body.uno { height: 100%; overflow: hidden; }
    body.uno { display: flex; flex-direction: column; }
}

/* Short (laptop) viewports: tighten the vertical rhythm so the hero,
   cards, cloud strip and footer all fit one screen with no scroll. */
@media (min-width: 880px) and (max-height: 860px) {
    .uno-top { padding: 12px 48px; }
    .uno-hero { padding: 6px 40px 4px; }
    .uno-h1 { font-size: 40px; margin-top: 8px; }
    .uno-sub { font-size: 15px; margin-top: 6px; }
    .uno-cards { padding-top: 12px; }
    .uno-card { padding: 18px 22px; }
    .uno-card-request { padding: 20px 24px; }
    .uno-card-title-strong { font-size: 26px; }
    .uno-eng-row { margin-top: 10px; padding-top: 14px; }
    .uno-card-cta { padding-top: 12px; }
    .uno-card-cta-primary { margin-top: 12px; }
    .uno-card-meta { margin-top: 8px; }
    .uno-cloud-wrap { margin-top: 14px; }
    .uno-cloud { padding: 14px 22px; }
    .uno-footer { padding: 12px 48px 10px; }
}

/* Large, tall displays (e.g. 1920×1080): scale typography and spacing up
   so the page fills the screen instead of clustering small at the top. */
@media (min-width: 1200px) and (min-height: 900px) {
    .uno-hero { padding: 48px 40px 16px; }
    .uno-h1 { font-size: 66px; margin-top: 28px; }
    .uno-sub { font-size: 18px; margin-top: 16px; max-width: 560px; }
    .uno-cards { max-width: 1240px; padding-top: 40px; gap: 30px; }
    .uno-card { padding: 34px; }
    .uno-card-request { padding: 38px; }
    .uno-card-title { font-size: 26px; }
    .uno-card-title-strong { font-size: 34px; }
    .uno-card-desc, .uno-card-desc-strong { font-size: 15px; }
    .uno-cloud-wrap { max-width: 1240px; margin-top: 40px; }
    .uno-cloud { padding: 24px 28px; }
    .uno-cloud-title { font-size: 20px; }
    .uno-cloud-desc { font-size: 14px; }
    .uno-footer { max-width: 1240px; padding: 32px 48px 24px; }
}

@media (max-width: 880px) {
    .uno-h1 { font-size: 44px; }
    .uno-cloud-wrap { padding: 24px 20px 0; margin-top: 8px; }
    /* Stack the banner vertically on small screens: icon, then text,
       then a full-width CTA — nothing crammed side by side. */
    .uno-cloud { flex-direction: column; align-items: flex-start; gap: 14px; }
    .uno-cloud-actions { width: 100%; }
    .uno-cloud-cta { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
    .uno-h1 { font-size: 32px; }
    .uno-sub { font-size: 15px; }
    .uno-cloud { padding: 18px; }
    .uno-cloud-title { font-size: 16px; }
    /* Footer help row: stack each link on its own line instead of a
       cramped wrapping row. */
    .uno-footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .uno-h1 { font-size: 27px; }
}
