/* Permanent whois-style profile card (home, below banner) */

/* AI host voice: between banner and human profile */
.home-host-note {
    margin: 1rem 0 0 0;
    max-width: 52rem;
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: normal;
    color: #b8c1ec;
}

.home-host-note .command {
    font-size: inherit;
}

.home-profile {
    margin: 1.25rem 0 0 0;
    max-width: 52rem;
    padding: 0;
    box-sizing: border-box;
}

.home-profile-cmd {
    margin: 0 0 0.65rem 0;
    font-family: "Fira Code", "JetBrains Mono", ui-monospace, monospace;
    font-size: 0.95em;
    letter-spacing: 0.02em;
}

/* Match #liner prompt green (b&w theme) */
.home-profile-prompt {
    color: #a6e3a1;
    text-shadow: 0 0 5px #a6e3a1;
}

.home-profile-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.25rem 1.75rem;
    padding: 1rem 0 1rem 0.65rem;
    border-left: 1px solid #565f89;
    margin-left: 0;
}

.home-profile-main {
    flex: 1;
    min-width: min(100%, 14rem);
}

.home-profile-dl {
    margin: 0;
    font-family: "Fira Code", "JetBrains Mono", ui-monospace, monospace;
    font-size: 0.88em;
    line-height: 1.55;
}

.home-profile-row {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 0 0.75rem;
    margin-bottom: 0.2rem;
}

.home-profile-dl dt {
    margin: 0;
    color: #676f9d;
    font-weight: normal;
}

.home-profile-dl dt::after {
    content: ":";
}

.home-profile-dl dd {
    margin: 0;
    color: #e0e7ef;
}

.home-profile-role {
    color: #f6c177;
}

.home-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-top: 1rem;
}

.home-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 0.35em 0.65em;
    font-family: "Fira Code", "JetBrains Mono", ui-monospace, monospace;
    font-size: 0.8em;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #a9b1d6;
    border: 1px solid #414868;
    border-radius: 4px;
    background: rgba(26, 27, 38, 0.85);
    transition: color 0.12s, border-color 0.12s, background 0.12s;
}

.home-profile-btn:hover {
    color: #e0e7ef;
    border-color: #565f89;
    background: rgba(36, 40, 59, 0.9);
}

.home-profile-btn-icon {
    color: #676f9d;
    font-size: 0.85em;
    line-height: 1;
}

.home-profile-btn:hover .home-profile-btn-icon {
    color: #a9b1d6;
}

@media (max-width: 700px) {
    .home-profile-row {
        grid-template-columns: 5.75rem 1fr;
    }
}
