.hero-visual {
    width: 700px;
    flex-shrink: 0;
    min-width: 0;
}

#hero-console {
    width: 700px;
    max-width: 100%;
    background: #0c0c0c;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.6;
}

#hero-console::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    z-index: 1;
}

.con-titlebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #141414;
    border-bottom: 1px solid #1e1e1e;
}

.con-dots {
    display: flex;
    gap: 7px;
}

.con-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.con-dot-red    { background: #ff5f56; }
.con-dot-yellow { background: #ffbd2e; }
.con-dot-green  { background: #27c93f; }

.con-title {
    margin-left: auto;
    color: #444;
    font-size: 11px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    user-select: none;
}

.con-output {
    padding: 20px 24px;
    width: 100%;
    height: 420px;
    overflow-y: hidden;
    box-sizing: border-box;
    display: block;
}

.con-spacer {
    height: 380px;
    width: 100%;
}

.con-line {
    display: block;
    white-space: pre-wrap;
    word-break: break-all;
    width: 100%;
    animation: con-fadein 0.08s ease;
}

@keyframes con-fadein {
    from { opacity: 0; transform: translateY(2px); }
    to   { opacity: 1; transform: translateY(0); }
}

.con-time {
    color: #2e2e2e;
    user-select: none;
    font-size: 11px;
}

.con-thread {
    color: #3a5f3a;
    font-size: 11px;
}

.con-thread-warn {
    color: #6a4d10;
    font-size: 11px;
}

.con-text {
    color: #7a8a9a;
}

.con-text-mono {
    color: var(--color-accent-bright);
}

.con-text-warn {
    color: #d4a017;
}

.con-text-done {
    color: #27c93f;
}

.con-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #0e0e0e;
    border-top: 1px solid #1e1e1e;
    min-height: 40px;
    box-sizing: border-box;
}

.con-prompt {
    color: #3a6a3a;
    user-select: none;
    flex-shrink: 0;
    font-size: 13px;
}

.con-cmd-text {
    color: #8a9aaf;
    font-size: 13px;
    flex: 1;
}

.con-cmd-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: var(--color-accent-bright);
    vertical-align: middle;
    margin-left: 1px;
    animation: con-blink 1s step-end infinite;
}

@keyframes con-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.con-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 18px;
    background: #111;
    border-top: 1px solid #1a1a1a;
    color: #333;
    font-size: 11px;
    font-family: var(--font-mono);
    user-select: none;
}

.con-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #27c93f;
    margin-right: 6px;
}

@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
}