:root {
    --page:#020711; --panel:rgba(8,17,37,.88); --line:rgba(92,195,255,.22);
    --cyan:#4cc3ff; --purple:#9b6cff; --magenta:#d023e8; --green:#42e6a4; --gold:#ffb84d;
    --text:#f5f8ff; --muted:#9baac5; --danger:#ff7898;
}

* { box-sizing:border-box; }
html { background:var(--page); }
body {
    margin: 0;
    min-width: 320px;

    color: var(--text);

    background:
        linear-gradient(
            rgba(2, 8, 23, 0.56),
            rgba(2, 8, 23, 0.64)
        ),
        url("/img/tool-background-1.png") center top / cover fixed no-repeat,
        var(--page);

    font-family: Arial, Helvetica, sans-serif;
}
button,input,select,textarea { font:inherit; }
a { color:inherit; text-decoration:none; }
button,a { -webkit-tap-highlight-color:transparent; }
[hidden] { display:none!important; }

.lab-shell { min-height:100vh; position:relative; overflow:hidden; }
.lab-shell::before {
    content:""; position:fixed; inset:0; pointer-events:none; opacity:.2;
    background-image:linear-gradient(rgba(76,195,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(76,195,255,.045) 1px,transparent 1px);
    background-size:48px 48px; mask-image:linear-gradient(to bottom,#000,transparent 76%);
}

.app-shell {
    position: relative;
    z-index: 1;

    width: min(1580px, calc(100% - 36px));
    margin: 0 auto;
    padding: 18px 0 0;
}

.lab-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    margin-bottom: 14px;

    border: 1px solid rgba(76, 195, 255, 0.27);
    border-radius: 22px;

    background:
        linear-gradient(
            125deg,
            rgba(5, 17, 40, 0.97),
            rgba(7, 13, 36, 0.95) 54%,
            rgba(27, 8, 50, 0.94)
        );

    box-shadow:
        0 22px 65px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.lab-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            circle at 88% 22%,
            rgba(208, 35, 232, 0.20),
            transparent 34%
        );
}

.lab-hero::after {
    content: "";
    position: absolute;
    right: -92px;
    bottom: -165px;
    z-index: -1;

    width: 370px;
    height: 370px;

    border: 1px solid rgba(76, 195, 255, 0.20);
    border-radius: 50%;

    box-shadow:
        0 0 0 48px rgba(76, 195, 255, 0.025),
        0 0 0 96px rgba(208, 35, 232, 0.018);
}

.topbar {
    position: relative;
    z-index: 2;

    min-height: 76px;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid rgba(76, 195, 255, 0.18);

    background: rgba(2, 8, 23, 0.90);

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero {
    position: relative;
    z-index: 1;

    width: 100%;
    min-height: 190px;
    margin: 0;
    padding: 34px 44px 38px;

    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;

    text-align: left;
}

.workspace-heading {
    position: relative;
    z-index: 1;

    min-height: 155px;
    margin: 0;
    padding: 30px 44px 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hub-main,
.workspace-main {
    position: relative;
    z-index: 1;

    width: 100%;
    margin: 0;
}

.hub-main {
    padding: 0 0 62px;
}

.workspace-main {
    padding: 0 0 60px;
}


.brand {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo-wrap {
    width: 200px;
    height: auto;
    flex: 0 0 auto;

    display: grid;
    place-items: center;

    padding: 2px;
    overflow: hidden;

    

    background:
        linear-gradient(
            135deg,
            rgba(76, 195, 255, 0.08),
            rgba(208, 35, 232, 0.09)
        );

    box-shadow:
        0 0 20px rgba(76, 195, 255, 0.12);
}

.brand-logo {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-copy {
    min-width: 0;
}

.brand-copy strong {
    display: block;

    color: #f5f8ff;

    font-size: 16px;
    font-weight: 900;
    line-height: 1.15;

    white-space: nowrap;
}

.brand-copy small {
    display: block;

    max-width: 470px;
    margin-top: 4px;

    color: #4cc3ff;

    font-size: 9px;
    font-weight: 900;
    line-height: 1.2;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.top-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.status-pill,
.nav-link {
    min-height: 38px;
    padding: 8px 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 1px solid rgba(76, 195, 255, 0.32);
    border-radius: 10px;

    color: #d9e7f7;
    background: rgba(7, 22, 43, 0.78);

    font-size: 10px;
    font-weight: 900;

    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease;
}

.nav-link:hover {
    border-color: rgba(76, 195, 255, 0.68);
    color: #ffffff;
    background: rgba(76, 195, 255, 0.11);
}

.status-pill {
    min-width: 125px;
}

.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;

    border-radius: 50%;

    background: #7f92ad;
    box-shadow: 0 0 9px rgba(127, 146, 173, 0.55);
}

.status-pill.is-connected {
    border-color: rgba(66, 230, 164, 0.58);
    color: #e6fff5;
}

.status-pill.is-connected .status-dot {
    background: #42e6a4;
    box-shadow: 0 0 11px rgba(66, 230, 164, 0.88);
}

.status-pill.is-disconnected {
    border-color: rgba(255, 120, 152, 0.58);
    color: #ffc2d0;
}

.status-pill.is-disconnected .status-dot {
    background: #ff7898;
    box-shadow: 0 0 11px rgba(255, 120, 152, 0.82);
}



.app-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.app-card {
    --glow:var(--cyan); position:relative; min-height:290px; display:flex; flex-direction:column; padding:28px; overflow:hidden;
    border:1px solid var(--line); border-radius:22px; background:linear-gradient(145deg,rgba(10,23,48,.92),rgba(4,10,25,.96));
    box-shadow:0 18px 55px rgba(0,0,0,.3),inset 0 1px 0 rgba(255,255,255,.04); transition:.22s ease;
}
.app-card::after { content:""; position:absolute; inset:auto -15% -70% 40%; height:200px; pointer-events:none; opacity:.2; background:radial-gradient(circle,var(--glow),transparent 68%); }
.app-card:hover { transform:translateY(-4px); border-color:rgba(76,195,255,.55); box-shadow:0 22px 65px rgba(0,0,0,.38),0 0 28px rgba(76,195,255,.09); }
.tone-purple { --glow:var(--purple); } .tone-magenta { --glow:var(--magenta); } .tone-green { --glow:var(--green); } .tone-gold { --glow:var(--gold); }
.tone-gold .app-icon { color:var(--gold); border-color:rgba(255,184,77,.38); background:rgba(255,184,77,.09); }
.library-card { grid-column:1/-1; min-height:240px; }
.card-head { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; }
.app-icon { width:52px; height:52px; display:grid; place-items:center; border:1px solid rgba(76,195,255,.35); border-radius:16px; background:rgba(76,195,255,.09); color:var(--cyan); font:900 14px/1 monospace; }
.model-tag,.model-badge { padding:8px 11px; border:1px solid rgba(155,108,255,.3); border-radius:999px; color:#d4c7ff; background:rgba(155,108,255,.09); font:800 10px/1 monospace; letter-spacing:.06em; text-transform:uppercase; }
.app-card h2 { margin:22px 0 9px; font-size:24px; letter-spacing:-.02em; }
.app-card p { margin:0; color:#9eacc2; font-size:14px; line-height:1.65; }
.feature-row { display:flex; flex-wrap:wrap; gap:7px; margin:20px 0 24px; }
.feature-row span { padding:6px 9px; border-radius:8px; color:#b8d9ec; background:rgba(76,195,255,.08); font-size:10px; font-weight:850; }
.open-app { position:relative; z-index:1; align-self:flex-start; display:inline-flex; align-items:center; gap:10px; min-height:42px; margin-top:auto; padding:10px 16px; border-radius:11px; color:#03101e; background:linear-gradient(100deg,var(--cyan),#8a7dff 65%,var(--magenta)); font-size:12px; font-weight:950; }
.open-app:hover { filter:brightness(1.08); }
.lab-note { display:grid; grid-template-columns:auto 1fr; gap:18px; margin-top:24px; padding:22px 24px; border:1px solid rgba(66,230,164,.22); border-radius:18px; background:rgba(5,25,29,.58); }
.note-shield { width:42px; height:42px; display:grid; place-items:center; border-radius:13px; color:var(--green); background:rgba(66,230,164,.1); font-weight:900; }
.lab-note h3 { margin:1px 0 5px; font-size:15px; }
.lab-note p { margin:0; color:#9eb9ba; font-size:13px; line-height:1.6; }

.workspace-main {
    padding: 0 0 60px;
}

.workspace-heading {
    min-height: 155px;

    margin: 0 0 22px;
    padding: 30px 44px 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border: 1px solid rgba(76, 195, 255, 0.28);
    border-top: 0;
    border-radius: 0 0 20px 20px;

    background:
        radial-gradient(
            circle at 90% 60%,
            rgba(208, 35, 232, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(2, 13, 34, 0.98),
            rgba(7, 7, 28, 0.97)
        );

    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.28);
}

.workspace-heading h1 {
    margin: 8px 0 0;

    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -0.035em;
}

.workspace-heading p {
    max-width: 700px;

    margin: 8px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.55;
}
.model-badge { flex:0 0 auto; border-radius:10px; text-transform:none; }
.workspace-grid { display:grid; grid-template-columns:minmax(0,.94fr) minmax(380px,1.06fr); gap:20px; align-items:start; }
.panel { overflow:hidden; border:1px solid var(--line); border-radius:20px; background:var(--panel); box-shadow:0 20px 56px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.035); }
.panel-head { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:17px 20px; border-bottom:1px solid rgba(76,195,255,.13); background:rgba(8,19,41,.72); }
.panel-head h2 { margin:0; font-size:14px; }
.panel-step { color:var(--cyan); font-size:9px; font-weight:950; letter-spacing:.15em; text-transform:uppercase; }
.panel-body { padding:20px; }
.field { margin-bottom:17px; }
.field-row { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.field label,.field-label { display:flex; justify-content:space-between; gap:10px; margin-bottom:8px; color:#dce8f7; font-size:12px; font-weight:850; }
.field-hint { color:#7587a3; font-weight:700; }
.control,.text-area { width:100%; border:1px solid rgba(122,154,198,.22); border-radius:11px; outline:0; color:#f4f7ff; background:rgba(1,7,19,.72); transition:.18s; }
.control { min-height:43px; padding:9px 12px; }
.control option { color:#f4f7ff; background:#071225; }
.text-area { min-height:168px; padding:13px 14px; resize:vertical; line-height:1.6; }
.text-area.small { min-height:92px; }
.control:focus,.text-area:focus { border-color:rgba(76,195,255,.65); box-shadow:0 0 0 3px rgba(76,195,255,.08); }
.advanced { margin-top:10px; border:1px solid rgba(76,195,255,.13); border-radius:12px; background:rgba(1,7,19,.34); }
.advanced summary { padding:12px 14px; cursor:pointer; color:#b8cae1; font-size:12px; font-weight:900; list-style:none; }
.advanced summary::-webkit-details-marker { display:none; }
.advanced-content { padding:2px 14px 14px; }
.range-field { display:grid; grid-template-columns:1fr auto; gap:7px 12px; align-items:center; margin:13px 0; color:#c8d8eb; font-size:11px; font-weight:800; }
.range-field output { color:#7f92ad; }
.range-field input { grid-column:1/-1; width:100%; accent-color:var(--cyan); }
.upload-box { position:relative; min-height:118px; display:grid!important; place-items:center; padding:18px; overflow:hidden; border:1px dashed rgba(76,195,255,.36); border-radius:13px; background:rgba(76,195,255,.035); text-align:center; cursor:pointer; }
.upload-box input { position:absolute; inset:0; opacity:0; cursor:pointer; }
.upload-box strong,.upload-box small { display:block; }
.upload-box strong { color:#d8e9f9; font-size:13px; }
.upload-box small { margin-top:5px; color:#778aa5; font-size:10px; }
.upload-box .file-ready { color:var(--green); }
.prompt-presets { display:flex; flex-wrap:wrap; gap:7px; margin-top:9px; }
.prompt-pill { padding:6px 9px; border:1px solid rgba(155,108,255,.22); border-radius:999px; cursor:pointer; color:#bcaee4; background:rgba(155,108,255,.06); font-size:10px; font-weight:800; }
.prompt-pill:hover { border-color:rgba(155,108,255,.5); color:#fff; }
.tag-palette { display:flex; flex-wrap:wrap; gap:7px; }
.audio-tag { padding:7px 10px; border:1px solid rgba(255,184,77,.28); border-radius:9px; cursor:pointer; color:#ffdca8; background:rgba(255,184,77,.07); font-size:10px; font-weight:850; }
.audio-tag:hover { border-color:rgba(255,184,77,.62); color:#fff; background:rgba(255,184,77,.12); }
.scene-presets .prompt-pill { border-color:rgba(255,184,77,.22); color:#e9c995; background:rgba(255,184,77,.05); }
.expressive-script { min-height:210px; }
.script-tip { margin-top:7px; color:#7386a2; font-size:10px; line-height:1.5; }
.stability-presets { display:grid; grid-template-columns:repeat(3,1fr); gap:7px; margin:10px 0 16px; }
.stability-presets button { min-height:34px; border:1px solid rgba(255,184,77,.2); border-radius:8px; cursor:pointer; color:#c9b28f; background:rgba(255,184,77,.05); font-size:10px; font-weight:850; }
.stability-presets button:hover,.stability-presets button.is-active { border-color:rgba(255,184,77,.58); color:#fff; background:rgba(255,184,77,.12); }
.context-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; margin-top:17px; }
.context-grid label { color:#b8cae1; font-size:10px; font-weight:850; }
.context-grid span { display:block; margin-bottom:6px; }
.context-grid textarea { width:100%; min-height:76px; padding:9px 10px; resize:vertical; border:1px solid rgba(122,154,198,.2); border-radius:9px; outline:0; color:#f4f7ff; background:rgba(1,7,19,.72); font-size:10px; line-height:1.45; }
.context-grid textarea:focus { border-color:rgba(76,195,255,.58); }
.consent { display:flex!important; justify-content:flex-start!important; align-items:flex-start; gap:10px!important; margin:15px 0 0!important; color:#9fb0c7!important; font-size:11px!important; line-height:1.5; }
.consent input { margin-top:2px; accent-color:var(--green); }
.generate-button { width:100%; min-height:48px; margin-top:18px; border:0; border-radius:12px; cursor:pointer; color:#020c17; background:linear-gradient(100deg,var(--cyan),#8e78ff 62%,var(--magenta)); font-size:12px; font-weight:950; box-shadow:0 10px 28px rgba(76,195,255,.16); }
.generate-button:hover { filter:brightness(1.08); }
.generate-button:disabled { cursor:not-allowed; opacity:.55; filter:none; }
.error-box { margin-top:12px; padding:11px 12px; border:1px solid rgba(255,111,145,.3); border-radius:10px; color:#ffb4c6; background:rgba(255,111,145,.08); font-size:12px; line-height:1.5; }

.output-panel { min-height:590px; }
.stage { min-height:510px; display:flex; flex-direction:column; justify-content:center; align-items:center; padding:30px; text-align:center; }
.wave-orb { width:116px; height:116px; margin:0 auto; display:flex; align-items:center; justify-content:center; gap:4px; border:1px solid rgba(76,195,255,.35); border-radius:50%; background:radial-gradient(circle,rgba(76,195,255,.14),rgba(155,108,255,.05) 58%,transparent 60%); box-shadow:0 0 48px rgba(76,195,255,.12); }
.wave-orb span { width:4px; border-radius:4px; background:linear-gradient(var(--cyan),var(--magenta)); animation:idleWave 1.45s ease-in-out infinite; }
.wave-orb span:nth-child(1),.wave-orb span:nth-child(7) { height:20px; animation-delay:-.2s; }
.wave-orb span:nth-child(2),.wave-orb span:nth-child(6) { height:38px; animation-delay:-.45s; }
.wave-orb span:nth-child(3),.wave-orb span:nth-child(5) { height:54px; animation-delay:-.7s; }
.wave-orb span:nth-child(4) { height:68px; animation-delay:-.95s; }
@keyframes idleWave { 0%,100%{transform:scaleY(.65);opacity:.65} 50%{transform:scaleY(1);opacity:1} }
.stage.is-processing .wave-orb { box-shadow:0 0 62px rgba(208,35,232,.22); }
.stage h3 { margin:25px 0 8px; font-size:20px; }
.stage>p { max-width:430px; margin:0; color:#8090aa; font-size:13px; line-height:1.65; }
.audio-result { width:100%; text-align:left; }
.result-label { color:var(--green); font-size:9px; font-weight:950; letter-spacing:.14em; text-transform:uppercase; }
.audio-result h3 { margin:10px 0 5px; }
.audio-result p { margin:0 0 22px; color:#8090aa; font-size:13px; }
.audio-player { width:100%; height:45px; }
.result-actions { display:flex; gap:10px; margin-top:18px; }
.secondary-button { display:inline-flex; align-items:center; justify-content:center; min-height:40px; padding:9px 14px; border:1px solid rgba(76,195,255,.48); border-radius:10px; cursor:pointer; color:#dceaff; background:rgba(76,195,255,.07); font-size:11px; font-weight:900; }
.secondary-button:hover { background:rgba(76,195,255,.12); }

.library-list { display:grid; gap:12px; }
.library-item { display:grid; grid-template-columns:46px minmax(160px,.8fr) minmax(220px,1fr) auto; gap:14px; align-items:center; padding:14px; border:1px solid rgba(76,195,255,.14); border-radius:13px; background:rgba(3,10,24,.55); }
.mini-wave { width:46px; height:46px; display:grid; place-items:center; border-radius:12px; color:var(--cyan); background:rgba(76,195,255,.08); font:900 11px/1 monospace; }
.library-copy { min-width:0; }
.library-item h3 { margin:0 0 5px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:13px; }
.library-meta { color:#7587a2; font-size:10px; }
.library-item audio { width:100%; height:38px; }
.library-actions { display:flex; align-items:center; gap:8px; }
.danger-link { border:0; cursor:pointer; color:#ff9bb3; background:transparent; font-size:10px; font-weight:850; }
.empty-library { min-height:420px; display:grid; place-items:center; text-align:center; color:var(--muted); }
.empty-library h3 { margin:24px 0 7px; color:#e7f0fc; }
.empty-library p { margin:0; }
.course-footer {
    margin-top: 30px;
    padding: 35px 20px 45px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    border-top: 1px solid rgba(76, 195, 255, 0.14);
    border-radius: 0 !important;

    color: var(--muted);
    background: transparent !important;
    background-image: none !important;

    box-shadow: none !important;
    text-align: center;
}

.course-footer img {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.course-footer p {
    margin: 3px 0 0;

    color: var(--text);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.course-footer span {
    font-size: 11px;
    line-height: 1.5;
}

.course-footer .footer-copyright {
    color: var(--muted);

    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width:900px) {
    .topbar {
    padding: 10px 15px;
    gap: 15px;
}

.brand {
    gap: 13px;
}

.brand-logo-wrap {
    width: 160px;
    height: 49px;
}

.brand-copy small {
    max-width: 300px;
    font-size: 8px;
}

.hero,
.workspace-heading {
    padding: 30px;
}

.hero-workflow {
  width: min(100%, 590px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

    .app-grid,.workspace-grid { grid-template-columns:1fr; }
    .library-card { grid-column:auto; }
    .workspace-heading { align-items:flex-start; flex-direction:column; }
    .output-panel { min-height:480px; }
    .stage { min-height:400px; }
    .library-item { grid-template-columns:46px 1fr; }
    .library-item audio,.library-actions { grid-column:2; }
}

@media (max-width:720px) {

    .topbar {
        flex-wrap: wrap;
    }

    .brand {
        width: 100%;
    }

    .top-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width:560px) {
 .app-shell {
    width: min(100% - 20px, 1580px);
    padding-top: 10px;
}

.lab-hero {
    border-radius: 17px;
}

.topbar {
    width: 100%;
    margin: 0;
    padding: 10px;
    gap: 10px;
}

.hero,
.workspace-heading {
    min-height: 0;
    padding: 24px 20px 26px;

    border: 0;
    border-radius: 0;
}

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

.hub-main,
.workspace-main {
    width: 100%;
    padding-top: 0;
}   

.brand-logo-wrap {
    width: 125px;
    height: 42px;
}

.brand-copy strong {
    font-size: 13px;
}

.brand-copy small {
    max-width: 190px;

    font-size: 7px;
    letter-spacing: 0.09em;
}

.status-pill,
.nav-link {
    min-height: 34px;
    padding: 7px 10px;

    font-size: 9px;
}

.nav-arrow {
    color: var(--cyan);

    font-size: 15px;
    line-height: 1;

    transition: transform 0.18s ease;
}

.nav-link:hover .nav-arrow {
    transform: translateX(-2px);
}

.status-pill {
    min-width: 105px;
    display: inline-flex;
}


    .nav-link { padding:7px 10px; font-size:10px; }
    .hub-main,.workspace-main { width:min(100% - 24px,1220px); }
    .hub-main { padding-top:48px; }
    .app-card { min-height:275px; padding:22px; }
    .field-row { grid-template-columns:1fr; gap:0; }
    .context-grid { grid-template-columns:1fr; }
    .workspace-main { padding-top:24px; }
    .model-badge { white-space:normal; line-height:1.35; }
    .library-item { grid-template-columns:42px 1fr; }
    .library-item audio,.library-actions { grid-column:1/-1; }
}
/* Flatten the application heading inside the combined hero */
.lab-hero > .workspace-heading {
    position: relative;
    z-index: 1;

    width: 100%;
    min-height: 155px;

    margin: 0 !important;
    padding: 30px 44px 34px;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
}

.lab-hero > .workspace-heading::before,
.lab-hero > .workspace-heading::after {
    content: none !important;
}

@media (max-width: 560px) {
    .lab-hero > .workspace-heading {
        min-height: 0;
        padding: 24px 20px 26px;
    }
}

/* Shared dashboard and application hero typography */
.hero .eyebrow,
.workspace-heading .eyebrow {
    margin: 0 0 10px;

    color: #8de1ff;

    font-size: 0.71rem;
    font-weight: 900;
    line-height: 1.2;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.workspace-heading h1 {
    margin: 0 0 14px;

    color: transparent !important;

    background:
        linear-gradient(
            100deg,
            #ffffff 8%,
            #4cc3ff 55%,
            #d06cff 90%
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: clamp(36px, 5vw, 58px);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero p,
.workspace-heading p {
    max-width: 900px;
    margin: 0;

    color: #bdcbe0;

    font-size: 16px;
    line-height: 1.65;
}

.hero-workflow {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(126px, 1fr));
  gap: 9px;
  list-style: none;
}

.hero-workflow li {
  min-height: 48px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #dfe7f8;
  background: rgba(4, 9, 24, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-workflow li span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(76, 195, 255, 0.38);
  border-radius: 8px;
  color: #8de1ff;
  background: rgba(76, 195, 255, 0.08);
  font-size: 0.65rem;
  font-weight: 900;
}