/* cloudPortAI brand lockup — extracted from site.css 2026-08-27 so the
   Admin and Account shells can render the same mark. Those pages load
   portal-components.css, which cannot share a document with site.css
   (site.css styles bare element selectors and would restyle every
   control on the page). These rules touch only .brand-* classes, so
   they are safe in both. Single source: site.css links this too. */

/* ── cloudPortAI brand lockup ───────────────────────────────────────────────
   Mirrored cloud sitting behind the "Po" of Port; the outline fades out under
   the letters via a mask so no stroke crosses the type. */

.brand-lockup { position: relative; display: inline-flex; align-items: center; padding-left: 38px; }

.brand-cloud {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -31px;
    z-index: 1;
    display: inline-flex;
    -webkit-mask-image: linear-gradient(90deg, #000 50%, transparent 82%);
    mask-image: linear-gradient(90deg, #000 50%, transparent 82%);
    animation: cp-bob 3.2s ease-in-out infinite alternate;
}
.brand-cloud svg { flex: none; transform: scaleX(-1); }
.brand-cloud path { fill: rgba(56,189,248,.07); stroke: #38bdf8; stroke-width: 1.2; stroke-linejoin: round; }

.brand-cloud-label {
    position: absolute;
    left: 11px;
    top: 56%;
    width: 30px;
    text-align: center;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .08em;
    color: #7dd3fc;
}

.brand-word {
    position: relative;
    z-index: 2;
    display: inline-flex;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -0.7px;
    color: #f1f5f9;
}
.brand-word .ai {
    background: linear-gradient(90deg, #38bdf8, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Small lockup — hub header, mobile */
.brand-lockup-sm { padding-left: 26px; }
.brand-lockup-sm .brand-cloud { margin-top: -20px; }
.brand-lockup-sm .brand-cloud svg { width: 44px; height: 38px; }
.brand-lockup-sm .brand-cloud-label { left: 7px; width: 20px; font-size: 6px; letter-spacing: .05em; }
.brand-lockup-sm .brand-word { font-size: 19px; letter-spacing: -0.4px; }

@keyframes cp-bob { from { transform: translateY(0); } to { transform: translateY(-2.5px); } }
