.project-card--gateway.expanded .project-preview {
    max-height: 110px;
    margin-top: var(--space-4);
}

.poc-form {
    position: relative;
    z-index: 2;
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.poc-input-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.poc-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.9rem;
    padding: 10px 36px 10px var(--space-4);
    outline: none;
    transition: border-color var(--duration-fast) ease;
}

.poc-eye-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    transition: color var(--duration-fast) ease;
}

.poc-eye-btn:hover {
    color: var(--text-primary);
}

.eye-icon {
    width: 16px;
    height: 16px;
}

.eye-off {
    display: none;
}

.poc-eye-btn.showing .eye-open {
    display: none;
}

.poc-eye-btn.showing .eye-off {
    display: block;
}

.poc-input:focus {
    border-color: rgba(139, 92, 246, 0.45);
}

.poc-input.poc-error {
    border-color: rgba(239, 68, 68, 0.7);
}

.poc-submit-btn {
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.poc-submit-btn:hover {
    background: #a78bfa;
    box-shadow: 0 4px 12px var(--accent-30);
}

.poc-error-msg {
    font-size: 0.78rem;
    color: var(--color-error);
    margin-top: 6px;
    min-height: 1em;
    opacity: 0;
    transition: opacity var(--duration-fast) ease;
}

.poc-error-msg.visible {
    opacity: 1;
}

.poc-logo-anim {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--canvas-bg);
}

.poc-canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
