feat: Build Manager, Crucible ops deck, branding, and portable Cloudflare tunnel

Add Build Manager with pin-to-dropper, Crucible multi-node terminal with SSH probe/wake, Command Deck chart balance and pretty stats, AetherForge logo and sacred geometry UI, Field Guide refresh, and LAUNCH.bat Cloudflare MSI + token service install flow.
This commit is contained in:
AetherForge
2026-05-30 22:38:48 -07:00
parent e6b8d84edf
commit 9232f4c448
45 changed files with 4222 additions and 406 deletions

View File

@@ -966,6 +966,11 @@
text-shadow: 0 0 20px rgba(178, 75, 243, 0.5);
}
.neon-glow-gold {
color: var(--brass-light) !important;
text-shadow: 0 0 20px rgba(232, 197, 71, 0.55);
}
.chart-row-full {
margin-bottom: 2rem;
}
@@ -1332,3 +1337,168 @@ button.deliverable-card .form-hint {
align-items: center;
margin-top: 0.75rem;
}
/* ── Forge progress bar ───────────────────────────────────────── */
.forge-progress-wrap {
margin-top: 1rem;
margin-bottom: 0.5rem;
padding: 0.75rem 1rem;
border: 1px solid rgba(255, 140, 0, 0.35);
border-radius: 6px;
background: rgba(255, 100, 0, 0.06);
animation: forge-progress-fadein 0.25s ease;
}
@keyframes forge-progress-fadein {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
.forge-progress-header {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.55rem;
}
.forge-progress-icon {
font-size: 0.95rem;
animation: forge-spin 1.4s linear infinite;
display: inline-block;
color: #ff8c00;
}
@keyframes forge-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.forge-progress-stage {
flex: 1;
font-family: 'Courier New', monospace;
font-size: 0.8rem;
color: #ffb347;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.forge-progress-pct {
font-family: 'Courier New', monospace;
font-size: 0.8rem;
font-weight: 700;
color: #ffd700;
min-width: 3rem;
text-align: right;
}
.forge-progress-track {
position: relative;
height: 6px;
background: rgba(255, 255, 255, 0.08);
border-radius: 4px;
overflow: visible;
}
.forge-progress-fill {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #ff6a00, #ffb300, #ffd700);
box-shadow: 0 0 8px rgba(255, 160, 0, 0.6);
transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
z-index: 1;
}
.forge-progress-glow {
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
width: 14px;
height: 14px;
border-radius: 50%;
background: rgba(255, 200, 50, 0.5);
box-shadow: 0 0 10px 4px rgba(255, 160, 0, 0.6);
pointer-events: none;
z-index: 2;
animation: forge-glow-pulse 0.8s ease-in-out infinite alternate;
}
@keyframes forge-glow-pulse {
from { opacity: 0.6; transform: translate(-50%, -50%) scale(0.85); }
to { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
/* ── Forge last-build compact strip ─────────────────────────────────────── */
.forge-last-build-strip {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 0.6rem;
margin-top: 0.75rem;
padding: 0.6rem 0.85rem;
background: rgba(0, 255, 120, 0.06);
border: 1px solid rgba(0, 255, 120, 0.3);
border-radius: 6px;
animation: forge-strip-appear 0.25s ease;
}
@keyframes forge-strip-appear {
from { opacity: 0; transform: translateY(-4px); }
to { opacity: 1; transform: translateY(0); }
}
.forge-last-build-info {
display: flex;
align-items: center;
gap: 0.55rem;
min-width: 0;
}
.forge-last-build-check {
font-size: 1.1rem;
color: #00ff88;
flex-shrink: 0;
}
.forge-last-build-name {
font-family: 'Courier New', monospace;
font-size: 0.82rem;
color: #c8ffd4;
font-weight: 600;
margin-right: 0.3rem;
}
.forge-last-build-size {
font-family: 'Courier New', monospace;
font-size: 0.72rem;
color: #888;
margin-right: 0.35rem;
}
.forge-last-build-tag {
display: inline-block;
font-family: 'Courier New', monospace;
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 0.08em;
padding: 0.08rem 0.38rem;
border-radius: 3px;
background: rgba(255, 140, 0, 0.15);
border: 1px solid rgba(255, 140, 0, 0.4);
color: #ffb04c;
margin-right: 0.2rem;
}
.forge-last-build-actions {
display: flex;
gap: 0.45rem;
align-items: center;
flex-shrink: 0;
flex-wrap: wrap;
}
.btn-sm {
font-size: 0.78rem;
padding: 0.28rem 0.7rem;
}